How to load a sequence of images, to be accessed by IMAGESC
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to load a sequence of images, of which this is the first one. What is wrong with this code so that I can't see the image? My goal is to load pic1(2,:,:,:), pic1(3,:,:,:), and so forth.
fp1 = 'B1.jpg';
pic1(1,:,:,:) = imread(fp1);
p1 = pic1(1,:,:,:);
imagesc(p1)
댓글 수: 0
답변 (1개)
Mandar
2023년 1월 31일
I understand that you want to load the sequence of the images.
Refer the following documentation link to know perform operation of sequence of images.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!