Function to get running result of the ReID neural network in batch mode.
Prototype
std::vector<
ReidResult
> run(const std::vector< cv::Mat > &images)=0;
Parameters
The following table lists the run function arguments.
| Type | Member | Description |
|---|---|---|
| const std::vector< cv::Mat > & | images | Input data of input images (vector<cv::Mat>). |
Returns
vector ofReidResult
.