일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- object detection
- 영어명언
- findContours
- python list
- #실생활 영어
- 이미지 생성
- #Android
- convexhull
- #프로젝트
- #1일1영어
- #실생활영어
- 완전탐색
- 영어
- text2img
- keras
- 딥러닝
- c언어
- tokenizing
- #English
- TensorFlow
- python 알고리즘
- Convolution Neural Network
- tensorflow update
- word embedding
- #영어
- opencv SURF
- python __init__
- #opencv
- #일상영어
- #영어 명언
- Today
- Total
When will you grow up?
lookUpTable(LUT) -> In computer science, a lookup table is an array that replaces runtime computation with a simpler array indexing operation. The savings in terms of processing time can be significant, since retrieving a value from memory is often faster than undergoing an "expensive" computation or input/output operation.[1] The tables may be precalculated and stored in static program storage,..
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; } 이중포문을 사용하여 전체 이미지를 스캔하고 가로 ..
이번에는 비트플레인 함수를 만들겠습니다 BitPlane 이란? 디지털 정보 용어로써, 우리말로는 비트 평면이라고 얘기를 한다. 8bit 그레이 영상의 한 픽셀은 8개의 bit로 구성됩니다^^ 즉, 픽셀값은 00000000(0)~11111111(255)까지의 값을 가질 수 있죠 8개의 bit중에서 최상위 비트를 MSB(Most Significant Bit), 최하위 비트를 LSB(Least Significant Bit)라고 합니다 위의 표는 이진수를 간단히 십진수로 변환할 수 있는 방법입니다..^^ 특히 4bit짜리는 8-4-2-1 코드로 잘 알려져 있죠..^^ 예를들어, 이진수 0110은 8과 1의 값은 0이고, 4와 2의 값은 1이기 때문에 4 + 2 = 6이 됩니다^^ 이진수 '1100 0000'값은..