일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 김양재 목사
- No SQL
- 김양재 목사님
- 확률
- c++
- Big Data
- 주일설교
- Statistics
- 빅데이타
- 몽고디비
- Artificial Intelligence
- nodeJS
- 빅 데이터
- openCV
- 빅데이터
- 김양재
- Machine Learning
- 우리들교회
- 빅 데이타
- 데이터 과학
- node.js
- 딥러닝
- MongoDB
- Deep learning
- WebGL
- 인공지능
- 통계
- probability
- data science
- R
Archives
- Today
- Total
Scientific Computing & Data Science
[OpenCV] Reducing Color Space (Quantization) 본문
landscape.jpg
colorReduce.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 31 32 33 34 35 36 37 38 39 40 41 | #include "stdafx.h" #include "opencv2\opencv.hpp" ///////////////////////////////////////////////////////////////////////// // colorReduce void colorReduce( cv::Mat &image, int div = 64 ) { int nl = image.rows; // number of lines // total number of elements per line int nc = image.cols * image.channels(); for ( int j = 0; j < nl; j++ ) { // get the address of row j uchar* data = image.ptr<uchar>( j ); for ( int i = 0; i < nc ; i++ ) { // process each pixel --------------------- data[ i ] = data[ i ] / div*div + div/2; // end of pixel processing ---------------- } // end of line } } ///////////////////////////////////////////////////////////////////////// // _tmain int _tmain( int argc, _TCHAR* argv[] ) { // open the image cv::Mat image = cv::imread( "../landscape.jpg" ); // process the image colorReduce( image ); // display image cv::namedWindow( "Image" ); cv::imshow( "Image", image ); cv::waitKey( 5000 ); return 0; } | cs |
Result
'Programming > OpenCV' 카테고리의 다른 글
[OpenCV] reshape 메써드를 이용하여 픽셀 Dimension 변경 (0) | 2015.03.03 |
---|---|
[OpenCV] Image Pointer(ptr)를 이용하여 픽셀 접근하기 (0) | 2015.03.01 |
[OpenCV] Image를 불러서 Window에 띄우기 (0) | 2015.01.21 |
[OpenCV] Random Number 발생을 통한 이미지 생성 (0) | 2014.08.05 |
[OpenCV] Display an Image (0) | 2014.08.05 |
Comments