Method SetInputsNames
- Namespace
- OpenCvSharp.Dnn
- Assembly
- OpenCvSharp.dll
SetInputsNames(IEnumerable<string>)
Sets outputs names of the network input pseudo layer.
public void SetInputsNames(IEnumerable<string> inputBlobNames)
Parameters
inputBlobNamesIEnumerable<string>
Remarks
- Each net always has special own the network input pseudo layer with id=0.
- This layer stores the user blobs only and don't make any computations.
- In fact, this layer provides the only way to pass user data into the network.
- As any other layer, this layer can label its outputs and this function provides an easy way to do this.