void BatchFaceDetector::slotShowOneDetected(const FacePipelinePackage& package) { QPixmap pix; if (!package.image.isNull()) { pix = package.image.smoothScale(128, 128, Qt::KeepAspectRatio).convertToPixmap(); } else if (!package.faces.isEmpty()) { pix = QPixmap::fromImage(package.faces.first().image().toQImage().scaled(128, 128, Qt::KeepAspectRatio)); } addedAction(pix, package.info.filePath()); advance(1); }
void AdvancedRenameProcessDialog::processOne() { if (d->cancel || d->newNameList.isEmpty()) { return; } d->currentInfo = d->newNameList.takeFirst(); addedAction(d->thumbPixmap, QDir::toNativeSeparators(d->thumbPath)); DIO::rename(d->currentInfo.first, d->currentInfo.second, d->overwrite); getNextThumbnail(); }
void FingerPrintsGenerator::slotGotImagePreview(const LoadingDescription& desc, const DImg& img) { if (d->allPicturesPath.isEmpty()) { return; } if (d->allPicturesPath.first() != desc.filePath) { return; } if (!img.isNull()) { // compute Haar fingerprint d->haarIface.indexImage(desc.filePath, img); } QPixmap pix = DImg(img).smoothScale(128, 128, Qt::KeepAspectRatio).convertToPixmap(); addedAction(pix, desc.filePath); advance(1); if (!d->allPicturesPath.isEmpty()) { d->allPicturesPath.removeFirst(); } if (d->allPicturesPath.isEmpty()) { complete(); } else { processOne(); } }