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

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)

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

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).
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.

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

Just following up. Here's the result I got. I used the registration estimator app to create the alignment, and then modified one of the scripts in the course to process all the images.
Thanks, I'll definitely look into that. I used the Registration Estimator App and none of the parameters or methods seemed to work. Unrelated corners were linked, there didn't seem to be any sense in the "matches". Can you tell me what you did in the estimator app to get the alignment to look like that?
I found the KAZE technique worked the best for these images. I had to adjust the Feature Parameters to get it so that most of the yellow lines were connecting the desired features.
Note that this app won't actually do the stitching for you. So I exported the resutls as a function, and used that function to perform the registration between each outer image (moving image) and the center image (fixed image).
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.
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.

Categorie

Richiesto:

il 13 Gen 2023

Commentato:

il 14 Gen 2023

Community Treasure Hunt

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

Start Hunting!

Translated by