반응형
# contour[:,:,0] 은 point의 x좌표 값만 포함하는 배열
# contour[:,:,1] 은 point의 y좌표 값만 포함하는 배열
# argmin() 을 적용하면 가장 작은 값의 위치가 나옴.
# argmax() 을 적용하면 가장 높은 값의 위치가 나옴.
# 찾은 위치를 다시 contour 에서 찾으면 됨.
leftmost = tuple(contour[contour[:,:,0].argmin()][0])
rightmost = tuple(contour[contour[:,:,0].argmax()][0])
topmost = tuple(contour[contour[:,:,1].argmin()][0])
bottommost = tuple(contour[contour[:,:,1].argmax()][0])
반응형
'[====== Development ======] > Python' 카테고리의 다른 글
[Python] OutputDebugString 으로 DebugView에서 로그 출력 (0) | 2021.10.19 |
---|---|
[Python] Open CV 관련 포스팅 모음 (0) | 2021.09.02 |
[Python] Show Image (0) | 2021.08.27 |
[Python] Draw Arrow Line (0) | 2021.08.24 |
[Python] Text의 크기 구하기 (0) | 2021.08.24 |