このコードを使用して、ピクチャボックスの画像をもう一度変更するプログラムを作成しました
while(1)
{
this->pictureBox1->Refresh();
System::Drawing::Bitmap ^bmp;
bmp=drawImageMeter(data.Max);
this->pictureBox1->Image =pictureBox1->Image->FromHbitmap(bmp->GetHbitmap());
delete bmp;
}
drawImageMeter(data.Max);
ビットマップを作成して返す関数です。
私の問題は、この行でメモリリークが発生していることです
this->pictureBox1->Image =pictureBox1->Image->FromHbitmap(bmp->GetHbitmap());
Intel Vtune は、同じ行でこのリークを示しています::
P810 Memory leak form2.h Form1.exe 808 New
P34 Kernel resource leak form2.h Form1.exe Not fixed
編集されたコード...
delete pictureBox1->Image;
pictureBox1->Image=nullptr;
this->pictureBox1->Refresh();
bmp=drawImageMeter(data.Max);
System::IntPtr hbitmap = bmp->GetHbitmap();
this->pictureBox1->Image =pictureBox1->Image->FromHbitmap(hbitmap);//Memory LEAK & Kernel Resource Leak
delete bmp;
DeleteObject((HGDIOBJ)hbitmap );
その後、GDIリソースリークは発生していませんが、この行でメモリリークが発生しています..
this->pictureBox1->Image =pictureBox1->Image->FromHbitmap(hbitmap);//Memory LEAK
drawImageMeter() 定義
System::Drawing::Bitmap^ drawImageMeter(float intensity_value)
{
IplImage *Background=cvLoadImage("Dialer.bmp", 1); //Memory Leak
int width,height;
width=Background->width;
height=Background->height;
if(counter==1)
{
counter++;
needle_center.x=width/2;
needle_center.y=height/2;
needle_top.x=needle_center.x;
needle_top.y=needle_center.y-140;
}
double const PI = 3.14159265358979323;
int x1 = needle_top.x;
int y1 = needle_top.y;
int x0=needle_center.x;
int y0=needle_center.y;
float angle;
CurrIntensity = intensity_value;
angle = CurrIntensity-PreIntensity;
angle= 0.0703125f * angle;
// degrees, not radians
float radians = angle * (PI / 180.0f); // convert degrees to radians
if (current_max==1)
{
current_max++;
int N1x1 = needle_top.x;
int N1y1 = needle_top.y;
needle1_top.x = ((N1x1-x0) * cos(radians)) - ((N1y1-y0) * sin(radians)) + x0;
needle1_top.y = ((N1x1-x0) * sin(radians)) + ((N1y1-y0) * cos(radians)) + y0;
}
needle_top.x = ((x1-x0) * cos(radians)) - ((y1-y0) * sin(radians)) + x0;
needle_top.y = ((x1-x0) * sin(radians)) + ((y1-y0) * cos(radians)) + y0;
cvLine(Background, needle_center, needle1_top, CV_RGB(0, 0, 255), 1, 4, 0);
cvLine(Background, needle_center, needle_top, CV_RGB(255, 0, 0), 1, 4, 0);
System::Drawing::Bitmap ^bmp = gcnew System::Drawing::Bitmap(Background->width,Background->height,Background->widthStep,System::Drawing::Imaging::PixelFormat::Format24bppRgb,(System::IntPtr)Background->imageData);
PreIntensity = CurrIntensity;
return bmp;
}
この関数では、//Memory Leak と記述したこの行でメモリ リークが発生しています。ここでこの画像を解放すると、この IplImage *Background をこの関数で解放できないため、pitureBox で画像を表示できなくなり、このアプリケーションを実行すると閉じられます。
誰でもこの問題を解決するのを手伝ってくれませんか。
ありがとう。