Trying to segment characters using opencv - Ilumination problem
问题 My code it's not detecting well binary image! LpImg = cv2.imread('/content/drive/My Drive/TESTING/Placas_detectadas/CPVL92.png') if (len(LpImg)): #check if there is at least one license image # Scales, calculates absolute values, and converts the result to 8-bit. plate_image = cv2.convertScaleAbs(LpImg[0], alpha=(255.0)) plate_image = LpImg #image_cropped # convert to grayscale and blur the image gray = cv2.cvtColor(plate_image, cv2.COLOR_BGR2GRAY) blur = cv2.GaussianBlur(gray,(7,7),0) #