From d68e0219ffb9888ca6ab7dfc766f37865e77b3bc Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 28 Sep 2007 01:44:27 +0200 Subject: [PATCH] - histogram outputs image/grayscale/histogram to make it possible to display histogram as a graph --- Plugins/Histogram/Histogram.cs | 2 +- doc/Matching | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Histogram/Histogram.cs b/Plugins/Histogram/Histogram.cs index ec67993..45c5743 100644 --- a/Plugins/Histogram/Histogram.cs +++ b/Plugins/Histogram/Histogram.cs @@ -280,7 +280,7 @@ namespace Eithne } private static string[] matchin = new string[] { "image/grayscale" }; - private static string[] matchout = new string[] { "image/grayscale" }; + private static string[] matchout = new string[] { "image/grayscale/histogram" }; public override string[] MatchIn { get { return matchin; } } public override string[] MatchOut { get { return matchout; } } diff --git a/doc/Matching b/doc/Matching index ab19ef8..48723fd 100644 --- a/doc/Matching +++ b/doc/Matching @@ -1,6 +1,7 @@ image image/rgb image/grayscale +image/grayscale/histogram image/float result result/processed -- 2.11.4.GIT