C++ LEDGE library including the following functions
core: core functions for LEDGE, such as initialization, visualization, etc.detection: functions for detecting line segmentstracking: functions for tracking line segmentsmanager: functions for managing line segments
Terminal 1 (in docker container)
cd /app/LEDGE/ledge
mkdir -p build
cd build
cmake ..
make
sudo make install
- Build not only static library but also .cmake files to find LEDGE library by using cmake command
- LEDGE library can be installed into your local or docker environment
Use cmake and add the following commands into your CMakeLists.txt
find_package(ledge REQUIRED)
target_link_libraries(your_project_name ledge::ledge)