Automating Image Registration for mulitple images (>2)

조회 수: 3 (최근 30일)
Paul
Paul 2020년 4월 2일
댓글: Paul 2020년 4월 26일
My Question is for a single image A, how to find its best matching image among thousands of image. Or to say, I concern the patterns appear in image A and where can I find it among all images I have (under a rigid, no distortion transformation)?
Hello, I now have, say, 10 point-set images (very simple binary images will around hundreds points) and what i want to do is to take first image as the reference image. And try to match it to the remaining 9 images.
I tried to do that with "Registration Estimator" in the image processing toolbox. However, I have plenty of images and I want to have an automatically matching. Can anyone tell me how to achieve this using Matlab?
Of course there will 9 matching but I want to find the best one. "Best" is the sense that I require a good quality score (can anyone tell me how Matlab calculate this? a target regression error?) and I dont mind to spend more time using maybe 2-3 algorithms like SURF, FAST to obtain a comprehensive search.
I also require the transformation will have no local distortion, if it does, I have a formula to describe the distortion. How can I give this restriction to Matlab?
One last question, can I regard the 1-quality score as my loss and treat it a machine learning problem because I have images >>9 (around multi thousands) and I dont want to search all images. I have to speed it up.
Please tell me if anywhere is not clear.
Thank you in advance and hope you have a good one.

답변 (1개)

Aditya Mittal
Aditya Mittal 2020년 4월 23일
Hi,
I have done a similar project in past. And I think here you can use Bag of Visual words technique.
As per my understanding, you are having a query image, and you want to find the images related to that query image in your database. Using the technique of Bag of visual words, you will find the features from all the images in the database. And further create the clusters of the features.
For the process of feature extraction, I tried with different feature extraction techniques, out of which SIFT worked best for me. You can try with SURF as well.
Now you can read the query image and extract the features. This way the problem is now converted into a simple supervised machine learning question. Where you have classes (clusters of features) and data points (features of query image). Use any supervised learning algorithm to classify the model.
For finding the best relevant image, you can use R-precision, precision at K.
I hope this helps.
  댓글 수: 1
Paul
Paul 2020년 4월 26일
sorry for late reply. I am now handling this in other ways.
it didnt help, but I really appreciate your kindness. Hope you have a good day.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by