Info

此问题已关闭。 请重新打开它进行编辑或回答。

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 次查看(过去 30 天)
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.

回答(1 个)

Sai Bhargav Avula
Sai Bhargav Avula 2020-2-20
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!

Translated by