Home | History | Annotate | Download | only in src

Lines Matching refs:layer_type

574 static CvCNNLayer* icvCreateCNNLayer( int layer_type, int header_size,
604 layer->flags = ICV_CNN_LAYER|layer_type;
1440 int learn_type, layer_type;
1449 CV_CALL(layer_type = cvReadIntByName( fs, node, "layer_type", -1 ));
1457 init_learn_rate < 0 || learn_type < 0 || layer_type < 0 || !weights )
1460 if( layer_type == ICV_CNN_CONVOLUTION_LAYER )
1474 else if( layer_type == ICV_CNN_SUBSAMPLING_LAYER )
1491 else if( layer_type == ICV_CNN_FULLCONNECT_LAYER )
1506 CV_ERROR( CV_StsBadArg, "Invalid <layer_type>" );
1543 CV_CALL(cvWriteInt( fs, "layer_type", ICV_CNN_CONVOLUTION_LAYER ));
1549 CV_CALL(cvWriteInt( fs, "layer_type", ICV_CNN_SUBSAMPLING_LAYER ));
1556 CV_CALL(cvWriteInt( fs, "layer_type", ICV_CNN_FULLCONNECT_LAYER ));