Lines Matching full:reconstruction
111 Mat reconstruction = p->pca.backProject(point);
112 reconstruction = reconstruction.reshape(p->ch, p->rows);
113 reconstruction = toGrayscale(reconstruction);
115 imshow(p->winName, reconstruction);
157 Mat reconstruction = pca.backProject(point); // re-create the image from the "point"
158 reconstruction = reconstruction.reshape(images[0].channels(), images[0].rows); // reshape from a row vector into image shape
159 reconstruction = toGrayscale(reconstruction); // re-scale for displaying purposes
162 string winName = "Reconstruction | press 'q' to quit";
178 imshow(winName, reconstruction);