Search code examples
tensorflowjpegbilinear-interpolation

Working example of loading, decoding, resize_bilinear(), then encoding, and writing a jpeg image using tensorflow?


I have been unable to get anything but junk output from this small program below. All I want to do is

  1. load and decode a jpeg image
  2. resize it to (224, 224) using tf.resize_bilinear
  3. re-encode it to jpeg and save it to a file

import tensorflow as tf

import numpy as np

import os

from PIL import Image

cur_dir = os.getcwd()
print("resizing images")
print("current directory:",cur_dir)

def modify_image(image):
    resize_shape = tf.stack([224, 224])
    resize_shape_as_int = tf.cast(resize_shape, dtype=tf.int32)
    #resized = tf.image.resize_bilinear(decoded_image_4d, resize_shape_as_int)
    resized = tf.image.resize_images(image, resize_shape_as_int)
    #image_3d = tf.squeeze(resized, squeeze_dims=[0])
    image_3d = tf.image.convert_image_dtype(resized, tf.uint8, saturate=False)
    return image_3d

def read_image(filename_queue):
    reader = tf.WholeFileReader()
    key,value = reader.read(filename_queue)
    image = tf.image.decode_jpeg(value)
    return key,image

def inputs(args):
    filenames = args.input_files
    filename_queue = tf.train.string_input_producer(filenames)
    filename,read_input = read_image(filename_queue)
    reshaped_image = modify_image(read_input)
    img = tf.image.encode_jpeg(reshaped_image)
    return filename,img

def parse_args():
    a = argparse.ArgumentParser()
    a.add_argument('input_files', nargs='+')
    args = a.parse_args()
    return args

def main():
    args = parse_args()
    with tf.Graph().as_default():
        image = inputs(args)
        init = tf.global_variables_initializer()
        sess = tf.Session()
        sess.run(init)
        tf.train.start_queue_runners(sess=sess)
        filename,img = sess.run(image)
        with open(os.path.join(cur_dir, 'output.jpg'), 'wb') as fh:
            fh.write(img)

if __name__ == '__main__':
    main()

I simply get junk data though, something like this is output

enter image description here


Solution

  • Late answer. Here is a solution,

    import tensorflow as tf
    from PIL import Image
    import numpy as np
    import os
    
    img_path = 'path/to/folder/image.bmp'
    image_res = [512,512]
    
    def preprocess(img_path):
        img_read = tf.read_file(img_path)
        img_decode = tf.image.decode_bmp(img_read, channels=0)
        img_reshape = tf.expand_dims(img_decode,0)
        img_resize = tf.image.resize_bilinear(img_reshape,size=image_res,align_corners=False)
        img_final = tf.squeeze(img_resize,[0]) # Use to push to tf.keras model
        return img_final
    
    init_op = tf.global_variables_initializer()
    with tf.Session() as sess:
        sess.run(init_op)
        res_v1 = sess.run(preprocess(img_path))
        res_v1 = res_v1.astype(np.uint8)
        img_arr_v1 = Image.fromarray(np.squeeze(img_uint8_v1),'L')
        img_arr_v1.save("path/to/output/folder/res_bilinear.jpeg")
    

    Hope this helps.