当前位置:编程学习 > C#/ASP.NET >>

如何读入几十张图片

拟编定一个程序,读入40张二维图片,提取每张图片的像素值,赋值给一个三维数组,40张图片的像素值就构成了这个三维数组的值,请问该怎么实现呢?如何读入这40张图片呢? --------------------编程问答-------------------- 有点模糊 --------------------编程问答-------------------- 我的疑问就是如何从文件中读入不止一张图片,并分别提取他们的像素值 --------------------编程问答-------------------- 简单些就是用两个For循环配合Color c = bmp.GetPixel(int,int)
--------------------编程问答-------------------- 3楼的方法提取一张图片的像素值吗?这个我知道的呀 --------------------编程问答-------------------- List<Image> lst=new List<image>();
lst.Add(。。);
Bitmap bitmap = pictureBox1.Image as Bitmap;
            if (bitmap != null)
            {
                for (int i = 0; i < bitmap.Height; i++)
                {
                    for (int j = 0; j < bitmap.Width; j++)
                    {
                        Color pixel = bitmap.GetPixel(j, i);

                        Console.WriteLine(pixel.R.ToString() + ", " + pixel.G.ToString() + ", " + pixel.B.ToString());
                    }
                }
            }
--------------------编程问答--------------------
引用 5 楼 wuyq11 的回复:
List<Image> lst=new List<image>();
lst.Add(。。);
Bitmap bitmap = pictureBox1.Image as Bitmap;
  if (bitmap != null)
  {
  for (int i = 0; i < bitmap.Height; i++)
  {
  for (int j = 0; j < bitmap……


能否解释一下前两句的用意啊?我有点不太明白。
另外,lst.Add(。。);括弧中的两个句号是什么意思?我用到程序中怎么出错呢?
感谢5楼
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,