h3ct0r / fast_ellipse_detector

This is the implementation in C++ of the paper: 'A fast and effective ellipse detector for embedded vision applications'

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fast Ellipse Detector

This is the implementation in C++ of the paper: 'A fast and effective ellipse detector for embedded vision applications'. It runs on Ubuntu 16.04 with OpenCV 2.4.13.

Original author: mikispace (https://sourceforge.net/projects/yaed/)

Michele Fornaciari, Andrea Prati, Rita Cucchiara, "A fast and effective ellipse detector for embedded vision applications", Pattern Recognition, 2014

(http://www.sciencedirect.com/science/article/pii/S0031320314001976)

How to compile:

g++ Main.cpp EllipseDetectorYaed.cpp common.cpp -o ellipse_det -std=c++11 `pkg-config --cflags --libs opencv`

How to run:

./ellipse_det

About

This is the implementation in C++ of the paper: 'A fast and effective ellipse detector for embedded vision applications'

License:MIT License


Languages

Language:C++ 98.4%Language:Shell 1.6%