摘要:
浮雕效果处理浮雕效果:是将图像的变化部分突出的表现出来,而相通的颜色部分则被淡化掉,使图像出现纵深感,从而达到浮雕的效果。采用的算法是:将要处理的像素与处于同一对角线上的另一个像素做差值,然后加上128,大于255就等于255,小于0就等于0,其他的不做处理 public Bitmap Relife(Image image) { int width = image.Width; int height = image.Height; Bitmap temp = new Bitmap( width, he... 阅读全文
摘要:
图像的黑白处理彩色图像的黑白处理通常有三种方法解决:最大值法、平均值发、加权平均值。 public Bitmap BlackWhiteDel(Image image) { int width = image.Width; int height = image.Height; Bitmap temp = new Bitmap( width, height ); Bitmap bitmap = (Bitmap)image; Color pixel; ... 阅读全文
摘要:
实现图像的旋转private void btnRotating_Click( object sender, EventArgs e ) { pbNewPicture.Image = Rotating((Bitmap)pbImage.Image, Convert.ToInt32( cmbAngle.SelectedItem.ToString() ) ); } public Bitmap Rotating(Bitmap bitmap,int angle) { angle = angle % 360;... 阅读全文