일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅 데이터
- MongoDB
- 데이터 과학
- 주일설교
- 빅데이터
- nodeJS
- openCV
- 통계
- 김양재
- 빅데이타
- Big Data
- R
- 우리들교회
- 딥러닝
- WebGL
- 확률
- Deep learning
- 인공지능
- 김양재 목사님
- Artificial Intelligence
- 몽고디비
- c++
- probability
- node.js
- 빅 데이타
- 김양재 목사
- Machine Learning
- data science
- Statistics
- No SQL
Archives
- Today
- Total
목록imread (1)
Scientific Computing & Data Science
[OpenCV] Image를 불러서 Window에 띄우기
개발 환경Microsoft Windows 7Visual Studio V11 (2012)OpenCV 3.0.0Example Code12345678910111213141516171819#include #include #include int _tmain(int argc, _TCHAR* argv[]){ // Read an image cv::Mat image = cv::imread("[YOUR_IMAGE_PATH]"); // Set name of the window cv::namedWindow("My Image"); // Show the window cv::imshow("My Image", image); cv::waitKey(5000); return 0;}Colored by Color Scriptercs
Programming/OpenCV
2015. 1. 21. 10:33