Sliding a circular window on an image for feature extraction...
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
Image Analyst
2011 年 12 月 4 日
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.
回答 (2 件)
Image Analyst
2011 年 12 月 3 日
I suggest you use nlfilter(). If you don't have the Image Processing Toolbox, then you can use blockproc().
0 件のコメント
David Young
2011 年 12 月 4 日
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.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!