NetConnect Method (Int32, Int32, Int32, Int32)
|
Connects #@p outNum output of the first layer to #@p inNum input of the second layer.
Namespace:
OpenCvSharp.Dnn
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic void Connect(
int outLayerId,
int outNum,
int inpLayerId,
int inpNum
)
Public Sub Connect (
outLayerId As Integer,
outNum As Integer,
inpLayerId As Integer,
inpNum As Integer
)
public:
void Connect(
int outLayerId,
int outNum,
int inpLayerId,
int inpNum
)
member Connect :
outLayerId : int *
outNum : int *
inpLayerId : int *
inpNum : int -> unit
function Connect(outLayerId, outNum, inpLayerId, inpNum);
Parameters
- outLayerId
- Type: SystemInt32
identifier of the first layer - outNum
- Type: SystemInt32
identifier of the second layer - inpLayerId
- Type: SystemInt32
number of the first layer output - inpNum
- Type: SystemInt32
number of the second layer input
See Also