How many automatic extraction of region of Interest (ROI) (ROI in image) techniques exist?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Said BOUREZG
il 1 Apr 2017
Commentato: Image Analyst
il 2 Apr 2017
I use a manual extraction method to extract a region of interest from an image, can someone give me a new automatic technique for ROI extraction that may be i don't use it?
0 Commenti
Risposta accettata
Image Analyst
il 1 Apr 2017
Far and away the most common way of "automatically" identifying region(s) of interest is by thresholding. It's hard for me to think of a way that doesn't do that. Basically you start with an image, then you go through a series of image processing steps (color segmentation, texture segmentation, motion detection, morphology, cluster analysis, modeling, or whatever might be appropriate), if necessary, until you finally get to an image that can be thresholded. You then get a binary image that represents your regions of interest. If you want you can then alter the regions of interest via other methods to change their size or shape or get rid of blobs in a certain size range or whatever. Then you'll have your "final" region(s) of interest and you can get measurements from it using regionprops() or other operations.
See my Image Segmentation Tutorial for a full demo: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862&sort=downloads_desc
2 Commenti
Image Analyst
il 2 Apr 2017
You will find thousands of algorithms here: http://www.visionbib.com/bibliography/contents.html Each one was optimized for a particular application. Browse that list until you find something you like. Or else consult some books like
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!