Delphi-OpenCV/samples/LibTest/cvLoadImage/cv_LoadImage.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

55 lines
1.6 KiB
ObjectPascal

// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
program cv_LoadImage;
{$APPTYPE CONSOLE}
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
// declare image filename
IMAGE_FILE_NAME = 'Resource\opencv_logo_with_text.png';
var
// declare an opencv image pointer variable
image: pIplImage;
begin
try
// load image from file
// REMARK: all opencv strings are PAnsiChar, pay attention to this
// when using with Delphi 2010/2009
image := cvLoadImage(IMAGE_FILE_NAME);
// create display window
cvNamedWindow('image');
// display image inside "image" window
cvShowImage('image', image);
// wait until user keypress
cvWaitKey();
// release image memory
cvReleaseImage(image);
// close and release all display windows
cvDestroyAllWindows;
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.