1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00

[CCV] Renamed opencv.cpp to displayImage.cpp

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-04-07 13:53:41 +02:00
parent 7d96034c3d
commit 22d20c4edb
2 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1,31 @@
//
// Created by jim on 4/4/17.
//
#include <stdio.h>
#include <opencv2/opencv.hpp>
using namespace cv;
int main(int argc, char** argv )
{
if ( argc != 2 )
{
printf("usage: DisplayImage.out <Image_Path>\n");
return -1;
}
Mat image;
image = imread( argv[1], 1 );
if ( !image.data )
{
printf("No image data \n");
return -1;
}
namedWindow("Display Image", WINDOW_AUTOSIZE );
imshow("Display Image", image);
waitKey(0);
return 0;
}