Thank you for the reply.
I have something like this in my code:
fileName = QFileDialog::getOpenFileName(this,tr("Open Enroll Image"),QDir::currentPath(),tr("Image Files [ *.jpg , *.jpeg , *.bmp , *.png , *.gif]"));
if(!fileName.isEmpty())
{
QImage imageE(fileName);
…
I think in fileName will be the full path, right?
I tried also to run the exe files as administrator (maybe a permission issue) but the error persists.
[edit: added missing coding tags @ SGaist]
↧