Fix ALPR pipeline. Ready for production
This commit is contained in:
@@ -16,14 +16,14 @@ namespace ByteTrack
|
||||
public:
|
||||
using STrackPtr = std::shared_ptr<STrack>;
|
||||
|
||||
BYTETracker(const int& frame_rate = 30,
|
||||
BYTETracker(const int& frame_rate = 10,
|
||||
const int& track_buffer = 30,
|
||||
const float& track_thresh = 0.5,
|
||||
const float& high_thresh = 0.6,
|
||||
const float& match_thresh = 0.8);
|
||||
~BYTETracker();
|
||||
std::vector<STrackPtr> update(const std::vector<Object>& objects);
|
||||
void update_parameters(int frameRate = 30, int trackBuffer = 30, double trackThreshold = 0.5, double highThreshold = 0.6, double matchThresold = 0.8, bool autoFrameRate = false);
|
||||
void update_parameters(int frameRate = 10, int trackBuffer = 30, double trackThreshold = 0.5, double highThreshold = 0.6, double matchThresold = 0.8, bool autoFrameRate = false);
|
||||
float getEstimatedFps() const;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user