일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python __init__
- tokenizing
- python 알고리즘
- findContours
- object detection
- TensorFlow
- text2img
- 완전탐색
- tensorflow update
- 딥러닝
- #프로젝트
- c언어
- 이미지 생성
- python list
- #English
- #실생활 영어
- convexhull
- 영어
- 영어명언
- #실생활영어
- #영어 명언
- #opencv
- keras
- #1일1영어
- word embedding
- #Android
- #영어
- #일상영어
- Convolution Neural Network
- opencv SURF
Archives
- Today
- Total
목록#컬러리덕션 (1)
When will you grow up?
5. ColorReduction 만들기.
ColorReduction ->말 그대로 컬러 이미지에서 색상 감축을 위하여 쓰는 알고리즘 입니다. 해당 중요 함수 부분입니다. cv::Mat myColorReduction(Mat &srcImg, int cw) { Mat_ destImg = Mat_ (srcImg.clone()); for (int r = 0; r < srcImg.rows; r++) { for (int c = 0; c < srcImg.cols; c++) { Vec3b rgb = destImg(r,c); for (int k = 0; k < 3; k++) { rgb[k] = int(rgb[k] / cw) * cw; } destImg(r, c) = rgb; } } return destImg; } 이중포문을 사용하여 전체 이미지를 스캔하고 가로 ..
02. Study/Computer Vision(openframworks&opencv)
2016. 9. 17. 17:35