Superpose images at the same place of contours of regions
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
My problem is not to find corresponding between two images, my problem is to superpose images with contours in the same position of the second image because when i superpose in the same position i can do segmentation easy,
URL of 2 images :
please i need your help it's the first step in my project. Thanks for your interesting
0 comentarios
Respuestas (2)
Stephen
el 25 de Mayo de 2012
take the left image and do
bw = bwlabel(left);
then you can just take a look at the right image by segment, i.e.
imagesc(right(bw==4))
which pulls out the image only where the left image had the 4th region identified. Good luck
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!