About "slam" on my camera device
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Qu Cao
el 13 de Oct. de 2021
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.
Ver también
Categorías
Más información sobre Point Cloud Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!