일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 딥러닝
- Convolution Neural Network
- convexhull
- object detection
- tokenizing
- python 알고리즘
- tensorflow update
- keras
- 영어
- TensorFlow
- #1일1영어
- 영어명언
- c언어
- text2img
- python list
- 이미지 생성
- #Android
- #실생활영어
- #영어
- word embedding
- opencv SURF
- #실생활 영어
- findContours
- #영어 명언
- python __init__
- #opencv
- 완전탐색
- #English
- #일상영어
- #프로젝트
- Today
- Total
목록convexhull (2)
When will you grow up?
Convex Hull을 풀기위한 알고리즘 종류에는‘Gift wrapping, Graham’s scan, Quickhull, Divide and conquer, Monotone chain aka Andrew's algorithm, Incremental convex hull algorithm, The ultimate planar convex hull algorithm, Chan's algorithm’ 이러한 다양한 종류의 알고리즘이 있는데, 이중에서 대표적으로 많이 사용하는 Graham’s scan 알고리즘에 대해 알아보겠습니다. Referencehttps://en.wikipedia.org/wiki/Convex_hull_algorithmshttps://ko.wikipedia.org/wiki/%EB%B2%A1..
//참고 : http://docs.opencv.org/Convex Hull이란, 여러 개의 점이 주어졌을 때, 모든 점들을 포함하는 최소 크기의 볼록 다각형입니다 (InputArray points, //벡터 또는 Mat형식의 입력OutputArray hull,//출력 convexhull(볼록 선체)bool clockwise = false,//방향 플래그 true면 시계방향 bool returnPoints = true // 연산 플래그 Mat일 경우 볼록 선체점 반환 아니면 인덱스 반환 ) 결과 전체코드 #include "ofApp.h" using namespace std; ofImage photo; Mat src; Mat src_gray; int thresh = 100; int max_thresh = 2..