Delphi-OpenCV/samples/LibTest/cvLoadImage/cv_LoadImage2.dpr
Laex 7fcbee712c Add samples
Multidemo
[+] fback_c (cvCalcOpticalFlowFarneback)
[+] minarea (cvMinEnclosingCircle, cvMinAreaRect2)

Signed-off-by: Laex <laex@bk.ru>
2013-04-06 00:58:24 +04:00

84 lines
2.6 KiB
ObjectPascal

// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
program cv_LoadImage2;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
uLibName in '..\..\..\include\uLibName.pas',
highgui_c in '..\..\..\include\highgui\highgui_c.pas',
core_c in '..\..\..\include\ñore\core_c.pas',
Core.types_c in '..\..\..\include\ñore\Core.types_c.pas',
imgproc.types_c in '..\..\..\include\imgproc\imgproc.types_c.pas',
imgproc_c in '..\..\..\include\imgproc\imgproc_c.pas',
legacy in '..\..\..\include\legacy\legacy.pas',
calib3d in '..\..\..\include\calib3d\calib3d.pas',
imgproc in '..\..\..\include\imgproc\imgproc.pas',
haar in '..\..\..\include\objdetect\haar.pas',
objdetect in '..\..\..\include\objdetect\objdetect.pas',
tracking in '..\..\..\include\video\tracking.pas',
Core in '..\..\..\include\ñore\core.pas'
;
Const
filename = 'Resource\opencv_logo_with_text.png';
Var
image: pIplImage = nil;
src: pIplImage = nil;
begin
try
// ïîëó÷àåì êàðòèíêó
image := cvLoadImage(filename, 1);
if Assigned(image) then
begin
// êëîíèðóåì êàðòèíêó
src := cvCloneImage(image);
if Assigned(src) then
begin
// îêíî äëÿ îòîáðàæåíèÿ êàðòèíêè
cvNamedWindow('original', CV_WINDOW_AUTOSIZE);
// ïîêàçûâàåì êàðòèíêó
cvShowImage('original', image);
// âûâîäèì â êîíñîëü èíôîðìàöèþ î êàðòèíêå
WriteLn('src');
with src^ do
begin
WriteLn(Format('[i] channels: %d', [nChannels]));
WriteLn(Format('[i] pixel depth: %d bits', [depth]));
WriteLn(Format('[i] width: %d pixels', [width]));
WriteLn(Format('[i] height: %d pixels', [height]));
WriteLn(Format('[i] image size: %d bytes', [imageSize]));
WriteLn(Format('[i] width step: %d bytes', [widthStep]));
end;
WriteLn;
WriteLn('original');
with src^ do
begin
WriteLn(Format('[i] channels: %d', [nChannels]));
WriteLn(Format('[i] pixel depth: %d bits', [depth]));
WriteLn(Format('[i] width: %d pixels', [width]));
WriteLn(Format('[i] height: %d pixels', [height]));
WriteLn(Format('[i] image size: %d bytes', [imageSize]));
WriteLn(Format('[i] width step: %d bytes', [widthStep]));
end;
// æä¸ì íàæàòèÿ êëàâèøè
cvWaitKey(0);
// îñâîáîæäàåì ðåñóðñû
cvReleaseImage(image);
cvReleaseImage(src);
// óäàëÿåì îêíî
cvDestroyWindow('original');
end;
end;
except
on E: Exception do
WriteLn(E.ClassName, ': ', E.Message);
end;
end.