微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何从csv文件生成tfrecord以实现计算机视觉

如何解决如何从csv文件生成tfrecord以实现计算机视觉

我想生成tfrecord来训练辅助分类生成对抗网络。我的数据集CSV文件的列标题如下:

input_image,target_image,标签

我试图按照https://www.tensorflow.org/tutorials/load_data/tfrecord中给出的说明生成tfrecord。

我创建了解析图像和标签功能

def image_example(inp,tar,label):
  inpS = tf.image.decode_jpeg(inp).shape
  tarS = tf.image.decode_jpeg(tar).shape

  feature1 = {
      'height': _int64_feature(inpS[0]),'width': _int64_feature(inpS[1]),'depth': _int64_feature(inpS[2]),'label': _int64_feature(label),'image_raw': _bytes_feature(inp),}

  feature2 = {
      'height': _int64_feature(tarS[0]),'width': _int64_feature(tarS[1]),'depth': _int64_feature(tarS[2]),'image_raw': _bytes_feature(tar),}
  data = tf.train.Example(features=tf.train.Features(feature=(feature1,feature2)))

  return data

要序列化此数据,我正在使用:

record_file = './images.tfrecords'
with tf.io.TFRecordWriter(record_file) as writer:
  for img1,img2,label in zip(Afiles,Bfiles,labels):
    inp = open(pathA+img1,'rb').read()
    tar = open(pathB+img2,'rb').read()
    tf_example = image_example(inp,label)
    writer.write(tf_example.SerializetoString())

但这不起作用。

如何为我的问题创建tfrecord?

我应该对input_image和target_image使用不同的tfrecords吗?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。