vrcore  0.45
visuReal Messkern
 All Classes Files Functions Variables
HoughEllipses.h
Go to the documentation of this file.
1 #pragma once
2 
7 #include <vector>
8 #include <opencv2/opencv.hpp>
9 
10 struct PointWeight {
11  int x, y;
12  float weight; // <= 1.0
13 };
14 
15 typedef std::vector<PointWeight> PointWeightVector;
16 
38 cv::Mat houghEllipses(cv::Mat& cannyOutput, float a, float b, float sigma, float bFractionMinus = 1.0f, float bFractionPlus = 1.0f);
39 bool getMaximumLocation(const cv::Mat& values, cv::Point2f& location, float& max, float& average);
Definition: HoughEllipses.h:10
cv::Mat houghEllipses(cv::Mat &cannyOutput, float a, float b, float sigma, float bFractionMinus=1.0f, float bFractionPlus=1.0f)
Findet koordinatenachsenparallele Ellipsen in einer Bitmap (Anwendung: Iris-Erkennung) ...
Definition: HoughEllipses.cpp:127