Feature extraction using SURF with ROI as one input argument
Show older comments
Can someone help me to give one example for how to specify ROI of the image so that it can be feed as one input argument to SURF.
My prgram is,
I=imread('ncp.png');
points = detectSURFFeatures(I);
imshow(I); hold on;
plot(points.selectStrongest(100));
This is my input image. How can I mention ROI as the 2 lungs only so that SURF will gives features from lungs only.Please help.
Answers (1)
Image Analyst
on 29 Mar 2021
1 vote
See my attached lung segmentation demo. Adapt as needed.

1 Comment
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!