Sliding a circular window on an image for feature extraction...
Afficher commentaires plus anciens
I am working on retina images in matlab. I need to extract features in an image by sliding a circular window of diameter d, on whole image, pixel by pixel. I have worked with rectangular window. But I am unable to understand the concept and implementation that how circular will slide on image. Can anyone help me in understanding it? or write me the code for sliding circular window. Regards
3 commentaires
David Young
le 3 Déc 2011
What do you want to do with the pixels inside the circular window at each position?
Khawaja Asim
le 3 Déc 2011
Image Analyst
le 4 Déc 2011
I'm not sure why this requires a circular window. Even if you did, many operations ask you to provide a kernel or structuring element where you could specify which pixels are to be considered and which ones are to be ignored.
Réponses (2)
Image Analyst
le 3 Déc 2011
0 votes
I suggest you use nlfilter(). If you don't have the Image Processing Toolbox, then you can use blockproc().
David Young
le 4 Déc 2011
0 votes
If you know how to work with a sliding rectangular window, but you need to use a circular window instead, it might help to learn about roi-based processing, with a circular roi (assuming you have the Image Processing Toolbox).
You don't give enough detail about the kind of processing you want to do for us to give examples. However, have a look at the chapter on ROI-Based Processing in the IPT User's Guide. One example there uses an elliptical ROI, and a circular ROI is just a special case of that, so it shouldn't be too hard to adapt it.
Catégories
En savoir plus sur Neighborhood and Block Processing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!