opencv學習——OCR字符分割

一、讀取灰度圖像,使用threshold將其二值化,選擇CV_THRESH_BINARY_INV,使得字符爲白色c++ Mat input = imread("plate.jpg", 0); Mat img_threshold; threshold(input, img_threshold, 60, 255, CV_THRESH_BINARY_INV); 輸入:算法 處理結果:函數 二、使用fin
相關文章
相關標籤/搜索