Function to get running result of the YOLOv3
neuron network in batch mode, used to receive user's xrt_bo to support zero copy.
Prototype
std::vector< YOLOv3Result
> run(const std::vector< vart::xrt_bo_t > &input_bos)=0;
Parameters
The following table lists the run
function arguments.
Type | Name | Description |
---|---|---|
const std::vector< vart::xrt_bo_t > & | input_bos | The vector of vart::xrt_bo_t. |
Returns
The vector ofYOLOv3Result
.