ImageWatch2019下载和安装
1. 下载
Visual Studio更新到2019以后突然发现之前的ImageWatch插件不能识别新版本vs了,和本小白一样患有尝鲜综合征的你是否也觉得寝食难安呢?
别急,上网找资料,有朋友说了,在vs2019 -> 扩展 -> 管理扩展里可以搜索到啊.
然鹅…
这下载速度…
但是好歹,这个方案给本小白提供了这个插件的名称:
于是直接搜索这个插件的官方下载地址:
戳这里 -------------------------------> 官方下载地址
2. 安装
点击下载得到的“ImageWatch2019.vsix”,让它自己找到你安装的VS2019. 注意安装之前和安装过程中关闭所有的VS软件.
3. 使用
接下来就可以用一个示例来欢快地玩耍了…(以下代码片段来自opencv官网)
#include <opencv2/core.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
if (argc != 2)
{
cout << " Usage: " << argv[0] << " ImageToLoadAndDisplay" << endl;
return -1;
}
Mat image;
image = imread(argv[1], IMREAD_COLOR); // Read the file
if (image.empty()) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl;
return -1;
}
namedWindow("Display window", WINDOW_AUTOSIZE); // Create a window for display.
imshow("Display window", image); // Show our image inside it.
waitKey(0); // Wait for a keystroke in the window
return 0;
}
注意要在debug模式下使用:视图 -> 其他窗口 -> Image Watch
接着就可以和之前一样看到 三体人降临地球了 程序运行过程中的图像了