I am trying to replicate the working of TFLITE_DETECTION_POSTPROCESS layer for a custom object detection model.
Does anyone has any reference for TFLITE_DETECTION_POSTPROCESS layer implementation in python?
I have this file detection_postprocess as reference from tensorflow repository, but it is hard to understand this without running.
Any comparable resource will be of great help. Thanks :)
TFLITE_DETECTION_POSTPROCESSlayer for an SSD model, you must implement SSD Box Decoding (Center-Size format with standard scale factors like 10.0 and 5.0) and then apply multi-class Non-Maximum Suppression (NMS) to the resulting absolute box coordinates and scores.