Commit 5de07eb7 authored by Alexandre Benoit's avatar Alexandre Benoit

corrected wrong parameter sent to retina module for color saturation

parent 94f72ae8
......@@ -138,7 +138,7 @@ void drawPlot(const cv::Mat curve, const std::string figureTitle, const int lowe
int colorSaturationFactor;
void callback_saturateColors(int, void*)
{
retina->setColorSaturation(true, colorSaturationFactor/10.0f);
retina->setColorSaturation(true, (float)colorSaturationFactor);
}
int main(int argc, char* argv[]) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment