I use QT
to create some gui and parse file path with QFileDialog
.
My code is:
QString fileName = QFileDialog::getOpenFileName();
Mat imageMat = imread( fileName.toLocal8Bit().constData() );
And this works fine but when I use non-latin characters my imageMat
is empty. How to get image with unicode path?