Win8Metro(C#)数字图像处理--2.18图像平移变换
原文: Win8Metro(C#)数字图像处理--2.18图像平移变换 [函数名称] 图像平移变换函数TranslationProcess(WriteableBitmap src,int x,int y) [函数代码] ///<summary> /// Translation process. ///</summary> ///<param name="src">Source image.</param> ///<param name="x">Translate value of x.</param> ///<param name="y">Translate value of y.</param> ///<returns></returns> publicstaticWriteableBitmap TranslationProcess(WriteableBitmap src,int x,int y)////18平移变换 { if(src!=null ) { in...