python image 垂直切割圖片 驗證碼圖片識別處理

這樣的一張圖片,用普通的等寬來切割:python def sliceImg(img, outDir, count = 4): w, h = img.size eachWidth = int(w / count) for i in range(count): box = (i * eachWidth, 0, (i + 1) * eachWidth, h)
相關文章
相關標籤/搜索