Answers for "how to load image in jupyter notebook with cv2"

1

display cv2 image in jupyter notebook

# matplotlib interprets images in RGB format, but OpenCV uses BGR format

# so to convert the image so that it's properly loaded, convert it before loading

img = cv2.imread('filename.ext')		# this is read in BGR format
rgb_img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)		# this converts it into RGB

plt.imshow(rgb_img)
plt.show()
Posted by: Guest on August-10-2020
0

save image from jupyter notebook

plt.savefig('output.png', dpi=300, bbox_inches='tight')
Posted by: Guest on July-18-2020

Code answers related to "how to load image in jupyter notebook with cv2"

Python Answers by Framework

Browse Popular Code Answers by Language