【发布时间】:2022-01-04 09:52:04
【问题描述】:
我正在尝试在 TFRecords 中为 CycleGAN 模型创建自定义数据集。该模型需要一种不可用的新型数据集,因此我需要创建一个。我有一些 256x256 的 JPG 图片。在this 链接之后,我为我的图像创建了 TFrecords 文件,代码如下:
def _int64_feature(value):
return tf.train.Feature(int64_list=tf.train.Int64List(value=[value]))
def _bytes_feature(value):
return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value]))
# images input
def convert_to(images, output_directory, name):
num_examples = images.shape[0]
rows = images.shape[1]
cols = images.shape[2]
depth = 1
filename = os.path.join(output_directory, name + '.tfrecords')
print('Writing', filename)
writer = tf.python_io.TFRecordWriter(filename)
for index in range(num_examples):
image = images[index]
image_raw = images[index].tobytes()
example = tf.train.Example(features=tf.train.Features(feature={
'height': _int64_feature(rows),
'width': _int64_feature(cols),
'depth': _int64_feature(depth),
'image_raw': _bytes_feature(image_raw)}))
writer.write(example.SerializeToString())
def read_image(file_name, images_path):
image = skimage.io.imread(images_path + file_name)
return image
def get_name(img_name):
remove_ext = img_name.split(".")[0]
name = remove_ext.split("_")
return name[0]
images_path = "data/train/"
image_list = os.listdir(images_path)
images = []
for img_name in tqdm(image_list):
tfrec_name = get_name(img_name)
print(tfrec_name)
img_data = read_image(img_name, images_path)
convert_to(img_data, "data/cat_image_tfrecords", tfrec_name+"_cat_image")
一旦 TFRecords 被写入,我使用下面的代码来读取和解码它
PHOTO_FILENAMES = tf.io.gfile.glob(str('data/cat_image_tfrecords/*.tfrecords'))
IMAGE_SIZE = [256, 256]
def decode_image(image):
image = tf.image.decode_jpeg(image, channels=3)
image = (tf.cast(image, tf.float32) / 127.5) - 1
image = tf.reshape(image, [*IMAGE_SIZE, 3])
return image
def read_tfrecord(example):
tfrecord_format = {
'height': tf.io.FixedLenFeature([], tf.int64),
'width': tf.io.FixedLenFeature([], tf.int64),
'depth': tf.io.FixedLenFeature([], tf.int64),
'image_raw': tf.io.FixedLenFeature([], tf.string),
}
example = tf.io.parse_single_example(example, tfrecord_format)
image = decode_image(example['image_raw'])
return image
def load_dataset(filenames, labeled=True, ordered=False):
dataset = tf.data.TFRecordDataset(filenames)
dataset = dataset.map(read_tfrecord, num_parallel_calls=AUTOTUNE)
return dataset
photo_ds = load_dataset(PHOTO_FILENAMES, labeled=False).batch(1)
example_photo = next(iter(photo_ds))
解码不起作用,因为我在最后一行收到以下错误
InvalidArgumentError: Expected image (JPEG, PNG, or GIF), got unknown format starting with ']LBhXKeQFVC4S=/1'
[[{{node DecodeJpeg}}]]
显然,我在 convert_to 函数中编写 TFRecord 的方式与在 read_tfrecord 函数中读取它的方式之间存在不匹配。但我不知道如何解决它。有什么建议吗?
编辑
@sebastian-sz 解决方案解决了这个问题。我试图显示如下的一张图片
import matplotlib.pyplot as plt
plt.subplot(121)
plt.title('Photo')
plt.imshow(example_photo[0])
它显示图像,但我看到图像的颜色/光线比原始图像暗得多。不知道发生了什么。附上截图。原始图片在底部。
【问题讨论】:
-
你的 Tensorflow 版本是什么?我试图重现代码,但我在 Tensorflow 2.7.0 上得到
AttributeError: module 'tensorflow' has no attribute 'python_io' -
张量流 2.3.0
标签: tensorflow computer-vision tfrecord