Delphi-OpenCV/samples/LibTest/cvLoadImage/cv_LoadImage2.dpr
Laex 06de9955d7 Many changes
[*] Repository rebuilt
[*] CameraCalibrate - now working
[+] Improved cvSave
[+] Implemented macro CV_MAT_ELEM
[+] CvOpenFileStorage
and more ...

Signed-off-by: Laex <laex@bk.ru>
2013-04-02 02:17:25 +04:00

75 lines
2.2 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,
Core.types_c in '..\..\..\include\ñore\Core.types_c.pas',
core_c in '..\..\..\include\ñore\core_c.pas',
highgui_c in '..\..\..\include\highgui\highgui_c.pas',
uLibName in '..\..\..\include\uLibName.pas',
types_c in '..\..\..\include\ñore\types_c.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.