2013-03-27 23:20:08 +01:00
|
|
|
|
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
|
|
|
|
|
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
|
|
|
|
|
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
|
|
|
|
|
program cv_LoadImage;
|
2012-10-22 00:59:47 +02:00
|
|
|
|
|
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
|
|
|
|
|
|
uses
|
2013-04-05 13:36:47 +02:00
|
|
|
|
System.SysUtils,
|
2013-04-05 22:58:24 +02:00
|
|
|
|
uLibName in '..\..\..\include\uLibName.pas',
|
|
|
|
|
highgui_c in '..\..\..\include\highgui\highgui_c.pas',
|
|
|
|
|
core_c in '..\..\..\include\<5C>ore\core_c.pas',
|
|
|
|
|
Core.types_c in '..\..\..\include\<5C>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\<5C>ore\core.pas'
|
2013-04-05 13:36:47 +02:00
|
|
|
|
;
|
2012-10-22 00:59:47 +02:00
|
|
|
|
|
|
|
|
|
const
|
|
|
|
|
// declare image filename
|
2013-03-27 23:20:08 +01:00
|
|
|
|
IMAGE_FILE_NAME = 'Resource\opencv_logo_with_text.png';
|
2012-10-22 00:59:47 +02:00
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
// declare an opencv image pointer variable
|
|
|
|
|
image: pIplImage;
|
|
|
|
|
|
|
|
|
|
begin
|
2013-04-05 13:36:47 +02:00
|
|
|
|
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;
|
2012-10-22 00:59:47 +02:00
|
|
|
|
|
|
|
|
|
end.
|