Home
last modified time | relevance | path

Searched refs:vstep (Results 1 – 12 of 12) sorted by relevance

/external/opencv3/modules/core/src/
Dlapack.cpp92 JacobiImpl_( _Tp* A, size_t astep, _Tp* W, _Tp* V, size_t vstep, int n, uchar* buf ) in JacobiImpl_() argument
100 vstep /= sizeof(V[0]); in JacobiImpl_()
104 V[i*vstep + j] = (_Tp)0; in JacobiImpl_()
105 V[i*vstep + i] = (_Tp)1; in JacobiImpl_()
188 rotate(V[vstep*k+i], V[vstep*l+i]); in JacobiImpl_()
232 std::swap(V[vstep*m + i], V[vstep*k + i]); in JacobiImpl_()
393 JacobiSVDImpl_(_Tp* At, size_t astep, _Tp* _W, _Tp* Vt, size_t vstep, in JacobiSVDImpl_() argument
403 vstep /= sizeof(Vt[0]); in JacobiSVDImpl_()
417 Vt[i*vstep + k] = 0; in JacobiSVDImpl_()
418 Vt[i*vstep + i] = 1; in JacobiSVDImpl_()
[all …]
/external/opencv3/3rdparty/libjasper/
Djas_image.c98 uint_fast32_t hstep, uint_fast32_t vstep, uint_fast32_t width, uint_fast32_t
170 cmptparm->tly, cmptparm->hstep, cmptparm->vstep, in jas_image_create()
299 uint_fast32_t hstep, uint_fast32_t vstep, uint_fast32_t width, uint_fast32_t in jas_image_cmpt_create() argument
313 cmpt->vstep_ = vstep; in jas_image_cmpt_create()
670 cmptparm->tly, cmptparm->hstep, cmptparm->vstep, in jas_image_addcmpt()
858 cmptparms.vstep = cmpt->vstep_; in jas_image_depalettize()
1076 cmptparm.vstep = vs; in jas_image_sampcmpt()
1142 jas_image_coord_t vstep; in jas_image_ishomosamp() local
1146 vstep = jas_image_cmptvstep(image, 0); in jas_image_ishomosamp()
1150 jas_image_cmptvstep(image, i) != vstep) { in jas_image_ishomosamp()
[all …]
Djpc_dec.c463 compinfo->vstep = cmpt->vstep; in jpc_dec_process_sot()
700 cmpt->hstep), JPC_CEILDIV(tile->ystart, cmpt->vstep), in jpc_dec_tileinit()
702 cmpt->vstep)))) { in jpc_dec_tileinit()
1126 JPC_CEILDIV(dec->ystart, cmpt->vstep), jas_matrix_numcols( in jpc_dec_tiledecode()
1193 cmpt->vstep = siz->comps[compno].vsamp; in jpc_dec_process_siz()
1196 cmpt->height = JPC_CEILDIV(dec->yend, cmpt->vstep) - in jpc_dec_process_siz()
1197 JPC_CEILDIV(dec->ystart, cmpt->vstep); in jpc_dec_process_siz()
1240 tcomp->ystart = JPC_CEILDIV(tile->ystart, cmpt->vstep); in jpc_dec_process_siz()
1242 tcomp->yend = JPC_CEILDIV(tile->yend, cmpt->vstep); in jpc_dec_process_siz()
Djpc_dec.h545 uint_fast32_t vstep; member
Djpc_t2dec.c519 picomp->vsamp = cmpt->vstep; in jpc_dec_pi_create()
/external/opencv/ml/src/
D_ml.h75 #define ICV_MAT2VEC( mat, vdata, vstep, num ) \ argument
81 (vstep) = CV_ELEM_SIZE( (mat).type ); \
86 (vstep) = (mat).step; \
/external/opencv3/apps/traincascade/
Dold_ml_precomp.hpp71 #define ICV_MAT2VEC( mat, vdata, vstep, num ) \ argument
77 (vstep) = CV_ELEM_SIZE( (mat).type ); \
82 (vstep) = (mat).step; \
/external/opencv3/modules/ml/src/
Ddata.cpp838 size_t vstep = layout == ROW_SAMPLE ? 1 : sstep0; in getTrainSamples() local
844 std::swap(sstep, vstep); in getTrainSamples()
855 dst[j] = src[(vptr ? vptr[j] : j)*vstep]; in getTrainSamples()
873 size_t vstep = layout == ROW_SAMPLE ? 1 : step; in getValues() local
875 const float* src = samples.ptr<float>() + vi*vstep; in getValues()
949 size_t vstep = layout == ROW_SAMPLE ? 1 : step; in getSample() local
960 buf[i] = src[j*vstep]; in getSample()
/external/opencv3/3rdparty/libjasper/jasper/
Djas_image.h232 jas_image_coord_t vstep; member
/external/opencv/otherlibs/highgui/
Dgrfmt_jpeg2000.cpp414 component_info[i].vstep = 1; in WriteImage()
/external/opencv3/modules/imgcodecs/src/
Dgrfmt_jpeg2000.cpp453 component_info[i].vstep = 1; in write()
/external/opencv/cxcore/src/
Dcxmatmul.cpp2677 int vstep; in cvCalcCovarMatrix() local
2681 vstep = vecdata[i].step; in cvCalcCovarMatrix()
2686 vstep = vec_step; in cvCalcCovarMatrix()
2689 ext_func( v, vstep, avg->data.ptr, avg->step, in cvCalcCovarMatrix()