vrcore  0.45
visuReal Messkern
 All Classes Files Functions Variables
nms.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 //
3 // visuReal Zentrierdaten-Ermittlung
4 //
5 // Original file: nms.h
6 //
7 // Robert Rossmair, 2011
8 //
9 // Copyright © 2011 Ollendorf Measurement Systems
10 // Dipl.-Ing. Hans-Joachim Ollendorf
11 // Zur Springe 5
12 // 39517 Brunkau
13 // Germany
14 //
15 // Last modified: $Date:: 2012-09-03 11:10:30 +0200 (Mo, 03. Sep 2012) $
16 // Revision: $Rev:: 1629 $
17 // Author: $Author:: r.rossmair $
18 //------------------------------------------------------------------------------
19 
20 #ifndef NMS_H
21 #define NMS_H
22 
25 void nonMaxSuppression(const cv::Mat& magnitude, const cv::Mat& gradientX, const cv::Mat& gradientY, cv::Mat& nms);
26 
27 void computeThresholds(const cv::Mat& magnitude, const cv::Mat& nmsMap, float tlow, float thigh, cv::Mat& edge,
28  double* lowthreshold, double* highthreshold);
29 
30 #endif // NMS_H