毕设代码记录一:无人机照片分割+训练集/测试机/验证集划分
一 无人机照片分割:
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
#
共有 0 条评论