Delphi-OpenCV/samples/LibTest/cvErode_cvDilate/cvErode_cvDilate.dpr
Laex 2dcca0b554 Some changes
[*] Rename files of:
- Calib3d.pas in calib3d_s.pas
- Tracking.pas in tracking_s.pas
To ensure conformity with the file names OpenCV library
[!] Modules used in the project without the inclusion of relative paths. Added instructions on how to add the module search path (see readme_en.txt)
[+] Added an example Posit (cvReleasePOSITObject, cvPOSIT and others) (thanks to Frans van Daalen (CLubfitter73))

Signed-off-by: Laex <laex@bk.ru>
2013-05-26 12:50:18 +04:00

101 lines
2.4 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,
highgui_c,
core_c,
Core.types_c,
imgproc_c,
imgproc.types_c;
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.