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 .
3 次查看(过去 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!