| Package | Description |
|---|---|
| org.bytedeco.javacpp |
| Modifier and Type | Method and Description |
|---|---|
opencv_dnn.LayerParams |
opencv_dnn.LayerParams.blobs(opencv_core.MatVector blobs) |
opencv_dnn.LayerParams |
opencv_dnn.LayerParams.name(org.bytedeco.javacpp.BytePointer name) |
opencv_dnn.LayerParams |
opencv_dnn.LayerParams.position(long position) |
opencv_dnn.LayerParams |
opencv_dnn.LayerParams.type(org.bytedeco.javacpp.BytePointer type) |
| Modifier and Type | Method and Description |
|---|---|
int |
opencv_dnn.Net.addLayer(org.bytedeco.javacpp.BytePointer name,
org.bytedeco.javacpp.BytePointer type,
opencv_dnn.LayerParams params)
\brief Adds new layer to the net.
|
int |
opencv_dnn.Net.addLayer(String name,
String type,
opencv_dnn.LayerParams params) |
int |
opencv_dnn.Net.addLayerToPrev(org.bytedeco.javacpp.BytePointer name,
org.bytedeco.javacpp.BytePointer type,
opencv_dnn.LayerParams params)
\brief Adds new layer and connects its first input to the first output of previously added layer.
|
int |
opencv_dnn.Net.addLayerToPrev(String name,
String type,
opencv_dnn.LayerParams params) |
opencv_dnn.Layer |
opencv_dnn.LayerFactory.Constructor.call(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.BlankLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.LSTMLayer |
opencv_dnn.LSTMLayer.create(opencv_dnn.LayerParams params)
Creates instance of LSTM layer
|
static opencv_dnn.RNNLayer |
opencv_dnn.RNNLayer.create(opencv_dnn.LayerParams params)
Creates instance of RNNLayer
|
static opencv_dnn.BaseConvolutionLayer |
opencv_dnn.ConvolutionLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.BaseConvolutionLayer |
opencv_dnn.DeconvolutionLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.LRNLayer |
opencv_dnn.LRNLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.PoolingLayer |
opencv_dnn.PoolingLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.SoftmaxLayer |
opencv_dnn.SoftmaxLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.InnerProductLayer |
opencv_dnn.InnerProductLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.MVNLayer |
opencv_dnn.MVNLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ReshapeLayer |
opencv_dnn.ReshapeLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.FlattenLayer |
opencv_dnn.FlattenLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ConcatLayer |
opencv_dnn.ConcatLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.SplitLayer |
opencv_dnn.SplitLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.SliceLayer |
opencv_dnn.SliceLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.PermuteLayer |
opencv_dnn.PermuteLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.ShuffleChannelLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.PaddingLayer |
opencv_dnn.PaddingLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ReLULayer |
opencv_dnn.ReLULayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ReLU6Layer |
opencv_dnn.ReLU6Layer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.ChannelsPReLULayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ELULayer |
opencv_dnn.ELULayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.TanHLayer |
opencv_dnn.TanHLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.SigmoidLayer |
opencv_dnn.SigmoidLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.BNLLLayer |
opencv_dnn.BNLLLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.AbsLayer |
opencv_dnn.AbsLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.PowerLayer |
opencv_dnn.PowerLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.CropLayer |
opencv_dnn.CropLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.EltwiseLayer |
opencv_dnn.EltwiseLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.BatchNormLayer |
opencv_dnn.BatchNormLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.MaxUnpoolLayer |
opencv_dnn.MaxUnpoolLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ScaleLayer |
opencv_dnn.ScaleLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.ShiftLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.PriorBoxLayer |
opencv_dnn.PriorBoxLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ReorgLayer |
opencv_dnn.ReorgLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.RegionLayer |
opencv_dnn.RegionLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.DetectionOutputLayer |
opencv_dnn.DetectionOutputLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.NormalizeBBoxLayer |
opencv_dnn.NormalizeBBoxLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ResizeLayer |
opencv_dnn.ResizeLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.InterpLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.ProposalLayer |
opencv_dnn.ProposalLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.CropAndResizeLayer.create(opencv_dnn.LayerParams params) |
static opencv_dnn.Layer |
opencv_dnn.LayerFactory.createLayerInstance(org.bytedeco.javacpp.BytePointer type,
opencv_dnn.LayerParams params)
\brief Creates instance of registered layer.
|
static opencv_dnn.Layer |
opencv_dnn.LayerFactory.createLayerInstance(String type,
opencv_dnn.LayerParams params) |
void |
opencv_dnn.Layer.setParamsFrom(opencv_dnn.LayerParams params)
Initializes only #name, #type and #blobs fields.
|
Copyright © 2018. All rights reserved.