Impoly to choose all the ROI
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello! I would like to ask, how can I use impoly to choose all the ROI and not just the polygon that is around it!
0 Kommentare
Akzeptierte Antwort
Adam
am 2 Okt. 2015
Bearbeitet: Adam
am 2 Okt. 2015
mask = createMask( hROI, hIm );
should give you a binary mask for the region, where hROI is your impoly and hIm is the handle of image on which it was drawn.
5 Kommentare
Image Analyst
am 6 Okt. 2015
This will apply the mask to the original image to erase the original pixels everywhere outside the mask:
% Initialize output to be same as input.
maskedImage = grayImage;
% Now erase pixels outside the mask.
maskedImage(~mask) = 0;
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!