phuang17 / DeepMVS

DeepMVS: Learning Multi-View Stereopsis
https://phuang17.github.io/DeepMVS/index.html
BSD 2-Clause "Simplified" License
331 stars 85 forks source link

imageio imread problem #8

Closed 3togo closed 6 years ago

3togo commented 6 years ago

As there are ambiguities on whether format = "RAW-FI" is needed to properly imread the img file. I suggest to try both. try: img = imageio.imread(img.tobytes(), format = "RAW-FI") except: img = imageio.imread(img.tobytes())

phuang17 commented 6 years ago

Looks good! Thanks.