Skip to content
Snippets Groups Projects
Commit b2f433fa authored by Vojtěch Tomas's avatar Vojtěch Tomas
Browse files

Removing debug prints

parent 501dbb88
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,7 @@ int Editor::logscale(float logscale)
for (size_t i = 0; i < image.size; i++)
{
cout << image.imagef[i] << " " << logf(1.f + image.imagef[i] * logscale) / logf(1.f + logscale) << endl;
//cout << image.imagef[i] << " " << logf(1.f + image.imagef[i] * logscale) / logf(1.f + logscale) << endl;
image.imagef[i] = logf(1.f + image.imagef[i] * logscale) / logf(1.f + logscale);
}
......@@ -247,7 +247,7 @@ int Editor::quantize(int quantize)
for (size_t i = 0; i < image.size; i++)
{
cout << image.imagef[i] << " " << floor(image.imagef[i] * quantize) / quantize << endl;
//cout << image.imagef[i] << " " << floor(image.imagef[i] * quantize) / quantize << endl;
image.imagef[i] = floor(image.imagef[i] * quantize) / quantize;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment