Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/delmottea/libCMT
c++ port of the python code from https://github.com/gnebehay/CMT
https://github.com/delmottea/libCMT
Last synced: 18 days ago
JSON representation
c++ port of the python code from https://github.com/gnebehay/CMT
- Host: GitHub
- URL: https://github.com/delmottea/libCMT
- Owner: delmottea
- License: bsd-3-clause
- Created: 2014-05-11T00:46:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-28T21:49:53.000Z (almost 8 years ago)
- Last Synced: 2024-07-31T22:54:21.755Z (3 months ago)
- Language: C++
- Size: 47.9 KB
- Stars: 67
- Watchers: 22
- Forks: 45
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
libCMT
======c++ port of the python code from https://github.com/gnebehay/CMT
based on paper Consensus-based Matching and Tracking of Keypoints for Object Tracking, Nebehay, Georg and Pflugfelder, Roman, 2014
Notes
=====
You need to download the "cokecan" dataset and put it in "sequences/cokecan/" to test the code (the link is given here : http://www.gnebehay.com/cmt/ ).
You can modify main.cpp to change the dataset.If the initialise function is slow (seems to be the case in android), try to move the 2 lines :
detector = cv::Algorithm::create(detectorType.c_str());
descriptorExtractor = cv::Algorithm::create(descriptorType.c_str());to the constructor.