原文:Win8Metro(C#)数字图像处理--2.13Roberts边缘检测  [函数名称] 图像Roberts边缘检测函数RobertEdgeProcess(WriteableBitmap src) [函数代码]        ///<summary>        /// Roberts edge detection.        ///</summary>        ///<param name="src">Source image…
原文:Win8Metro(C#)数字图像处理--2.14Prewitt 边缘检测  [函数名称] 图像Prewitt边缘检测函数PrewittEdgeProcess(WriteableBitmap src) [函数代码]        ///<summary>        /// Smooth edge detection.        ///</summary>        ///<param name="src">Source imag…
原文:Win8Metro(C#)数字图像处理--2.12Sobel边缘检测  [函数名称] 图像Sobel边缘检测函数SobelEdgeProcess(WriteableBitmap src) [函数代码]        ///<summary>        /// Sobel edge detection.        ///</summary>        ///<param name="src">Source image.</p…
原文:Win8Metro(C#)数字图像处理--2.33图像非线性变换  [函数名称] 图像非线性变换函数NonlinearTransformProcess(WriteableBitmap src,int k )  [函数代码] /// <summary> /// Nonlinear transform process. /// </summary> /// <param name="src">The source image.</para…
原文:Win8Metro(C#)数字图像处理--2.34直方图规定化  [函数名称] WriteableBitmap HistogramSpecificateProcess(WriteableBitmap src, WriteableBitmap dst) [算法说明] [函数代码] /// <summary> /// Histogram specification process. /// </summary> /// <param name="src&quo…
原文:Win8Metro(C#)数字图像处理--2.30直方图均衡化 [函数名称] 直方图均衡化函数HistogramEqualProcess(WriteableBitmap src) [算法说明]   直方图均衡化,又叫做直方图修平,是对图像进行非线性拉伸,重新分配图像像素值,把原始图像的灰度直方图从比较集中的某个灰度区间转换为全部灰度范围内的均匀分布,这样就增加了像素灰度值的动态范围,达到增强图像整体对比度的效果. [函数代码]         /// <summary>         …
原文:Win8Metro(C#)数字图像处理--2.31灰度拉伸算法  [函数名称] 灰度拉伸函数GrayStretchProcess(WriteableBitmap src) [算法说明]   直方图灰度拉伸也叫做对比度拉伸,是一种特殊的线性点运算,使用的是分段线性变换函数,它的主要思想是提高图像灰度级的动态范围:它的作用是扩展图像的直方图,使其充满整个灰度等级的范围内,从而改善输出图像.   如图Fig.1所示,变换函数的运算结果是将原图在a-b之间的灰度级拉伸到c-d之间.如果一幅图像…
原文:Win8Metro(C#)数字图像处理--2.32图像曝光算法  [函数名称] 图像曝光函数ExposureProcess(WriteableBitmap src,int exposureValue)  [函数代码]         /// <summary>         /// Exposure process.         /// </summary>         /// <param name="src">Source i…
原文:Win8Metro(C#)数字图像处理--2.27图像加法运算  [函数名称] 图像加法函数AddProcess(WriteableBitmap src, WriteableBitmap addSrc) [函数代码]         /// <summary>         /// Add procession of two images(Both of them should be in same size).         /// </summary>      …
原文:Win8Metro(C#)数字图像处理--2.28图像乘法运算  [函数名称] 图像乘法函数MultiplicationProcess(WriteableBitmap src, WriteableBitmap mulSrc) [函数代码] /// <summary> /// Multiplication of two images(Both of them should be in same size). /// </summary> /// <param name…