Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit dd5bacb

Browse files
Image is read by compiler
1 parent 011094f commit dd5bacb

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

‎encryption.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#include <stdio.h>
2+
#include <opencv2/opencv.hpp>
3+
4+
using namespace cv;
5+
using namespace std;
6+
7+
int main()
8+
{
9+
Mat image;
10+
image = imread( "Image.jpg", 1 );
11+
if ( !image.data )
12+
{
13+
printf("No image data \n");
14+
return -1;
15+
}
16+
namedWindow("Shubham@shaurya", WINDOW_AUTOSIZE );
17+
imshow("Shubham@shaurya", image);
18+
waitKey(0);
19+
20+
return 0;
21+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /