Commit 158e1f69 authored by Théophile BORNON's avatar Théophile BORNON

push

parent a61eee28
......@@ -146,9 +146,6 @@ namespace S04_Projet
case Operation.Filter: // TODO
output = FilterOperation(img);
break;
case Operation.CreateImage: // TODO
output = CreateImageOperation();
break;
case Operation.Histogram:
output = HistogramOperation(img);
break;
......
......@@ -583,7 +583,6 @@ namespace S04_Projet
{
// cf https://en.wikipedia.org/wiki/Floyd%E2%80%93Steinberg_dithering
int nbPixel = opt.width * opt.height;
int r, g, b;
int rErr, gErr, bErr;
int newR, newG, newB;
byte[] newRPixel = new byte[nbPixel];
......
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