opencv imshow无法显示图片,图片标题全是问号

学习slam十四讲,ch7的示例代码的时候,Imshow失效
问题:在使用Imshow的时候,无法显示图片,图片标题全是问号。
解决办法:语言不兼容,尝试将imshow(“中文部分”,img_1)的中文部分改成英文,图片正常显示。

	drawMatches ( img_1, keypoints_1, img_2, keypoints_2, matches, img_match );
    drawMatches ( img_1, keypoints_1, img_2, keypoints_2, good_matches, img_goodmatch );
    //imshow("所有匹配",img_match);
    imshow ( "all mathces", img_match );
    imshow ( "matches after optimization", img_goodmatch );
    waitKey(0);

你可能感兴趣的:(SLAM,opencv,slam14讲ch7,opencv,imshow出错)