mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
11 lines
No EOL
272 B
C++
11 lines
No EOL
272 B
C++
#pragma once
|
|
|
|
#define cimg_use_png
|
|
#define cimg_display 0
|
|
#include "CImg.h"
|
|
|
|
namespace image
|
|
{
|
|
// Implementation of GIMP's White Balance algorithm
|
|
void white_balance(cimg_library::CImg<unsigned short> &image, float percentileValue = 0.05f, int channelCount = 3);
|
|
} |