了解对象检测API中的数据扩充

rpi*_*ste 6 object-detection tensorflow object-detection-api

我正在使用对象检测API来训练不同的数据集,我想知道是否可以在训练期间获得到达网络的样本图像.

我问这个是因为我试图找到一个很好的数据扩充选项组合(这里是选项),但添加它们的结果更糟.在培训中看到什么到达网络将非常有帮助.

另一个问题是,如果传递的数据集使它们不平衡,是否有可能获得API来帮助平衡类.

谢谢!

Dmy*_*pko 0

对的,这是可能的。简而言之,您需要获取 tf.data.Dataset 的实例。然后,您可以迭代它并获取 NumPy 数组形式的网络输入数据。使用 PIL 或 OpenCV 将其保存到图像文件就很简单了。

假设您使用 TF2,伪代码如下:

ds = ... get dataset object somehow

sample_num = 0
for features, _ in ds:
    images = features[fields.InputDataFields.image]  # is a [batch_size, H, W, C] float32 tensor with preprocessed images
    batch_size = images.shape[0]
    for i in range(batch_size):
        image = np.array(images[i] * 255).astype(np.uint8)  # assuming input data is only scaled to [0..1]
        cv2.imwrite(output_path, image)

    sample_num += 1
    if sample_num >= MAX_SAMPLES:
        break
Run Code Online (Sandbox Code Playgroud)

这里的技巧是获取 Dataset 实例。Google对象检测API非常复杂,但我想你应该从train_input这里调用函数开始:https://github.com/tensorflow/models/blob/3c8b6f1e17e230b68519fd8d58c4dd9e9570d789/research/object_detection/inputs.py#L763

它需要描述训练、train_input 和模型的管道配置子部分。

您可以在此处找到有关如何使用管道的一些代码片段:动态编辑用于 Tensorflow 对象检测的管道配置

import argparse

import tensorflow as tf
from google.protobuf import text_format
from object_detection.protos import pipeline_pb2


def parse_arguments():                                                                                                                                                                                                                                                
    parser = argparse.ArgumentParser(description='')                                                                                                                                                                                                                  
    parser.add_argument('pipeline')                                                                                                                                                                                                                                   
    parser.add_argument('output')                                                                                                                                                                                                                                     
    return parser.parse_args()                                                                                                                                                                                                                                        


def main():                                                                                                                                                                                                                                                           
    args = parse_arguments()                                                                                                                                                                                                                                          
    pipeline_config = pipeline_pb2.TrainEvalPipelineConfig()                                                                                                                                                                                                          

    with tf.gfile.GFile(args.pipeline, "r") as f:                                                                                                                                                                                                                     
        proto_str = f.read()                                                                                                                                                                                                                                          
        text_format.Merge(proto_str, pipeline_config)   
Run Code Online (Sandbox Code Playgroud)