where can I get the supporting file "helperViewDirectionAndDepth.m" for Monocular Visual Simultaneous Localization and Mapping?
4 views (last 30 days)
Show older comments
SANABOYNA SRINIVASA PHANI KUMAR
on 28 Aug 2022
Commented: SANABOYNA SRINIVASA PHANI KUMAR
on 30 Aug 2022
Hi,
Where can I find the supporting files for https://in.mathworks.com/help/vision/ug/monocular-visual-simultaneous-localization-and-mapping.html . I'm unable to find some of the supporting files to understand the flow of the example provided.
Please help me.
Thanks,
Kumar
0 Comments
Answers (2)
Walter Roberson
on 28 Aug 2022
Note that the following will not be of any use to you if you do not have Computer Vision Toolbox, a new enough version to have the example, R2020b or later.
ED = fullfile(matlabroot, 'examples', 'vision', 'main');
MSL = fullfile(ED, 'MonocularVisualSimultaneousLocalizationAndMappingExample.mlx');
disp('main example file is at'); ls(MSL);
disp('helperAddLoopConnections at'); ls(fullfile(ED, 'helperAddLoopConnections.m'))
disp('helperAddNewKeyFrame at'); ls(fullfile(ED, 'helperAddNewKeyFrame.m'))
disp('helperCheckLoopClosure at'); ls(fullfile(ED, 'helperCheckLoopClosure.m'))
disp('helperComputeFundamentalMatrix inside main example file')
disp('helperComputeHomography inside main example file')
disp('helperCreateNewMapPoints at'); disp(fullfile(ED, 'helperCreateNewMapPoints.m'))
disp('helperCullRecentMapPoints inside main example file')
disp('helperDetectAndExtractFeatures inside main example file')
disp('helperEstimateTrajectoryError inside main example file')
disp('helperLocalBundleAdjustment at'); disp(fullfile(ED, 'helperLocalBundleAdjustment.m'))
disp('helperTriangulateTwoFrames inside main example file')
disp('helperUpdateGlobalMap inside main example file')
disp('helperViewDirectionAndDepth at'); disp(fullfile(ED, 'helperViewDirectionAndDepth.m'))
disp('helperVisualizeMatchedFeatures at'); disp(fullfile(ED, 'helperVisualizeMatchedFeatures.m'))
disp('helperVisualizeMotionAndStructure at'); disp(fullfile(ED, 'helperVisualizeMatchedFeatures.m'))
Steven Lord
on 28 Aug 2022
If you have a sufficiently recent release of Computer Vision Toolbox installed, click the Copy Command button on that example page. Paste that command into MATLAB and execute it. This will open the example and make the current directory the one that contains the files associated with the example, including the supporting / helper files that were created for use by the example.
0 Comments
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!