일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- R
- 빅데이터
- 김양재 목사님
- 김양재 목사
- 데이터 과학
- 확률
- MongoDB
- openCV
- 통계
- Deep learning
- No SQL
- 빅 데이타
- Big Data
- 인공지능
- 빅데이타
- 빅 데이터
- 몽고디비
- c++
- node.js
- WebGL
- nodeJS
- Machine Learning
- probability
- Artificial Intelligence
- 딥러닝
- Statistics
- 주일설교
- 김양재
- 우리들교회
- data science
Archives
- Today
- Total
Scientific Computing & Data Science
[OpenCV] Display an Image 본문
main.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | // Mat.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <opencv2\opencv.hpp> #include <iostream> using namespace std; using namespace cv; int _tmain(int argc, char** argv) { IplImage *pImage = cvLoadImage("[IMAGE_PATH]/[IMAGE_NAME]", CV_LOAD_IMAGE_COLOR); Mat img(pImage); // Check for invalid input if(! img.data ) { cout << "Could not open or find the image" << std::endl ; return -1; } // Create a window for display. namedWindow( "Display window", WINDOW_AUTOSIZE ); // Show our image inside it. imshow( "Display window", img ); // Wait for a keystroke in the window waitKey(0); return 0; } | cs |
'Programming > OpenCV' 카테고리의 다른 글
[OpenCV] Image를 불러서 Window에 띄우기 (0) | 2015.01.21 |
---|---|
[OpenCV] Random Number 발생을 통한 이미지 생성 (0) | 2014.08.05 |
[OpenCV] MFC-OpenCV 연동하기 (9) | 2014.06.10 |
[OpenCV] Windows / Visual Studio에서 OpenCV 개발환경 구축하기 (0) | 2014.04.02 |
[OpenCV] Mac OS X / Xcode에서 OpenCV 개발환경 구축하기 (9) | 2014.04.02 |
Comments