mình cũng đang tìm hiểu về contour mà đọc code có đoạn này k hiểu. bạn nào giúp với
areas = [cv2.contourArea(c) for c in contours]
max_index = np.argmax(areas)
max_cnt = contours[max_index]
max_cntArea = areas[max_index]
x,y,w,h = cv2.boundingRect(max_cnt)
if not ratioCheck(max_cntArea,w,h):
return plate,None
cleaned_final = thresh[y:y+h, x:x+w]
#cv2.imshow("Function Test",cleaned_final)
return cleaned_final,[x,y,w,h]