implementation of the fattal02 TMO
Hi, mdouchement !
Couldn't find a better way to contact you via github, apologies for raising this as an issue.
Many thanks for the hdr library ! It's been very useful for a hobby project of mine, exposure stacking eclipse photos.
Before I found your library, I implemented the fattal02 TMO in Golang. It depends on the fftw3 C library. (To be more honest, I just ported the C implementation from the pfstmo project :) Code here: https://github.com/abworrall/eclipse-hdr/blob/master/pkg/fattal02/fattal02.go
After finding your hdr library, I revised it to implement your API, and also inherit the TMOs you'd already implemented - so thanks again :)
- Adam
Hello abworrall
I'm glad this project helps your project.
I tried to implement Fattal02 years ago but I didn't found some (pure) Golang's algorithms needed for this TMO. I mean pure Golang because I want this project to not use languages binding which complexify its usage and breaks cross-platform builds. By the way I didn't implemented TMOs from scratch, most of them are based on existing projects.
Thank you for sharing your C binding implementation here so anybody who wants to use Fattal02 can do it now.