-
ex
>>> x,y,w,h = cv2.boundingRect(np.arange(6).reshape(-1,2)) >>> print(f"{x} {y} {w} {h}") 0 1 5 5 >>> type(np.arange(6).reshape(-1,2)) <class 'numpy.ndarray'> >>> np.arange(6).reshape(-1,2) array([[0, 1], [2, 3], [4, 5]])
'Python' 카테고리의 다른 글
Flask - Android환경에 Java와 연동 (0) 2021.10.25 Python popen (0) 2021.06.23 Python Sandbox (0) 2021.06.23 Opencv 윤곽 검출 (0) 2021.04.12 Python ScikitLearn 손글씨 숫자 인식 2 (0) 2021.04.12 Python Random 난수 생성기 (0) 2021.04.12 Python ScikitLearn 손글씨 숫자 인식 1 (0) 2021.04.12 Python numpy.reshape (0) 2021.04.12