YoloV3檢測到目標裁剪保存至本地

使用opencv將裁剪的文件保存至本地code 檢測結果一般帶有四個座標:x1,x2,y1,y2it image=cv2.imread(path)#path是原圖路徑 cropped = image[int(y1): int(y2), int(x1):int(x2)] cv2.imwrite(cropname, cropped)#cropname是新的路徑與文件名
相關文章
相關標籤/搜索