Log() & Exp() by Accord.Net
Bitmap input = ... // Apply log Logarithm log = new Logarithm(); Bitmap output = log.Apply(input); // Revert log Exponential exp = new Exponential(); Bitmap reconstruction = exp.Apply(output); // Show results on screen ImageBox.Show("input", input); ImageBox.Show("output", output); ImageBox.Show("reconstruction", reconstruction);
댓글
댓글 쓰기