일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- data science
- 주일설교
- Artificial Intelligence
- 딥러닝
- c++
- openCV
- Machine Learning
- 통계
- nodeJS
- WebGL
- Big Data
- 우리들교회
- Deep learning
- 김양재 목사님
- 데이터 과학
- 확률
- MongoDB
- No SQL
- 몽고디비
- 인공지능
- 김양재
- node.js
- 빅데이터
- Statistics
- 김양재 목사
- probability
Archives
- Today
- Total
목록image pointer (2)
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
landscape.jpgcolorReduce.cpp1234567891011121314151617181920212223242526272829303132333435363738394041#include "stdafx.h"#include "opencv2\opencv.hpp" /////////////////////////////////////////////////////////////////////////// colorReducevoid 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.chann..
Programming/OpenCV
2015. 2. 22. 23:02