NetConnect Method (String, String)
|
Connects output of the first layer to input of the second layer.
Namespace:
OpenCvSharp.Dnn
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic void Connect(
string outPin,
string inpPin
)
Public Sub Connect (
outPin As String,
inpPin As String
)
public:
void Connect(
String^ outPin,
String^ inpPin
)
member Connect :
outPin : string *
inpPin : string -> unit
function Connect(outPin, inpPin);
Parameters
- outPin
- Type: SystemString
descriptor of the first layer output. - inpPin
- Type: SystemString
descriptor of the second layer input.
See Also