How can I get the Structure From Motion From Multiple Views code to work with my own pictures?
3 次查看(过去 30 天)
显示 更早的评论
I am trying to use the example code from Structure from Motion from Multiple Views to run my own reconstruction. The code runs and stops at this point.
% Estimate the camera pose of current view relative to the previous view.
% The pose is computed up to scale, meaning that the distance between
% the cameras in the previous view and the current view is set to 1.
% This will be corrected by the bundle adjustment.
[relativeOrient, relativeLoc, inlierIdx] = helperEstimateRelativePose(...
matchedPoints1, matchedPoints2, intrinsics);
and I get the error message attached below
0 个评论
回答(1 个)
Prateek Rai
2021-9-15
To my understanding, you are trying to use the example code from "Structure from Motion from Multiple Views" and want to run your own reconstruction.
Since you are getting error in the code, you are advisable to first run the whole MATLAB example, and once it executes successfully then you can try to run your own reconstruction on top of the base code of MATLAB Example.
You can open the example using:
openExample('vision/StructureFromMotionFromMultipleViewsExample')
Run the command by entering it in the MATLAB Command Window.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Camera Calibration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!