Borrar filtros
Borrar filtros

How to get the binary matrix of an image ?

5 visualizaciones (últimos 30 días)
Emily
Emily el 21 de Jun. de 2012
Dear all, I creat a 2-D network by method of fractal interpolation to simulate soil cracks. In my program ,plot(x,y) which plots the network , x,y stand for the points' corrdinate value. I want to compute this network's fractal dimension, but I can't get this image from the figure plotted. My quentions are how to get this image in jpg. or bmp.without white blank like the figure, and how to get the binary matrix of this figure. Thanks in advance.

Respuesta aceptada

Image Analyst
Image Analyst el 21 de Jun. de 2012
Emily, If you want an image of your cracks, first I'd create a blank image with zeros(). Then I'd go down through every x,y pair that you have using imline() to draw the line (crack) from one point to the next. Now you have your image with all your cracks on it, and you can use export_fig() to write it out to a standard format image file. This will give you just the image alone - no tick marks and titles etc.
However if you want a plot, rather than an image, I'd continue doing it the way you are and then use export_fig() to get the whole plot - including the title, x and y axis labels, tick marks, outer plot area bounding box, etc.
I don't really see how the image of the cracks is going to help you calculate the fractal dimension of the crack network though. I don't use fractals but I though the fractal dimension of a 2D image would look at all the pixel values of all the pixels to give a metric that is kind of related to the "roughness" of the image, but that wouldn't be appropriate to get the fractal dimension of a binary image of a crack network.
  3 comentarios
Image Analyst
Image Analyst el 22 de Jun. de 2012
It doesn't really seem like an imaging problem, other than you could generate an image or a plot of the crack network, and I'm not a fractal expert so I'm going to bow out. I'm just going to suggest that you edit your post from "How to get the binary matrix of an image ?" to "Determine fractal dimension of network of cracks" so that some fractal experts might find it and help you. Of course they'll also want to see some kind of plot or image like I asked you for earlier so do that now.
Emily
Emily el 24 de Jun. de 2012
Thank you very much!

Iniciar sesión para comentar.

Más respuestas (2)

Walter Roberson
Walter Roberson el 21 de Jun. de 2012
getsnap() or getframe(); and then imwrite() or saveas() or print() or use the File Exchange contribution export_fig
You can set the axes background color to something other than white.
  10 comentarios
Image Analyst
Image Analyst el 22 de Jun. de 2012
You're still not as clear as you'd be if you would just upload an image and describe what it is that you want. Mock up some lines on it using Photoshop or whatever to say what part you want to save. Try tinypic.com and pick the last link it give you.
Emily
Emily el 24 de Jun. de 2012
Thanks again!

Iniciar sesión para comentar.


faraz.a
faraz.a el 25 de Mayo de 2013
please tell me how to create a matrix of zeroes and ones for black and white pixels of a binary image.
  1 comentario
Image Analyst
Image Analyst el 25 de Mayo de 2013
One way is to threshold a grayscale image
binaryImage = grayImage > thresholdValue;

Iniciar sesión para comentar.

Categorías

Más información sobre Fractals en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by