kunzmi / ImageStackAlignator

Implementation of Google's Handheld Multi-Frame Super-Resolution algorithm (from Pixel 3 and Pixel 4 camera)
GNU General Public License v3.0
392 stars 65 forks source link

Possibility of using .tiff images? #30

Closed dhalnon closed 1 year ago

dhalnon commented 1 year ago

Is it possible to use .tiff images as inputs?

kunzmi commented 1 year ago

Depends on what you mean by .tiff images: Do you mean "normal" images with RGB channels or raw images with bayer pattern? If the latter, it should be easy to get it to run, .dng files are just tiff files with specific tags. On the other hand, if you mean "normal" images, then one would need to adapt the entire processing as the debayering step is a crucial component of the algorithm. It's not impossible but needs some work to be done.