python3+openCV 獲取圖片中文本區域的最小外接矩形

print("thresh =",thresh) coords = np.column_stack(np.where(thresh > 0))//獲取thresh二值灰度圖片中的白色文字區域的點 print("coords =",coords) min_rect = cv2.minAreaRect(coords)//由點集獲取最小矩形(包含中心座標點、寬和高、偏轉角度) print("min_r
相關文章
相關標籤/搜索