The algorithms are either our own or OpenCV. Images are currently converted to 8-bit when loaded. But all processing is done internally as float. We plan to support int16 and float images soon.
When loaded, images are converted to sRGB. Internally, all algorithms use float values so we might add additional color spaces and color depths.
We provide a C++ API: https://github.com/cpvrlab/ImagePlay/wiki/Plugins:-01-Tutori... You basically get access to pixel values and can then do whatever you want. Might not be comparable to what mathmap does though.
We currently allow to convert images to Fourier space using FFT. We might add wavelets later on, thanks for the feedback.
The algorithms are either our own or OpenCV. Images are currently converted to 8-bit when loaded. But all processing is done internally as float. We plan to support int16 and float images soon.
When loaded, images are converted to sRGB. Internally, all algorithms use float values so we might add additional color spaces and color depths.
We provide a C++ API: https://github.com/cpvrlab/ImagePlay/wiki/Plugins:-01-Tutori... You basically get access to pixel values and can then do whatever you want. Might not be comparable to what mathmap does though.
We currently allow to convert images to Fourier space using FFT. We might add wavelets later on, thanks for the feedback.