1

我想为动物分类做多类图像分类。问题是我的数据集对于每个类都有不同数量的图像,并且差异非常可怕。例如:

在此示例中,数据集包含 3 个类别的 320 张图像。A 类有125 个图像,B 类有170 个图像,C 类只有25 个图像,我希望增加这些类,因此每个类将有 200 个图像,这意味着 600 个图像均匀分布到这 3 个类。

但是,就我而言,我的数据集中有60 个类。我怎样才能增加所有这些,以便它们对所有类都有完全相同数量的图像?

4

1 回答 1

2

这将需要大量编码,但您可以使用 ImageDataGenerator 生成增强图像并将它们存储在指定目录中。生成器的文档在这里。或者,您可以使用诸如 cv2 或 PIL 之类的模块来提供转换图像的功能。以下是您可以与 cv2 一起使用的代码。注意查找 cv2 文档以了解如何指定代码注释中所述的图像转换。代码如下

import os
import cv2
file_number =130 # set this to the number of files you want
sdir=r'C:\Temp\dummydogs\train' # set this to the main directory that contains yor class directories
slist=os.listdir(sdir)
for klass in slist:
    class_path=os.path.join(sdir, klass)
    filelist=os.listdir(class_path)
    file_count=len(filelist)
    if file_count > file_number:
        # delete files from the klass directory because you have more than you need
        delta=file_count-file_number
        for i in range(delta):
            file=filelist[i]
            fpath=os.path.join (class_path,file)
            os.remove(fpath)
    else:
        # need to add files to this klass so do augmentation using cv3 image transforms
        label='-aug' # set this to a string that will be part of the augmented images file name 
        delta=file_number-file_count
        for i in range(delta):
            file=filelist[i]
            file_split=os.path.split(file)
            index=file_split[1].rfind('.')
            fname=file[:index]
            ext=file[index:]
            fnew_name=fname + '-' +str(i) +'-' + label + ext
            fpath=os.path.join(class_path,file)
            img=cv2.imread(fpath)
            img= cv2.cvtColor(img, cv2.COLOR_BGR2RGB) 
            # look up cv2 documentation and apply image transformation code here
            dest_path=os.path.join(class_path, fnew_name)
            cv2.imwrite(dest_path,img)
于 2021-04-07T18:39:00.540 回答