Unable to Read Sample BRISQUE SVM Model YAML for OpenCV 4.5.5

382 Views Asked by At

I intend to use OpenCV BRISQUE quality metric for reference-less image quality evaluation. For now, I am simply trying to use pre-trained BRISQUE model and range files provided with OpenCV to get a feel of the feature. Here is my code for the same:

#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/ml.hpp>
#include <opencv2/quality.hpp>

int main()
{
    string brisqueModel = "brisque_model_live.yml",
           brisqueRange = "brisque_range_live.yml";

    // Invoked for debugging.
    const auto temp = cv::ml::SVM::load(brisqueModel); // Called internally by the QualityBRISQUE Constructor. Throws an exception here.

    // My intended use.
    // const auto brisqueObj = cv::quality::QualityBRISQUE::create(brisqueModel, brisqueRange);
    
    return 0;
}

OpenCV throws the following run-time exception for the above code:

OpenCV: terminate handler is called! The last OpenCV error is: OpenCV(4.5.5) Error: Parsing error (Missing or invalid SVM type) in cv::ml::SVMImpl::read_params, file D:\Work\Softwares\opencv-4.5.5\opencv-4.5.5\modules\ml\src\svm.cpp, line 2206

Exception is pointing toward an invalid SVM model type. Following is the exact line in OpenCV source from where the exception is being generated: Call Stack

However, as per the model file, brisque_model_live.yml, the svmType name seems valid: OpenCV Pre-trained Model

Any help to understand such a behaviour is highly appreciated.

0

There are 0 best solutions below