Pythonを使ってファイルスクリプトをフィルタする方法を実現します。
プロジェクトをする時、マークが必要なデータセットの中のいくつかのピクチャーデータに出会って、プログラマーとして、手動で一枚のスクリーニングを避けるために、このPythonシナリオを書いて実現しました。
Pythonスクリプトは以下の通りです。
Pythonスクリプトは以下の通りです。
# from PIL import Image
import csv
import os
import shutil
filename = 'img.txt'
def readImageName():
with open(filename) as f:
lines = f.readlines()
imgnames = []
for line in lines:
imgnames.append(line.strip().strip(".jpg")[-4:])
print(imgnames)
return imgnames
def pickImg():
pickImageNames = readImageName()
#
for image in os.listdir(r"C:\Users\Administrator.PC-201708272051\Desktop\ \text_detect_label_data\China_SameBrowser"):
# print(image[:-4])
if image[:-4] in pickImageNames:
# pickImage = Image.open((r"C:\Users\Administrator.PC-201708272051\Desktop\ \text_detect_label_data\China_SameBrowser/%s") % image)
# pickImage.save((r"C:/Users/Administrator.PC-201708272051/Desktop/labeldata/%s") % image)
oldname= r"C:\Users\Administrator.PC-201708272051\Desktop\ \text_detect_label_data\China_SameBrowser/" + image
newname= r"C:/Users/Administrator.PC-201708272051/Desktop/labeldata/" + image
shutil.copyfile(oldname,newname)
# readImageName()
pickImg()
以上のPythonを使ってファイルのスクリプトを選別する方法は小編集が皆さんに提供した内容の全部を共有します。参考にしていただければと思います。よろしくお願いします。