satdump/src-core/common/image/bowtie.h
2023-11-25 17:42:54 +01:00

15 lines
No EOL
510 B
C++

#pragma once
#include "image.h"
namespace image
{
namespace bowtie
{
template <typename T>
Image<T> correctGenericBowTie(Image<T> &inputImage, const int channelCount, const long scanHeight, const float alpha, const float beta, std::vector<std::vector<int>> *reverse_lut = nullptr);
// template <typename T>
// image::Image<T> correctSingleBowTie(image::Image<T> &inputImage, const int channelCount, const long scanHeight, const float alpha, const float beta);
}
}