how to display a query image and database side-side ? i have few lines but i am not able to proceed ahead with them as they are incomplete .

조회 수: 1 (최근 30일)
personToQuery=1;
galleryImage=read(faceDatabase(personToQuery),1);
figure;
for i=1:size(faceDatabase,2);

답변 (1개)

Alessandro Masullo
Alessandro Masullo 2015년 2월 6일
Maybe you want to use subplot:
figure
subplot(1,2,1)
imshow(im1)
subplot(1,2,2)
imshow(im2)

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by