5 #ifndef GBMOT_KOERNERTRACKING_H 6 #define GBMOT_KOERNERTRACKING_H 8 #include "../core/DetectionSequence.h" 9 #include "../core/Tracklet.h" 10 #include "../graph/Definitions.h" 23 const size_t max_frame_skip_;
28 const double penalty_values_;
33 const size_t max_tracklet_counts_;
41 NStage(
size_t max_frame_skip,
double penalty_value,
42 size_t max_tracklet_count);
59 DirectedGraph& tlt_graph,
70 std::vector<core::TrackletPtr>& tracks);
75 #endif //GBMOT_KOERNERTRACKING_H NStage(size_t max_frame_skip, double penalty_value, size_t max_tracklet_count)
Definition: NStage.cpp:11
void CreateObjectGraph(DirectedGraph &graph, const core::DetectionSequence &detections)
Definition: NStage.cpp:18
void ExtractTracks(DirectedGraph &tlt_graph, size_t depth, std::vector< core::TrackletPtr > &tracks)
Definition: NStage.cpp:211
Definition: KShortestPaths.cpp:12
void CreateTrackletGraph(DirectedGraph &obj_graph, DirectedGraph &tlt_graph, size_t frame_count)
Definition: NStage.cpp:91
Definition: DetectionSequence.h:19