forked from Smorodov/Multitarget-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new CSRT tracker from opencv_contrib (Smorodov#106)
* Added hough3d sources * Calculate 3D hough trajectory lines * Added fps * Some warnings removing * Fixed warning * Added small crops in DNN detector for High resolution videos and small objects * Small refactoring * Some fix for single tracking * Added openmp flags to the compiler * Draw trajectory option * Update Readme * Fixed link * Hough3D disabled now in CMake * Added Yolo (and Tiny Yolo) detector * Update Readme * Remove unused Hybrid face detector * Extract Capture+Detection into the separate thread * Fixed potential deadlock * Points visualization * Control out the frame moving * Remove hough3d from master * Fixed NMS for object with different types * Fix in Readme and TODO * OpenCV 4.0 ready * Added YOLO v3 tiny * Added compute target for DNN examples (default is OpenCL_FP16) * Fixed compatible bug with OpenCV version < 4.0 * Fixed project name in CMake * Simple implementation of the Abandoned detection * Increased timeout * Fixed help message * Added Abandoned to the Readme * Fixed Readme * Switch travis to the latest OpenCV 3.4.1 version * Set timeouts to 60 sec * Fixed travis script for OpenCV 3.4.1 * Fixed travis for gcc6 * Fixed linker error * Fixed compiler in travis * Fixed travis and CMakeLists for C++14 support * Capture for webcams * Fix bug with ROI for local tracking * Automatic inertia correction in linear Kalman filter * Update TODO * Yolo eample refactoring * Refactoring: split project to share library and example * Added cars counting example * Fix for OpenCV 4.0 * Single threaded cars counting example * Added lines class * Added API for road lines * Added cars counting code * Changed road line caption * Fixed bug with roi rect clamping * To Linear Kalman filter added speed for rectangle size * Improved quality of line intersection algorithm * Fixed bug with Kalman width and height correction * Return MOSSE tracker * Temporal correction object size when selected only points filter * Some small improvements * Compilation on Windows MSVC 2017 with OpenCV 4.0 * Added new CSRT tracker from opencv_contrib * Fixed some warnings * Fixed type conversion warnings * In CMake added options for enable|disable building cars counting and all other examples
- Loading branch information
Showing
12 changed files
with
153 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required (VERSION 2.8) | ||
cmake_minimum_required (VERSION 3.5) | ||
|
||
project(CarsCounting) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required (VERSION 2.8) | ||
cmake_minimum_required (VERSION 3.5) | ||
|
||
project(MultitargetTracker) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.