| 28 | namespace vbtracker { |
| 29 | |
| 30 | Led::Led(LedIdentifier *identifier, float x, float y, Brightness brightness) |
| 31 | : m_id(-1), m_identifier(identifier) { |
| 32 | addMeasurement(cv::Point2f(x, y), brightness); |
| 33 | } |
| 34 | |
| 35 | Led::Led(LedIdentifier *identifier, cv::Point2f loc, Brightness brightness) |
| 36 | : m_id(-1), m_identifier(identifier) { |
nothing calls this directly
no outgoing calls
no test coverage detected