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);
0 件のコメント
回答 (1 件)
Alessandro Masullo
2015 年 2 月 6 日
Maybe you want to use subplot:
figure
subplot(1,2,1)
imshow(im1)
subplot(1,2,2)
imshow(im2)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!