Camera Calibration with Two Cameras.
4 次查看(过去 30 天)
显示 更早的评论
Hello,
I have been trying to make a code to align two checker board images taken from two different cameras. I have tried imreg and have had no luck. If anyone knwos how to do this that would be great!
0 个评论
回答(1 个)
pankhuri kasliwal
2019-6-18
Hi,
try first using the detectCheckerboardPoints from matlab for each set of images (check the matlab manual) and then when you have the points use : imagePoints = cat(4, poitnsRGB, pointsIR); Then feed these to the estimateCameraParameters (check the manual for more info).
You may be able to calibrate your cameras using the estimateCameraParameters function. It takes detected image points from each camera irrespective of the sizes of the images.
The rectifyStereoImages function only supports images of the same size. Use undistortImage to undistort the two images.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Support Package for USB Webcams 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!