如何将某些特定的.jpg文件复制到另一个目录?

问题描述 投票:0回答:1

我想将某些特定的jpg文件复制到另一个目录,但我不明白为什么它不起作用?我的图片很多,暂时只想将某些类别的开头名称分别为15_0_xxx.jpg和15_1_xxx.jpg

import cv2

import sys
import os
import shutil 
from os import listdir
from os.path import isfile, join

mypath = "c:/Users/Harum/Desktop/make dir/"
file_names = [ f for f in listdir(mypath) if isfile(join(mypath, f))]

print(str(len(file_names))+ ' images loaded')

cont_M =0
cont_F =0
m_age = "c:/Users/Harum/Desktop/make dir/M_15/"
f_age = "c:/Users/Harum/Desktop/make dir/F_15/"

input_m = []
input_mS =[]
input_fS =[]
input_f = []

def getZeros(number):
    if(number > 10 and number <100):
        return "0"
    if(number < 10):
        return "00"
    else:
        return ""

for i, file in enumerate(file_names):
    if file_names[i][0] == "15_0":
        cont_M +=1
        image = cv2.imread(mypath+file)
        input_m.append(image)
        input_mS.append(0)
        zeros = getZeros(cont_M)
        cv2.imwrite(m_age +"m_age"+str(zeros)+ str(cont_M)+ ".jpg",image)

    if file_names[i][0] == "15_1":
        cont_F +=1
        image = cv2.imread(mypath+file)
        input_f.append(image)
        input_fs.append(1)
        cv2.imwrite(f_age+"F_age"+str(zeros)+ str(cont_M)+ ".jpg",image) 

`

python python-3.x cv2
1个回答
0
投票

您最好使用glob和os:

import glob
import os

mypath = "c:/Users/Harum/Desktop/make dir/"
# using fstrings to add wildcard character to consider all files. You could add a
## file extension after, as in f"{mypath}*.jpg"
file_names = glob.glob(f"{mypath}*")

# skip the middle to the ifs
# (...)

# removed the enumerate as it doesn't seems like you're using the positional list index

for file in file_names:
    # getting only the filename (with extension)
    file_name = os.path.basename(file)

    # using the str().startswith() to check True or False
    if file_name.startswith("15_0"):
        cont_M +=1
        image = cv2.imread(file)
        # (...)

    if if file_name.startswith("15_1"):
        cont_F +=1
        image = cv2.imread(file)
        #(...)
© www.soinside.com 2019 - 2024. All rights reserved.