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 .
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
personToQuery=1;
galleryImage=read(faceDatabase(personToQuery),1);
figure;
for i=1:size(faceDatabase,2);
0 comentarios
Respuestas (1)
  Alessandro Masullo
      
 el 6 de Feb. de 2015
        Maybe you want to use subplot:
   figure
   subplot(1,2,1)
   imshow(im1)
   subplot(1,2,2)
   imshow(im2)
0 comentarios
Ver también
Categorías
				Más información sobre Subplots en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

