Home | History | Annotate | Download | only in src

Lines Matching refs:input_height

75    length(X)==<n_input_planes>*<input_height>*<input_width>,
129 if( img_size != first_layer->input_height*first_layer->input_width ) \
228 const int img_height = first_layer->input_height;
341 img_height = first_layer->input_height;
514 if( layer->input_height != 1 || layer->output_height != 1 ||
521 prev_layer->output_height != layer->input_height ||
575 int n_input_planes, int input_height, int input_width,
589 input_height < 1 || input_width < 1 ||
591 input_height < output_height ||
608 layer->input_height = input_height;
632 int n_input_planes, int input_height, int input_width,
643 const int output_height = input_height - K + 1;
650 sizeof(CvCNNConvolutionLayer), n_input_planes, input_height, input_width,
698 int n_input_planes, int input_height, int input_width,
708 const int output_height = input_height/sub_samp_scale;
716 sizeof(CvCNNSubSamplingLayer), n_input_planes, input_height, input_width,
831 const int Xheight = layer->input_height;
901 const int Xheight = layer->input_height;
1039 const int X_plane_height = layer->input_height;
1438 int n_input_planes, input_height, input_width;
1444 CV_CALL(input_height = cvReadIntByName( fs, node, "input_height", -1 ));
1455 if( n_input_planes < 0 || input_height < 0 || input_width < 0 ||
1462 const int K = input_height - output_height + 1;
1471 n_input_planes, input_height, input_width, n_output_planes, K,
1477 const int sub_samp_scale = input_height/output_height;
1488 n_input_planes, input_height, input_width, sub_samp_scale,
1498 if( input_height != 1 || input_width != 1 ||
1531 CV_CALL(cvWriteInt( fs, "input_height", layer->input_height ));