The batch mode post-processing function of the
EfficientDetD2
network.
Prototype
std::vector<
EfficientDetD2Result
> postprocess(size_t batch_size, const std::vector< int > &swidths, const std::vector< int > &sheights, const std::vector< float > &image_scales)=0;
Parameters
The following table lists the postprocess function arguments.
| Type | Member | Description |
|---|---|---|
| size_t | batch_size | num of batch input |
| const std::vector< float > & | image_scales | image scale to fit the network input size |
| const std::vector< int > & | swidths | batch input image widths |
| const std::vector< int > & | sheights | batch input image heights |
Returns
The vector of struct ofEfficientDetD2Result
.