| 234 | } |
| 235 | |
| 236 | float DecodeScore(float encoded_score) { |
| 237 | return 1 / (1 + std::exp(-encoded_score)); |
| 238 | } |
| 239 | |
| 240 | void DrawBox(const int image_width, const int image_height, int left, int top, |
| 241 | int right, int bottom, tensorflow::TTypes<uint8>::Flat* image) { |
no test coverage detected