| NetSetInputsNames Method |
Sets outputs names of the network input pseudo layer.
Namespace:
OpenCvSharp.Dnn
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void SetInputsNames(
IEnumerable<string> inputBlobNames
)
Public Sub SetInputsNames (
inputBlobNames As IEnumerable(Of String)
)
public:
void SetInputsNames(
IEnumerable<String^>^ inputBlobNames
)
member SetInputsNames :
inputBlobNames : IEnumerable<string> -> unit
Parameters
- inputBlobNames
- Type: System.Collections.GenericIEnumerableString
[Missing <param name="inputBlobNames"/> documentation for "M:OpenCvSharp.Dnn.Net.SetInputsNames(System.Collections.Generic.IEnumerable{System.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.
See Also