일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- TensorFlow
- #1일1영어
- #opencv
- findContours
- #실생활 영어
- tensorflow update
- #영어 명언
- 이미지 생성
- 완전탐색
- #영어
- #실생활영어
- #일상영어
- #Android
- text2img
- python list
- python __init__
- Convolution Neural Network
- #프로젝트
- word embedding
- tokenizing
- #English
- keras
- 영어명언
- 영어
- opencv SURF
- object detection
- convexhull
- python 알고리즘
- c언어
Archives
- Today
- Total
목록Threshold (1)
When will you grow up?
14.Threshold를 이용한 이진 영상 변환
Threshold이진 영상 변환을 시킬수 있다. 어떤 영상내에서 화소값들의 특성을 서로 양분하는 하나의 경계화소값을 찾아주는 역할을 한다. 즉 영상 전체적인 특성을 둘로 나누는 경계값을 찾는다는 의미입니다. opencv 에서 제공되는 threshold사용방법double threshold(InputArray src, OutputArray dst, double thresh, double maxval, int type)//입력영상,결과영상,선택된 경계 값, 수행하려는 경계화 타입으로 maxval의미를조절 타입 dst(x,y)THRESH_BINARY -> src(x,y)가 thresh보다 더 크면 maxval 아니면 0THRESH_BINARY_INV-> src(x,y)가 thresh보다 더 크면 0 아니면 ma..
02. Study/Computer Vision(openframworks&opencv)
2016. 10. 22. 18:26