cross correlating two images
显示 更早的评论
I have two similar images, but one image needs to slightly be rotated and cut off at the bottom in order to be correctly alligned. How is this done? I assume I have convert the images to matrices but where do I go from there?
回答(1 个)
Harsha Vardhan Rao Avunoori
2011-7-29
0 个投票
For rotating an image you can use imrotate() and for deleting the rows you can assign it like this x(1:15,:) = [] this statement will remove the first 15 rows from the image.
For more information related to imrotate() refer this
-Harsha
类别
在 帮助中心 和 File 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!