10 lines
195 B
C++
Executable File
10 lines
195 B
C++
Executable File
#pragma once
|
|
|
|
constexpr int kNumColors = 32;
|
|
|
|
constexpr int kMaxCoastCycles = 1;
|
|
|
|
constexpr int kMinHits = 3;
|
|
|
|
// Set threshold to 0 to accept all detections
|
|
constexpr float kMinConfidence = 0.6; |