If i have a specific feature as an image how do i extract that from a larger image in matlab

4 views (last 30 days)
I was thinking of coverting the image with feature for example a victory sign to a filter and then somme how convolt that filter over a bigger picture to find if there is a victory sign in the image.

Answers (4)

Image Analyst
Image Analyst on 3 Jan 2022
which requires the Computer Vision Toolbox.
Otherwise you might try a deep learning solution: YOLO

yanqi liu
yanqi liu on 4 Jan 2022
yes,sir,may be use imresize to get the appropriate image matrix

DGM
DGM on 4 Jan 2022
Edited: DGM on 4 Jan 2022
If you're talking about a very forgiving case where the smaller image is known to be a subset of the larger image itself, then you might use normxcorr2() to find its location.
Otherwise the answer will be a lot more complicated.

Image Analyst
Image Analyst on 4 Jan 2022
My normalized cross correlation demo is attached.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!