dariiamnina / AAMED_integration

Ellipse detection module with python management and compiled source code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

12/10/2020

To run the prediction on image:

cd AAMED_integration

python main.py cmake-build/AAMED images/yourimage.jpg

This generates .txt file for yourimage.jpg in ellipse_cache directory. The text file consists of lines each representing ellipse information sequence: ellipse centre x, y, height, width, angle and confidence.

i.e. 58.589775 59.231426 94.059883 93.348831 27.287233 0.976734 (x, y, height, width, angle, confidence).

Image formats jpg, jpeg, png, tiff, bmp are okay. To support other formats refactor src/main.cpp main function.

To recompile:

cd AAMED_integration/cmake-build

cmake ..

make

About

Ellipse detection module with python management and compiled source code.

License:GNU General Public License v2.0


Languages

Language:C++ 63.0%Language:Makefile 20.4%Language:C 9.0%Language:CMake 7.4%Language:Python 0.2%