Delphi-OpenCV/samples/LibDemo/cvMatchTemplate/cv_MatchTemplate.dpr
Mikhail Grigorev 2f087607e5 Refactoring directory structure
Signed-off-by: Mikhail Grigorev <sleuthhound@gmail.com>
2014-05-22 12:53:48 +06:00

73 lines
2.4 KiB
ObjectPascal

(* /*****************************************************************
// 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.
******************************************************************* *)
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
program cv_MatchTemplate;
{$APPTYPE CONSOLE}
uses
System.SysUtils,
opencv.highgui_c,
opencv.core_c,
opencv.core.types_c,
opencv.imgproc_c,
opencv.imgproc.types_c,
uResourcePaths;
var
imgSrc, imgTmp, imgMat: PIplImage;
min: double;
p1, p2: TCvPoint;
begin
imgSrc := cvLoadImage(cResourceMedia + 'My_Desk.jpg');
imgTmp := cvLoadImage(cResourceMedia + 'Stapler2.jpg');
imgMat := cvCreateImage(CvSize(imgSrc.Width - imgTmp.Width + 1, imgSrc.Height - imgTmp.Height + 1), IPL_DEPTH_32F, 1);
try
cvNamedWindow('Src');
cvNamedWindow('Temp');
cvNamedWindow('Match');
cvNamedWindow('Result');
cvShowImage('Src', imgSrc);
cvShowImage('Temp', imgTmp);
cvMatchTemplate(imgSrc, imgTmp, imgMat, CV_TM_CCOEFF_NORMED);
cvShowImage('Match', imgMat);
cvMinMaxLoc(imgMat, @min, @min, nil, @p1, nil);
p2.X := p1.X + imgTmp.Width - 1;
p2.Y := p1.Y + imgTmp.Height - 1;
cvRectangle(imgSrc, p1, p2, CV_RGB(255,0,0));
cvShowImage('Result', imgSrc);
cvWaitKey(0);
finally
cvReleaseImage(imgSrc);
cvReleaseImage(imgTmp);
cvReleaseImage(imgMat);
cvDestroyAllWindows;
end;
end.