반응형
def showImage(image, needResize = True):
if needResize :
shape = [1024,1024]
image = cv2.resize(image, shape)
# cv2.imshow("img" , image);
# cv2.waitKey()
# cv2.destroyAllWindows()
window_name="Image View"
cv2.namedWindow(window_name)
cv2.moveWindow(window_name, 40, 30)
cv2.imshow(window_name, image)
cv2.waitKey()
cv2.destroyAllWindows()
반응형
'[====== Development ======] > Python' 카테고리의 다른 글
[Python] Open CV 관련 포스팅 모음 (0) | 2021.09.02 |
---|---|
[Python] Contour 에서의 x,y 최대 최소좌표 구하기 (0) | 2021.08.27 |
[Python] Draw Arrow Line (0) | 2021.08.24 |
[Python] Text의 크기 구하기 (0) | 2021.08.24 |
Python array[::] 용법 (0) | 2021.08.23 |