How do I register or stitch multiple sub-images together into a larger image using unique fiducial features with rigid transformation?

55 visualizzazioni (ultimi 30 giorni)
I have 5 sub images that are unique. Each image contains at least 2 unique fiducial features that are only shared by a pair of images.
I would like to stitch/register the 4 satellite images onto the center image.
I have tried using the Image Processing/ Computer Vision tools, functions, and even panorama stitching walk through and the results fail every time. It doesn't fit the features together well at all. Incorrect identifications or mapping.
How can I combine these images, using only translation and rotation, to create a larger single image with solid alignment?
Example of attached images:
Example of attached desired result (made in photoshop):

Risposte (3)

Image Analyst
Image Analyst il 13 Gen 2023

William Rose
William Rose il 13 Gen 2023
Use xcorr2(). See the example here:
Determine the best alignment of image 1 and image 2 with xcorr2(). Make a bigger image, let's call it u12, consisting of the union of images 1 and 2. Then do the cross correlation of u12 with image3, to determine their best alignment. Use this information to make u123. Continue this process with image 4 and image 5. As your union image gets larger, xcorr2() will take longer and use even more memory.
Good luck!
  2 Commenti
gwoo
gwoo il 13 Gen 2023
Thank you, I'll try that out. Reading through it, it looks like it only correlates in X,Y and not in rotation... is that true or am I missing something. I think the correlation approach is right now that I think about it but I need it to consider X,Y, and rotation (rigid body).
William Rose
William Rose il 13 Gen 2023
You are right that xcorr2() will only help find a translation, and will not help with rotations. Your question implies that the image scales are the same in all the images (because you did not ask about scal e adjustments) and that you don't have to worry about projection issues of 3D world onto 2D image plane.
If you can identify the same 3 world points in two images (which will have different coordinates in each image) then you can determine the translation and rotation that will make the world points coincide. Even doing "just that" is not totally trivial.
Sounds interesting but hard. Good luck!

Accedi per commentare.


Cris LaPierre
Cris LaPierre il 13 Gen 2023
Modificato: Cris LaPierre il 13 Gen 2023
You would probably be intersted in the Computer Vision for Engineering and Science Specialization from MathWorks on Coursera. You can enroll for free, and the first course covers aligning and stitching images together.
Just keep in mind that image registration does not 'see' shapes and objects. Instead, it sees corners and edges. It will likely take some trial and error, as well as some educating yourself on the strengths of the different algorithms. You'll find examples with working code in the course I linked to that can serve as great starting points.
  5 Commenti
William Rose
William Rose il 13 Gen 2023
Thanks, @Cris LaPierre, for suggesting the registration Estimator app! It is very impressive!
@gwoo, You can specify the transformation to use in the drop down box on the right side of the app. I recommend you specify the simplest transformation that will do what you want. This should increase the chance of a good result*, and it should run faster. If you only need to translate and rotate, then specify transformation type "rigid".
*Assuming that the transformation you specify is in fact able to bring the images into alignment.
Cris LaPierre
Cris LaPierre il 14 Gen 2023
If you are open to a more manual approach, you might be interested in cpselect, which allows you to manually select control points between 2 images.

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by