Info

This question is closed. Reopen it to edit or answer.

I have to find whether a camera image is present within 100 images.If it is present I want to do binarization,distance matching for all 100 images and camera image if the distance is same I want to print valid user.

1 view (last 30 days)
I have 100 images and I want to compare all images with a camera image(say 1) and if the camera image present in that 100 images and I have to do further process like grayscale,houghlines,distance matching,binarization for camera image and all other 100 images.If anyone of the distance is matched with contained 100 images I want to print valid user.
Thanks for your help in advance.

Answers (1)

Sai Bhargav Avula
Sai Bhargav Avula on 20 Feb 2020
Hi,
You can check if the image is present in the set by using isequal and looping over the image set
c = isequal(imageFromSet, cameraImage);
By my understanding you want to compute if you camera image matches any of the image from the database and print the name of the user that it is matched with. If this is the purpose, then retrieveImages helps your purpose.
Hope this helps!

Community Treasure Hunt

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

Start Hunting!