毕设代码记录一:无人机照片分割+训练集/测试机/验证集划分

一 无人机照片分割:
from importlib.resources import path
from lib2to3.pgen2.pgen import PgenGrammar
from cv2 import cv2
import numpy as np
import os
name = os.listdir("D:/XXX/Image")
print(name)
pic_path = 'D:/XXX/Image/'# 分割的图片的位置
pic_target = 'D://XXX//Split//' # 分割后的图片保存的文件夹

#要分割后的尺寸
cut_width = 512
cut_length = 512
#读取要分割的图片,以及其尺寸等数据
picture = cv2.imread(pic_path+name[0])
(width, length, depth) = picture.shape
#

毕设代码记录一:无人机照片分割+训练集/测试机/验证集划分最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/22573.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>