일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 통계
- MongoDB
- 몽고디비
- 빅데이타
- nodeJS
- 김양재 목사
- 빅 데이타
- probability
- Machine Learning
- openCV
- data science
- WebGL
- c++
- 데이터 과학
- 우리들교회
- 인공지능
- Statistics
- 확률
- 주일설교
- Deep learning
- No SQL
- R
- 빅 데이터
- Big Data
- node.js
- 김양재 목사님
- 딥러닝
- 빅데이터
- 김양재
- Artificial Intelligence
Archives
- Today
- Total
목록pixel 처리 (1)
Scientific Computing & Data Science
[OpenCV] Image Pointer(ptr)를 이용하여 픽셀 접근하기
이미지의 row(행) 번호 j에 대한 첫번째 열의 픽셀 데이터 포인터는 다음과 같습니다: uchar* data= image.ptr(j); 이를 이용한 픽셀 처리에 대한 예제 코드는 다음과 같습니다: 12345678910111213141516171819// open the imagecv::Mat image = cv::imread( IMAGE_FILE_PATH ); // number of linesint nl = image.rows; // total number of elements per lineint nc = image.cols * image.channels(); for ( int j = 0; j
Programming/OpenCV
2015. 3. 1. 23:05