일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MongoDB
- 빅 데이터
- R
- 김양재 목사
- data science
- 데이터 과학
- 통계
- 빅데이터
- probability
- 딥러닝
- nodeJS
- 빅 데이타
- 인공지능
- 확률
- 빅데이타
- 우리들교회
- Statistics
- 김양재 목사님
- node.js
- Big Data
- WebGL
- Machine Learning
- 주일설교
- c++
- Deep learning
- 몽고디비
- No SQL
- Artificial Intelligence
- 김양재
- openCV
Archives
- Today
- Total
목록color (2)
Scientific Computing & Data Science
[OpenCV] 원본 이미지 상에 컬러 입히기
이미지를 읽어온 후 일부 영역에 지정된 컬러를 입히는 예제코드입니다. Example Code12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849#include "stdafx.h"#include #include #include 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, ..
Programming/OpenCV
2015. 7. 8. 22:58