apoorva-dave / LicensePlateDetector

Detects license plate of car and recognizes its characters
345 stars 113 forks source link

Where are the cv2 file? #8

Closed saulocastillos closed 5 years ago

saulocastillos commented 5 years ago

Hey Apoorva Dave

Where are the cv2 which is imported in DetectPlate.py?

apoorva-dave commented 5 years ago

By doing import cv2 we are importing open cv module in python. It has to be first installed using pip and then it can be used to read and process images. Please check this link to get more info https://www.geeksforgeeks.org/reading-image-opencv-using-python/

saulocastillos commented 5 years ago

Thank you