Where can I find the videos used in the Visual Perception Using Monocular Camera example
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello, everyone
I don't know if this is the correct place to ask this question, but, in my university I've been told to do a project using the 2 videos that are used in the Visual Perception Using Monocular Camera example from mathworks (https://www.mathworks.com/help/driving/ug/visual-perception-using-monocular-camera.html), these being caltech_cordova1.avi and caltech_washington1.avi. However, I cannot find them anywhere on the internet, so i decided to ask you in hope anyone has those two videos somewhere and can give them to me. As I said, I don't know if this is the correct place to ask for this, but I would appreciate if someone has it.
Best Regards
댓글 수: 0
답변 (1개)
VINAYAK LUHA
2024년 1월 10일
편집: VINAYAK LUHA
2024년 1월 10일
Hi Daniel,
Assuming that you have the required installations and are able to run the mentioned example successfully, you may obtain the path of the used videos in the example using the following code.
videoReader1 = VideoReader('caltech_washington1.avi');
disp(videoReader1.Path)
videoReader2 = VideoReader('caltech_cordova1.avi');
disp(videoReader2.Path)
Hope this helps,
Regards,
Vinayak Luha
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Support Package for IP Cameras에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!