gpt4 book ai didi

c# - C#图像转灰度时如何解决循环错误

转载 作者:行者123 更新时间:2023-12-05 02:36:54 24 4
gpt4 key购买 nike

我正在尝试使用 C# 进行一些图像处理,我在 pictureBox1 中有一张图像还有一个pictureBox2 .我将没有灰度的原始图像加载到第一个 PictureBox 中,然后放置一个按钮事件处理程序来处理该框架内图像中的 Bitmap 到灰度,然后将处理结果显示到第二个 PictureBox 中。当我单击按钮时,出现 ArgumentOutOfRangeException: Parameter must be positive and < Width. (Parameter 'x') 类型的异常.按钮处理程序中的代码如下

//get the graysale representation of this image and assign
Bitmap mymap= new Bitmap(image_path);
//Rectangle myrect= new Rectangle(0,0,mymap.Width,mymap.Height);
Bitmap newmap=new Bitmap(mymap.Height,mymap.Width,mymap.PixelFormat);
Color p;
for(int y = 0; y < mymap.Height; y++)
{
for(int x = 0; x < mymap.Width; x++)
{
p=mymap.GetPixel(x,y);
//get the opacity of this color
int a=p.A;
//get the red component of this pixel
int r = p.R;
//get the green component of this pixel
int g = p.G;
//get the blue component of this pixel
int b = p.B;
//get the average of these colors which is the gray scale
int av=(b+g+r)/ 3;
//assign to the new Bitmap
newmap.SetPixel(x,y,Color.FromArgb(a,av,av,av));
}
}
//assign to pictureBox 2
pictureBox2.Image=newmap;

我做错了什么?

最佳答案

改变这个:

位图(mymap.Height,mymap.Width,mymap.PixelFormat);

对此:

位图(mymap.Width,mymap.Height,mymap.PixelFormat);

位图构造函数需要参数:Width、Height、PixelFormat

关于c# - C#图像转灰度时如何解决循环错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70132436/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com