| 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: 1.0.0
Syntax public 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
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