Delphi-OpenCV/samples/LibTest/cvErode_cvDilate/cvErode_cvDilate.dpr
Laex a58d5f3056 Fixed issues #3
Signed-off-by: Laex <laex@bk.ru>
2013-04-18 10:34:16 +04:00

109 lines
3.0 KiB
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
program cvErode_cvDilate;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
uLibName in '..\..\..\include\uLibName.pas',
highgui_c in '..\..\..\include\highgui\highgui_c.pas',
core_c in '..\..\..\include\core\core_c.pas',
Core.types_c in '..\..\..\include\core\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\core\core.pas';
Const
// èìÿ êàðòèíêè
filename = 'Resource\opencv_logo_with_text.png';
Var
image: PIplImage = Nil;
dst: PIplImage = Nil;
erode: PIplImage = Nil;
dilate: PIplImage = Nil;
radius: Integer = 1;
radius_max: Integer = 10;
iterations: Integer = 1;
iterations_max: Integer = 10;
Kern: pIplConvKernel;
c: Integer;
//
// ôóíêöèÿ-îáðàáîò÷èê ïîëçóíêà -
// ðàäèóc ÿäðà
procedure myTrackbarRadius(pos: Integer); cdecl;
begin
radius := pos;
end;
//
// ôóíêöèÿ-îáðàáîò÷èê ïîëçóíêà -
// ÷ècëî èòåðàöèé
procedure myTrackbarIterations(pos: Integer); cdecl;
begin
iterations := pos;
end;
begin
try
image := cvLoadImage(filename, 1);
Writeln('[i] image: ', filename);
if not Assigned(image) then
Halt;
// êëîíèðóåì êàðòèíêó
dst := cvCloneImage(image);
erode := cvCloneImage(image);
dilate := cvCloneImage(image);
// îêíî äëÿ îòîáðàæåíèÿ êàðòèíêè
cvNamedWindow('original', CV_WINDOW_AUTOSIZE);
cvNamedWindow('erode', CV_WINDOW_AUTOSIZE);
cvNamedWindow('dilate', CV_WINDOW_AUTOSIZE);
cvCreateTrackbar('Radius', 'original', @radius, radius_max, myTrackbarRadius);
cvCreateTrackbar('Iterations', 'original', @iterations, iterations_max, myTrackbarIterations);
while True do
begin
// ïîêàçûâàåì êàðòèíêó
cvShowImage('original', image);
// cîçäà¸ì ÿäðî
Kern := cvCreateStructuringElementEx(radius * 2 + 1, radius * 2 + 1, radius, radius, CV_SHAPE_ELLIPSE);
// âûïîëíÿåì ïðåîáðàçîâàíèÿ
cvErode(image, erode, Kern, iterations);
cvDilate(image, dilate, Kern, iterations);
// ïîêàçûâàåì ðåçóëüòàò
cvShowImage('erode', erode);
cvShowImage('dilate', dilate);
cvReleaseStructuringElement(Kern);
c := cvWaitKey(33);
if (c = 27) then
Break;
end;
// îcâîáîæäàåì ðåcóðcû
cvReleaseImage(image);
cvReleaseImage(dst);
cvReleaseImage(erode);
cvReleaseImage(dilate);
// óäàëÿåì îêíî
cvDestroyWindow('original');
cvDestroyWindow('erode');
cvDestroyWindow('dilate');
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.