- open App using the imageSegmenter(img)
- Select Draw ROIs
- Select freehand drawing and highlight the parts you want in image
- Exit ROI
- Click on export
how to select the parts/objects in an image
36 views (last 30 days)
Show older comments
I want to select the specific parts of an image, like I have a plant image and in that iamge I need to to select/highlight/ the flowers and other parts, how to do that plz guide, what is the best way to do that?
0 Comments
Answers (2)
Sarvesh Kale
on 7 Mar 2023
If you are trying to segment an image then you can do the following
img=imread('peppers.png');
imageSegmenter(img)
An Image segmentation App will open which will allow you to highlight the specific patches in image. Follow the steps
More information on image segmentation can be found in the following documentation
If you want to crop a part of image and further use the image patch for image processing then take a look at imcrop function
the documentation link is https://in.mathworks.com/help/images/ref/imcrop.html
I hope this helps your query, please accept the answer if it does
Thank you
4 Comments
Image Analyst
on 10 Mar 2023
It's a generic, general purpose demo of how to threshold an image to find blobs, and then measure things about the blobs, and extract certain blobs based on their areas or diameters.
You can also try my other demos in there on color segmentation, or you can try the Color Thresholder on the Apps tab of the tool ribbon.
2 Comments
Image Analyst
on 10 Mar 2023
In a nutshell, here are the essentials of image processing:
mask = grayImage > someThreshold;
props = regionprops('table', mask);
If you want more details, then that's what my tutorial does in well-commented, excruciating detail.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!