일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅 데이터
- 빅데이타
- 주일설교
- R
- Deep learning
- 통계
- openCV
- No SQL
- 빅데이터
- probability
- 김양재 목사님
- 우리들교회
- 딥러닝
- Big Data
- Statistics
- 빅 데이타
- node.js
- 김양재
- data science
- 데이터 과학
- c++
- WebGL
- Artificial Intelligence
- 김양재 목사
- MongoDB
- 몽고디비
- nodeJS
- Machine Learning
- 확률
- 인공지능
Archives
- Today
- Total
Scientific Computing & Data Science
[OpenCV] 원본 이미지 상에 컬러 입히기 본문
이미지를 읽어온 후 일부 영역에 지정된 컬러를 입히는 예제코드입니다.
Example Code
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #include "stdafx.h" #include <opencv2/opencv.hpp> #include <stdlib.h> #include <stdio.h> using namespace std; using namespace cv; /** @function main */ int main( int argc, char** argv ) { // Read an image cv::Mat image = cv::imread( {YOUR_IMAGE_PATH}, 1 ); uchar *data = image.data; uchar *blue, *green, *red; blue = nullptr; green = nullptr; red = nullptr; int nRow = image.rows; int nCol = image.cols; int gray = 0; // fills colors in the specified range for( int j = 0 ; j < nRow - 1 ; j++ ) { gray = (int)( 255 * j / (nRow - 1) ); for( int i = 0 ; i < nCol - 1 ; i++ ) { image.at<Vec3b>( j, i )[0] = gray; image.at<Vec3b>( j, i )[1] = abs( 255 - gray ); image.at<Vec3b>( j, i )[2] = i % 255; } } // creates window namedWindow( "Image", 1 ); // show stuff imshow( "Image", image ); // Wait until user press some key waitKey(); return 0; } | cs |
'Programming > OpenCV' 카테고리의 다른 글
[OpenCV] RGB Color를 Grayscale로 변환하기 (3) | 2015.07.21 |
---|---|
[OpenCV] Gaussian Blur (4) | 2015.07.18 |
[OpenCV] 특정 픽셀 컬러 정보 얻어내기 (3) | 2015.07.04 |
[OpenCV] resize 함수를 이용하여 이미지 사이즈 조정하기 (0) | 2015.04.01 |
[OpenCV] Camera Frame Capture (0) | 2015.03.31 |
Comments