일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅 데이터
- data science
- 주일설교
- WebGL
- 몽고디비
- openCV
- 빅데이타
- c++
- Big Data
- R
- Machine Learning
- 빅데이터
- 데이터 과학
- 인공지능
- Statistics
- node.js
- 김양재
- nodeJS
- 우리들교회
- 확률
- 통계
- probability
- Artificial Intelligence
- MongoDB
- 딥러닝
- 빅 데이타
- 김양재 목사
- No SQL
- 김양재 목사님
- Deep learning
Archives
- Today
- Total
Scientific Computing & Data Science
[OpenCV] Image Pointer(ptr)를 이용하여 픽셀 접근하기 본문
이미지의 row(행) 번호 j에 대한 첫번째 열의 픽셀 데이터 포인터는 다음과 같습니다:
uchar* data= image.ptr<uchar>(j);
이를 이용한 픽셀 처리에 대한 예제 코드는 다음과 같습니다:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | // open the image cv::Mat image = cv::imread( IMAGE_FILE_PATH ); // number of lines int nl = image.rows; // 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 ] = ... ; // end of pixel processing ---------------- } // end of line } | cs |
'Programming > OpenCV' 카테고리의 다른 글
[OpenCV] Low-level Pointer를 사용하여 특정 Pixel에 접근하기 (0) | 2015.03.05 |
---|---|
[OpenCV] reshape 메써드를 이용하여 픽셀 Dimension 변경 (0) | 2015.03.03 |
[OpenCV] Reducing Color Space (Quantization) (0) | 2015.02.22 |
[OpenCV] Image를 불러서 Window에 띄우기 (0) | 2015.01.21 |
[OpenCV] Random Number 발생을 통한 이미지 생성 (0) | 2014.08.05 |
Comments