本文整理汇总了C#中OpenCvSharp.IplImage.ConvertScale方法的典型用法代码示例。如果您正苦于以下问题:C# IplImage.ConvertScale方法的具体用法?C# IplImage.ConvertScale怎么用?C# IplImage.ConvertScale使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenCvSharp.IplImage
的用法示例。
在下文中一共展示了IplImage.ConvertScale方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}