일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 데이터 과학
- 몽고디비
- 빅데이타
- 김양재 목사
- Statistics
- c++
- 인공지능
- nodeJS
- Machine Learning
- 주일설교
- 김양재 목사님
- 김양재
- Artificial Intelligence
- data science
- 딥러닝
- openCV
- 확률
- probability
- node.js
- 빅데이터
- Big Data
- No SQL
- 빅 데이터
- 통계
- WebGL
- R
- Deep learning
- 우리들교회
- MongoDB
- 빅 데이타
Archives
- Today
- Total
Scientific Computing & Data Science
[OpenCV] Random Number 발생을 통한 이미지 생성 본문
본 포스팅에서는 OpenCV에서 randu() 함수를 이용하여 Random Number를 발생하여 이를 이미지화하는 예제를 소개하겠습니다. randu() 함수를 이용한 300-by-200 사이즈의 행렬을 생성하는 예는 다음과 같습니다:
1 2 | Mat R = Mat(300, 200, CV_8UC3); randu(R, Scalar::all(0), Scalar::all(255)); | cs |
이를 이미지로 출력하는 예제는 다음과 같습니다:
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 | #include "stdafx.h" #include <opencv2\opencv.hpp> #include <iostream> using namespace std; using namespace cv; int _tmain(int argc, char** argv) { Mat R = Mat(300, 200, CV_8UC3); randu(R, Scalar::all(0), Scalar::all(255)); // Check for invalid input if(! R.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", R ); // Wait for a keystroke in the window waitKey(0); return 0; } | cs |
'Programming > OpenCV' 카테고리의 다른 글
[OpenCV] Reducing Color Space (Quantization) (0) | 2015.02.22 |
---|---|
[OpenCV] Image를 불러서 Window에 띄우기 (0) | 2015.01.21 |
[OpenCV] Display an Image (0) | 2014.08.05 |
[OpenCV] MFC-OpenCV 연동하기 (9) | 2014.06.10 |
[OpenCV] Windows / Visual Studio에서 OpenCV 개발환경 구축하기 (0) | 2014.04.02 |
Comments