how to eliminate identical portions of an image?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hi everyone,I need help
after segmentation,i calculate the tortuosity of each vessel for two image,Now I try to remove the image the same parts
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145201/image.jpeg)
someone to a solution
0 comentarios
Respuestas (1)
Image Analyst
el 27 de Ag. de 2014
% Find matching values
binaryImage = (image1 == image2);
% "Remove" the matching pixels by setting them to zero in each original image.
image1(binaryImage) = 0;
image2(binaryImage) = 0;
If that's not what you mean, then explain what you mean (because what you said is confusing).
0 comentarios
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!