일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- node.js
- probability
- 인공지능
- openCV
- 우리들교회
- 김양재 목사
- WebGL
- Statistics
- 딥러닝
- Big Data
- 빅 데이터
- 데이터 과학
- Artificial Intelligence
- MongoDB
- data science
- 확률
- 빅데이타
- No SQL
- c++
- 빅데이터
- 김양재 목사님
- 김양재
- 몽고디비
- R
- Deep learning
- 빅 데이타
- Machine Learning
- 주일설교
- 통계
- nodeJS
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