我到处都看过,但似乎没有一个标准(我可以看到)如何检查图像是否为空白。在 C# 中
我有这样做的方法,但很想知道检查图像是否为空白的正确方法是什么,以便将来每个人都可以知道。
我不会复制粘贴一堆代码,如果您愿意,我会很高兴,但我首先想解释一下我如何检查图像是否为空白。
您拍摄 .jpg 图像,获取它的宽度。例如 500 像素然后你将它除以 2 得到 250
然后你检查每个像素的颜色在(250 宽度和 i 高度)的位置(你迭代认为图像的高度。
然后这样做只是垂直检查图像的中间像素线。它会检查所有像素以查看颜色是否为白色以外的任何颜色。我已经这样做了,因此您不必搜索所有 500* 高度的像素,因为您几乎总是会在页面中间遇到一种颜色。
它的工作......有点慢......必须有更好的方法来做到这一点?您可以将其更改为垂直搜索 2/3/4 行,以增加发现非空白页面的机会,但这将花费更长的时间。
(另请注意,在这种情况下,使用图像的大小来检查它是否包含某些内容将不起作用,因为带有两个句子的页面和空白页面的大小彼此太接近)
加入溶液后。
帮助实施和理解解决方案的资源。
(请注意,在第一个网站上,所述 Pizelformat 实际上是 Pixelformat) - 我知道的小错误,只是提到,可能会给某些人造成一些混淆。
在我实施了加快像素搜寻的方法后,速度并没有提高多少。所以我会认为我做错了什么。
旧时间 = 15.63,40 张图像。
新时间 = 40 张图像的 15.43
我在 DocMax引用的精彩文章中看到,代码“锁定”在一组像素中。(或者这就是我的理解)所以我所做的就是锁定每页的中间行像素。这是正确的做法吗?
private int testPixels(String sourceDir)
{
//iterate through images
string[] fileEntries = Directory.GetFiles(sourceDir).Where(x => x.Contains("JPG")).ToArray();
var q = from string x in Directory.GetFiles(sourceDir)
where x.ToLower().EndsWith(".jpg")
select new FileInfo(x);
int holder = 1;
foreach (var z in q)
{
Bitmap mybm= Bitmap.FromFile(z.FullName) as Bitmap;
int blank = getPixelData2(mybm);
if (blank == 0)
{
holder = 0;
break;
}
}
return holder;
}
然后上课
private unsafe int getPixelData2(Bitmap bm)
{
BitmapData bmd = bm.LockBits(new System.Drawing.Rectangle((bm.Width / 2), 0, 1, bm.Height), System.Drawing.Imaging.ImageLockMode.ReadOnly, bm.PixelFormat);
int blue;
int green;
int red;
int width = bmd.Width / 2;
for (int y = 0; y < bmd.Height; y++)
{
byte* row = (byte*)bmd.Scan0 + (y * bmd.Stride);
blue = row[width * 3];
green = row[width * 2];
red = row[width * 1];
// Console.WriteLine("Blue= " + blue + " Green= " + green + " Red= " + red);
//Check to see if there is some form of color
if ((blue != 255) || (green != 255) || (red != 255))
{
bm.Dispose();
return 1;
}
}
bm.Dispose();
return 0;
}