mirror of
https://github.com/YutaItoh/3D-Eye-Tracker.git
synced 2025-11-04 14:49:48 +08:00
11 lines
422 B
C++
11 lines
422 B
C++
/// Taken and modified from https://github.com/errollw/EyeTab
|
|
|
|
#ifndef IRIS_GEOMETRYFIT_ELLIPSE_H
|
|
#define IRIS_GEOMETRYFIT_ELLIPSE_H
|
|
|
|
#include <opencv2/imgproc/imgproc.hpp>
|
|
#include <opencv2/highgui/highgui.hpp>
|
|
|
|
cv::RotatedRect fit_ellipse(const std::vector<cv::Point2f> &edgePoints, cv::Mat_<float> mPupilSobelX, cv::Mat_<float> mPupilSobelY, std::vector<cv::Point2f> &bestInliers);
|
|
|
|
#endif // IRIS_GEOMETRYFIT_ELLIPSE_H
|