Select image region using point coordinates
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alejandro Fernández
am 16 Apr. 2021
Kommentiert: Image Analyst
am 16 Apr. 2021
Hi, I was wondering if someone could do quickly and efficiently the selection of a region within the multiple ones that matlab manages to detect using the regionprops function in whose interior is a point that is defined by its x and y coordinates.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 16 Apr. 2021
The built-in function for this is bwselect(). Like
oneBlob = bwselect(multiBlobMask, x, y); % Return only the single blob that contains (x, y).
Here is the help:
bwselect
Select objects in binary image
Syntax
Description
2 Kommentare
Image Analyst
am 16 Apr. 2021
Alejandro, there is another related function that you maybe interested in. It's called imreconstruct(). With that function you give it a mask (with multiple blobs in it), and a "marker" image that has a subset of blobs. Then when you call imreconstruct, it will return only those blobs that overlap any part of a marker blob. So instead of giving it a coordinate or list of coordinates to tell it which blob(s) to extract, you give it an image.
So for example let's say you had an aerial photo of your neighborhood and wanted to find lawns that had white flowering trees on them (like many of them in my neighborhood do this week). So you'd have one mask of only the lawns, then another "marker" image of only the trees, then after you call imreconstruct, you'd get only those lawns that had the white flowering trees on them, and not any of the other lawns.
Weitere Antworten (1)
Matt J
am 16 Apr. 2021
regions=regionprops(yourImage,'PixelList');
detector=@(s) ismember([x,y], s.PixelList,'rows');
find( arrayfun( detector , region ) )
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!