Hi all,
I am facing a peculiar problem with QFileDialog::getexistingdirectory. I am using QT with OpenCv. I need to process all the images(.tif) in a folder and save the processed images in a different folder. I get the files list like : QStringList files = path.entryList(filters);
path of first file " QString firstfile = files.first()"
but once i add the code to load the file as IplImage "IplImage *input = cvLoadImage((const char*)firstfile.toAscii()) it compiles fine but when I run it, the get input directory dialog box goes blank!! I tried everything including writing the paths of all files in a text file and then using that to load images. But I end up with the same problem...
SOS!!
Navdeep