problem in understanding ''Feature Based Panoramic Image Stitching ''
조회 수: 3 (최근 30일)
이전 댓글 표시
I'm on studying the ''Feature Based Panoramic Image Stitching '' and I have 5 questions
1.how should I fill these 2 lines if my images are in the folder on my pc
buildingDir = fullfile(toolboxdir('vision'), 'visiondata', 'building');
buildingScene = imageDatastore(buildingDir);
2.why we use eye(3) for projective2d ?
3.in match features, what is the role of 'unique'?
5. what is the role of step and imref2d in this code?
tnx
댓글 수: 0
채택된 답변
Walter Roberson
2016년 12월 23일
1) You do not need to change those lines provided you have a version of the Computer Vision Toolbox installed that is new enough to have the files.
댓글 수: 3
Walter Roberson
2016년 12월 23일
편집: Walter Roberson
2016년 12월 23일
Then replace
buildingDir = fullfile(toolboxdir('vision'), 'visiondata', 'building');
with assigning to buildingDir the string which is the name of the directory where your files are. For example,
buildingDir = 'C:\Users\Kooshafar\Documents and Settings\MATLAB\Project17\buildings';
추가 답변 (0개)
참고 항목
카테고리
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!