mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
17 lines
No EOL
535 B
C++
17 lines
No EOL
535 B
C++
#pragma once
|
|
|
|
#define cimg_use_png
|
|
#define cimg_display 0
|
|
#include "CImg.h"
|
|
|
|
namespace image
|
|
{
|
|
namespace bowtie
|
|
{
|
|
template <typename T>
|
|
cimg_library::CImg<T> correctGenericBowTie(cimg_library::CImg<T> &inputImage, const int channelCount, const long scanHeight, const float alpha, const float beta);
|
|
|
|
//template <typename T>
|
|
//cimg_library::CImg<T> correctSingleBowTie(cimg_library::CImg<T> &inputImage, const int channelCount, const long scanHeight, const float alpha, const float beta);
|
|
}
|
|
} |