LdDl / odam

ODAM - Object detection and Monitoring
Apache License 2.0
32 stars 4 forks source link

[FEATURE REQUEST] Track info in gRPC #10

Closed LdDl closed 3 years ago

LdDl commented 3 years ago

Is your feature request related to a problem? Please describe. Would be useful to send information about track (set of points for single object) to gRPC server-side

Describe the solution you'd like This should be done as another gRPC field

message TrackInfo{
    repeated PointInfo points = 1;
}
message PointInfo{
    int32 x = 1;
    int32 y = 2;
}

Describe alternatives you've considered Nope

Additional context Also it would be great to have option in configuration for each virtual line: "send_track": true/false.

LdDl commented 3 years ago

closed by #13 (and further commit with minor fix: https://github.com/LdDl/odam/commit/aa0d25235b854ae914e9def39d88daed711db2d6) accidentally