Delphi-OpenCV/samples/LibDemo/cvMorphologyEx/cv_MorphologyEx.dpr
Laentir Valetov a016c463c5 Fixed unit names
Signed-off-by: Laentir Valetov <laex@bk.ru>
2014-05-22 18:45:51 +04:00

146 lines
4.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.

//*****************************************************************
// Delphi-OpenCV Demo
// Copyright (C) 2013 Project Delphi-OpenCV
// ****************************************************************
// Contributor:
// Laentir Valetov
// email:laex@bk.ru
// ****************************************************************
// You may retrieve the latest version of this file at the GitHub,
// located at git://github.com/Laex/Delphi-OpenCV.git
// ****************************************************************
// The contents of this file are used with permission, subject to
// the Mozilla Public License Version 1.1 (the "License"); you may
// not use this file except in compliance with the License. You may
// obtain a copy of the License at
// http://www.mozilla.org/MPL/MPL-1_1Final.html
//
// Software distributed under the License is distributed on an
// "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
// implied. See the License for the specific language governing
// rights and limitations under the License.
//*******************************************************************
program cv_MorphologyEx;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
ocv.highgui_c,
ocv.core_c,
ocv.core.types_c,
ocv.imgproc_c,
ocv.imgproc.types_c,
uResourcePaths;
const
// èìÿ êàðòèíêè
filename = cResourceMedia + 'opencv_logo_with_text.png';
var
image: PIplImage = nil;
open: PIplImage = nil;
close: PIplImage = nil;
gradient: PIplImage = nil;
tophat: PIplImage = nil;
blackhat: PIplImage = nil;
radius: Integer = 1;
radius_max: Integer = 10;
iterations: Integer = 1;
iterations_max: Integer = 10;
Kern: PIplConvKernel;
Temp: PIplImage;
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;
// êëîíèðóåì êàðòèíêó
open := cvCloneImage(image);
close := cvCloneImage(image);
gradient := cvCloneImage(image);
tophat := cvCloneImage(image);
blackhat := cvCloneImage(image);
// îêíî äëÿ îòîáðàæåíèÿ êàðòèíêè
cvNamedWindow('original', CV_WINDOW_AUTOSIZE);
cvNamedWindow('CV_MOP_OPEN', CV_WINDOW_AUTOSIZE);
cvNamedWindow('CV_MOP_CLOSE', CV_WINDOW_AUTOSIZE);
cvNamedWindow('CV_MOP_GRADIENT', CV_WINDOW_AUTOSIZE);
cvNamedWindow('CV_MOP_TOPHAT', CV_WINDOW_AUTOSIZE);
cvNamedWindow('CV_MOP_BLACKHAT', 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);
// êàðòèíêà äëÿ ïðîìåæóòî÷íîãî õðàíåíèÿ ðåçóëüòàòîâ cvCreateImage
Temp := cvCreateImage(cvSize(image^.width, image^.height), IPL_DEPTH_8U, 1);
// âûîëíÿåì ïðåîáðàçîâàíèÿ
cvMorphologyEx(image, open, Temp, Kern, CV_MOP_OPEN, iterations);
cvMorphologyEx(image, close, Temp, Kern, CV_MOP_CLOSE, iterations);
cvMorphologyEx(image, gradient, Temp, Kern, CV_MOP_GRADIENT, iterations);
cvMorphologyEx(image, tophat, Temp, Kern, CV_MOP_TOPHAT, iterations);
cvMorphologyEx(image, blackhat, Temp, Kern, CV_MOP_BLACKHAT, iterations);
// ïîêàçûâàåì ðåçóëüòàò
cvShowImage('CV_MOP_OPEN', open);
cvShowImage('CV_MOP_CLOSE', close);
cvShowImage('CV_MOP_GRADIENT', gradient);
cvShowImage('CV_MOP_TOPHAT', tophat);
cvShowImage('CV_MOP_BLACKHAT', blackhat);
cvReleaseStructuringElement(Kern);
cvReleaseImage(Temp);
c := cvWaitKey(33);
if (c = 27) then
Break;
end;
// îcâîáîæäàåì ðåcóðcû
cvReleaseImage(&image);
cvReleaseImage(&open);
cvReleaseImage(&close);
cvReleaseImage(&gradient);
cvReleaseImage(&tophat);
cvReleaseImage(&blackhat);
// óäàëÿåì îêíà
cvDestroyAllWindows();
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.