本文整理汇总了C#中OpenCvSharp.IplImage.MinMaxLoc方法的典型用法代码示例。如果您正苦于以下问题:C# IplImage.MinMaxLoc方法的具体用法?C# IplImage.MinMaxLoc怎么用?C# IplImage.MinMaxLoc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenCvSharp.IplImage
的用法示例。
在下文中一共展示了IplImage.MinMaxLoc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FeatureDetector
private IplImage FeatureDetector(Bitmap bitmapIn)
{
double minVal, maxVal;
IplImage i1 = BitmapConverter.ToIplImage(bitmapIn);
IplImage gray = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.U8, 1);
IplImage blur = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.U8, 1);
IplImage gaussian = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.U8, 1);
IplImage laplace = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.F32, gaussian.NChannels);
IplImage converted = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.U8, 1);
IplImage normalized = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.U8, 1);
IplImage tresh = new IplImage(new OpenCvSharp.CvSize(i1.Size.Width, i1.Size.Height), BitDepth.U8, 1);
OpenCvSharp.Cv.CvtColor(i1, gray, ColorConversion.RgbToGray);
OpenCvSharp.Cv.Normalize(gray, normalized, 0.0, 255.0, NormType.MinMax);
OpenCvSharp.Cv.Smooth(normalized, blur, SmoothType.Median, 5, 5);
OpenCvSharp.Cv.Smooth(blur, gaussian, SmoothType.Gaussian, 5, 5);
OpenCvSharp.Cv.Laplace(gaussian, laplace, ApertureSize.Size5);
laplace.MinMaxLoc(out minVal, out maxVal);
laplace.ConvertScale(converted, 255.0 / (2.0 * maxVal), 128);
OpenCvSharp.Cv.Threshold(converted, tresh, 150.0, 255.0, ThresholdType.Binary);
return tresh;
}
示例2: bestMatchNum
private static int bestMatchNum(IplImage source, IplImage[] temp_num, double threshold)
{
CvSize size = new CvSize(
source.GetROI().Width - temp_num[0].Width + 1,
source.GetROI().Height - temp_num[0].Height + 1);
// 0から9の一致度
double[] max_list = new double[10];
// 0-9の画像とマッチング
Parallel.For(0, 10, i =>
{
IplImage result = new IplImage(size, BitDepth.F32, 1);
source.MatchTemplate(temp_num[i], result,
MatchTemplateMethod.CCoeffNormed);
double min;
CvPoint min_point, max_point;
result.MinMaxLoc(out min, out max_list[i], out min_point, out max_point);
});
// 一致度が最大のものを探す
double best = 0.0;
int best_index = -1;
for (int i = 0; i < 10; i++)
{
double tmp = max_list[i];
if (tmp > best)
{
best = tmp;
best_index = i;
}
}
// しきい値以下の精度であれば切り捨て
if (best < threshold) return -1;
return best_index;
}