Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal OpenCV example reading an image and displaying it in a window.
import cv2
img = cv2.imread('example.jpg')
cv2.imshow('Image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()OpenCV (Open Source Computer Vision Library) is an open-source computer vision and machine learning library that provides tools for real-time image and video processing across multiple platforms.
Origin & Creator
OpenCV was originally developed by Intel in 1999, led by Gary Bradski, with contributions from Willow Garage and Itseez, and has grown into one of the most widely used computer vision libraries worldwide.
Industrial Note
OpenCV is extensively used in robotics, autonomous vehicles, medical imaging, augmented reality, surveillance, and industrial automation.