这是代码:
if (Form1.ExtractAutomatic == true)
{
using (var bitmap = new Bitmap(_width, _height, _width * 3, PixelFormat.Format24bppRgb, pBuffer))
{
if (!this.Secondpass)
{
long[] HistogramValues = Form1.GetHistogram(bitmap);
Form1.Histograms.Add(HistogramValues);
long t = Form1.GetTopLumAmount(HistogramValues, 1000);
Form1.averagesTest.Add(t);
}
else
{
if (_frameId > 0)
{
double t = Form1.averagesTest[_frameId] / 1000.0 - Form1.averagesTest[_frameId - 1] / 1000.0;
w.WriteLine("averagesTest >>> " + t);
double tt = framesCounts();
if (_frameId == framesCounts())
{
w.Close();
}
if (Form1.averagesTest[_frameId] / 1000.0 - Form1.averagesTest[_frameId - 1] / 1000.0 > 0.0)
{
count = 6;
}
if (count > 0)
{
ResizeBitmap(bitmap, 10, 10);
bitmap.RotateFlip(RotateFlipType.Rotate180FlipX);
bitmap.Save(Path.Combine(_outFolder, _frameId.ToString("D6") + ".bmp"),ImageFormat.Bmp);
count --;
}
ResizeBitmap是:
public static Bitmap ResizeBitmap(Bitmap b, int nWidth, int nHeight)
{
Bitmap result = new Bitmap(nWidth, nHeight);
using (Graphics g = Graphics.FromImage((Image)result))
g.DrawImage(b, 0, 0, nWidth, nHeight);
return result;
}
为什么硬盘上的文件是1920X1080而不是10X10? 为什么储蓄这么慢?我认为在这种情况下将文件保存到硬盘中大约2600帧应该快速没有?
有人可以告诉我如何根据我的代码修复它吗?
感谢。
答案 0 :(得分:3)
应该是
bitmap = ResizeBitmap(bitmap, 10, 10);
您没有将调整大小的位图分配给任何内容。
答案 1 :(得分:0)
该方法返回位图,因此您需要使用方法的返回值:
Bitmap newBitmap = ResizeBitmap(bitmap, 10, 10);
答案 2 :(得分:0)
在第一个代码示例的底部附近使用它:
using (Bitmap resized_bmp = ResizeBitmap(bitmap, 10, 10))
{
resized_bmp.RotateFlip(RotateFlipType.Rotate180FlipX);
resized_bmp.Save(Path.Combine(_outFolder, _frameId.ToString("D6") + ".bmp"),ImageFormat.Bmp);
count --;
}
这使用了一个新的Bitmap
变量(并正确配置)以执行保存,正如蒂姆建议的那样。