Last active
January 19, 2018 05:33
-
-
Save nulledge/ca70cd463abef873fa0fbb73637a85fa to your computer and use it in GitHub Desktop.
Convert single gray-scale image to color-spectrum image.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class tf_Spectrum: | |
Color = tf.constant([ | |
[0, 0, 128], | |
[0, 0, 255], | |
[0, 255, 0], | |
[255, 255, 0], | |
[255, 0, 0] | |
], dtype = tf.float32) | |
def tf_gray2color(gray, spectrum = tf_Spectrum.Color): | |
indices = tf.floor_div(gray, 64) | |
t = tf.expand_dims((gray - indices * 64) / (64), axis = -1) | |
indices = tf.cast(indices, dtype = tf.int32) | |
return tf.add( | |
tf.multiply(tf.gather(spectrum, indices), 1 - t), | |
tf.multiply(tf.gather(spectrum, indices+1), t) | |
) | |
def tf_merge(rgb, heat): | |
heat = tf.image.resize_images( | |
heat, | |
[256, 256] | |
) | |
heat = tf.reduce_max( | |
heat, | |
axis = -1 | |
) | |
return tf.cast( | |
tf.add( | |
tf.multiply( | |
tf_gray2color(heat), | |
0.6 | |
), | |
tf.multiply(rgb, 0.4) | |
), | |
dtype = tf.uint8 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment