Answers for "how to show image in opencv"

1

how to img in opencv

import cv2
#Best Usage
path = r'image location'
img = cv2.imread(path)
#if you use resizde img
resized_img = cv2.resize(img, (640, 680)) #example 640, 680
cv2.imshow('resized_img', resized_img)
cv2.imshow('img', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
Posted by: Guest on September-23-2021
0

show image with opencv2

cv2.imshow('image',img)
cv2.waitKey(0)
Posted by: Guest on July-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language