How to find the distance between two random selected blobs in an Image ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Manoj Kumar
el 27 de En. de 2015
Comentada: Manoj Kumar
el 27 de En. de 2015
Hi, i have couple of Images in which I need to find the distance between the selected two blobs in an image. I have used "ginput(2)" to select the two blobs in the image.
I have used the following attached code but facing some errors in it. I used few lines of code from matlabcentral and added it to my code.
I am getting error as -
Index exceeds matrix dimensions.
Error in meandistanceSample (line 53)
boundary2 = boundaries{2};
Here are the two Images that I need to analyze. Can any one help me.
Thanks...
0 comentarios
Respuesta aceptada
Image Analyst
el 27 de En. de 2015
The loop at the bottom should not find the distance of every blob to every other blob, but from every blob to the x,y points you clicked on. If you clicked near, or in, blobs #50 and #73, then you first need to get indexes 50 and 73 - you don't care how close blob #12 is to blob #98 or whatever. So you just see what's closest to where you clicked. Once you know that, that the user pointed to blob #50 and blob #73, then you can get the distance between them using their centroids. Give that a try and come back with your new code.
3 comentarios
Image Analyst
el 27 de En. de 2015
Just convert the binary image into RGB like this:
rgbImage = uint8(255 * cat(3, binaryImage, binaryImage, binaryImage));
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!