Home | History | Annotate | Download | only in src

Lines Matching full:cdepth

646     int cdepth = CV_MAT_DEPTH(ctype), ccn = CV_MAT_CN(ctype);
664 int maxDepth = depth > CV_8S ? CV_64F : std::max(std::max(CV_32F, tdepth), cdepth);
696 if( (ccn > 1 || cn > 1) && cdepth != maxDepth )
697 bufSize = std::max( bufSize, blocksize.width*blocksize.height*CV_ELEM_SIZE(cdepth));
790 if( cdepth != maxDepth )
792 Mat plane(bsz, cdepth, &buf[0]);
793 src.convertTo(plane, cdepth, 1, delta);
802 src.convertTo(cdst, cdepth, 1, delta);
805 if( maxDepth != cdepth )
807 Mat plane(bsz, cdepth, &buf[0]);
808 src.convertTo(plane, cdepth);