Home | History | Annotate | Download | only in src

Lines Matching full:normalized

84     normalized = false;
96 normalized = false;
118 normalized = _normalized;
120 if( (normalized && CV_MAT_TYPE(_src_type) != CV_MAT_TYPE(_dst_type)) ||
121 (!normalized && CV_MAT_CN(_src_type) != CV_MAT_CN(_dst_type)))
123 "In case of normalized box filter input and output must have the same type.\n"
131 scale = normalized ? 1./(ksize.width*ksize.height) : 1;
142 if( !normalized )
143 CV_ERROR( CV_StsBadArg, "Only normalized box filter can be used for 8u->8u transformation" );
148 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U )
154 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U )
162 CV_ERROR( CV_StsBadArg, "Only 32f->32f box filter (normalized or not) is supported in case of 32f output" );
447 bool normalized = state->is_normalized();
476 if( normalized )