Exemplo n.º 1
0
 public Image<Gray, byte> Process(Image<Gray, byte> src)
 {
     return src.Not();
 }
Exemplo n.º 2
0
 public Image<Gray, byte> Process(Image<Gray, byte> src)
 {
     if (shouldInvert(src)) return src.Not();
     else return src.Clone();
 }