mrharicot / monodepth

Unsupervised single image depth prediction with CNNs
Other
2.21k stars 628 forks source link

It seems the input not do normalization? #242

Closed cswwp closed 4 years ago

cswwp commented 4 years ago

It seems the input not do normalization? why?

image

sieme97 commented 4 years ago

See the read image function. The following line normalizes the input images: image = tf.image.convert_image_dtype(image, tf.float32)

cswwp commented 4 years ago

See the read image function. The following line normalizes the input images: image = tf.image.convert_image_dtype(image, tf.float32)

Thanks for reply, i got it