mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
15 lines
No EOL
454 B
C++
15 lines
No EOL
454 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);
|
|
|
|
//template <typename T>
|
|
//image::Image<T> correctSingleBowTie(image::Image<T> &inputImage, const int channelCount, const long scanHeight, const float alpha, const float beta);
|
|
}
|
|
} |