Display a picture

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Display a picture相关的知识,希望对你有一定的参考价值。

摘自 <<Learning OpenCV: Computer Vision in C++ with the OpenCV Library>>

#include "opencv2/highgui/highgui.hpp"

using namespace cv;

int main(int argc, char ** argv)
{
    Mat img = imread(argv[1] - 1);
    if(img.empty())  return -1;

    namedWindow("Example", CV_WINDOW_AUTOSIZE);

    imshow("Example", img);

    waitKey(0);
    destroyWindow("Example");     
}

 

以上是关于Display a picture的主要内容,如果未能解决你的问题,请参考以下文章

css常用代码片段 (更新中)

USACO 5.5.1Picture

[javascript-code-snippet]javascript代码段

VB中Image1.picture的问题

vb 如何放大或缩小图片,用Picture控件

在 Kotlin 中单击外部时如何关闭底部工作表片段?