0

OpenCV を使用してウィンドウに画像をロードしようとしていますが、でブレークポイントを取得し続けます Imshow。これは、チュートリアルから従ったコードです。

     namedWindow("result", CV_WINDOW_AUTOSIZE );

    Mat image ;
   // image = imread( "Particle", 1 );
    String inputName;

    for( int i = 1; i < argc; i++ )
    {
        inputName.assign( argv[i] );
    }
    if( inputName.empty() || (isdigit(inputName.c_str()[0]) && inputName.c_str()[1] == '\0') )
    {
        if( inputName.size() )
        {
            image = imread("Particle.png", 1 );
        }
        else
        {
            if(image.empty()) cout << "Couldn't read image" << endl;
        }
        imshow("result",image);

}
4

1 に答える 1