How do I register or stitch multiple sub-images together into a larger image using unique fiducial features with rigid transformation?
Mostra commenti meno recenti
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
il 13 Gen 2023
1 voto
William Rose
il 13 Gen 2023
0 voti
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
il 13 Gen 2023
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!
Cris LaPierre
il 13 Gen 2023
Modificato: Cris LaPierre
il 13 Gen 2023
0 voti
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
Cris LaPierre
il 13 Gen 2023
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.

gwoo
il 13 Gen 2023
Cris LaPierre
il 13 Gen 2023
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).
William Rose
il 13 Gen 2023
@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
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.
Categorie
Scopri di più su Computer Vision Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!