Process
Function Usage
Plugin execution method. This method needs to be rewritten for custom plugins to implement the functions of the plugin in this method.
Prototype
1 | virtual APP_ERROR MxPluginBase::Process(std::vector<MxpiBuffer *>& mxpiBuffer) = 0; |
Parameters
Parameter |
Description |
|---|---|
mxpiBuffer |
Data transferred by the previous plugin. The member data under this data structure is input by the upstream plugin. Do not manually set the memory data. |
Response Parameters
Data Structure |
Description |
|---|---|
APP_ERROR |
For details about the returned error codes, see APP_ERROR Description. |
Parent topic: MxPluginBase