About "slam" on my camera device
4 次查看(过去 30 天)
显示 更早的评论
I have a site linked below
I would like to run SLAM with my own ZED camera in matlab with reference to
So I want to run it on my stereo camera, but I don't know what to prepare.Should I have a stereo camera movie or stereo image?
Also, I understand that the download process is not necessary when running the above site with my stereo camera, but I do not understand how to use "imageDatastore" and "dataFolder". I would like to know how to do the above site with the data of my camera device.
0 个评论
回答(1 个)
Qu Cao
2021-10-13
The example shows how to run stereo visual SLAM using recorded data. It doesn't support "online" visual SLAM yet, meaning that you need to use your stereo camera to record a video, save it to your local drive, and then run the algorithm using the video.
reader = VideoReader('myvideo.avi');
% Inspect the first image
currFrameIdx = 1;
currI = read(reader, currFrameIdx);
If this off-line workflow is what you are trying to do, then you can start with stereo camera calibration using the Stereo Camera Calibrator app. Once you get the intrinsic parameters of the camera, you can easily follow the steps in the example to run the stereo visual SLAM pipeline.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Point Cloud Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!