Searched refs:s_step (Results 1 – 6 of 6) sorted by relevance
/external/opencv3/modules/ml/src/ |
D | gbt.cpp | 366 int s_step = (sample_idx->cols > sample_idx->rows) ? 1 370 int idx = *(sample_data + subsample_data[j]*s_step); 441 int s_step = (sample_idx->cols > sample_idx->rows) ? 1 443 int idx = *(sample_data + subsample_data[i]*s_step); 452 int s_step = (sample_idx->cols > sample_idx->rows) ? 1 454 int idx = *(sample_data + subsample_data[i]*s_step); 463 int s_step = (sample_idx->cols > sample_idx->rows) ? 1 469 int idx = *(sample_data + subsample_data[i]*s_step); 478 int idx = *(sample_data + subsample_data[i]*s_step); 492 int s_step = (sample_idx->cols > sample_idx->rows) ? 1 [all …]
|
/external/opencv/otherlibs/highgui/ |
D | utils.cpp | 621 int s_step = src->step, d_step = dst->step; in cvConvertImage() local 629 s_step = d_step = CV_STUB_STEP; in cvConvertImage() 635 icvCvt_Gray2BGR_8u_C1C3R( s, s_step, d, d_step, size ); in cvConvertImage() 638 icvCvt_BGR2Gray_8u_C3C1R( s, s_step, d, d_step, size, swap_rb ); in cvConvertImage() 642 icvCvt_RGB2BGR_8u_C3R( s, s_step, d, d_step, size ); in cvConvertImage() 645 icvCvt_BGRA2Gray_8u_C4C1R( s, s_step, d, d_step, size, swap_rb ); in cvConvertImage() 648 icvCvt_BGRA2BGR_8u_C4C3R( s, s_step, d, d_step, size, swap_rb ); in cvConvertImage()
|
/external/opencv3/modules/imgcodecs/src/ |
D | utils.cpp | 642 int s_step = src->step, d_step = dst->step; in cvConvertImage() local 650 s_step = d_step = /*CV_STUB_STEP*/ (1 << 30); in cvConvertImage() 656 icvCvt_Gray2BGR_8u_C1C3R( s, s_step, d, d_step, size ); in cvConvertImage() 659 icvCvt_BGR2Gray_8u_C3C1R( s, s_step, d, d_step, size, swap_rb ); in cvConvertImage() 663 icvCvt_RGB2BGR_8u_C3R( s, s_step, d, d_step, size ); in cvConvertImage() 666 icvCvt_BGRA2Gray_8u_C4C1R( s, s_step, d, d_step, size, swap_rb ); in cvConvertImage() 669 icvCvt_BGRA2BGR_8u_C4C3R( s, s_step, d, d_step, size, swap_rb ); in cvConvertImage()
|
/external/opencv/ml/src/ |
D | mlestimate.cpp | 456 int s_step; 466 s_step = sampleIdx->rows == 1 ? 486 samples_selected += s_data[i * s_step] != 0; 512 if (s_data[i * s_step]) 525 res_s_data[i] = s_data[i * s_step];
|
D | ml_inner_functions.cpp | 850 int i, j, var_count, sample_count, s_step, v_step; in cvGetTrainSamples() local 874 s_step = train_data->step / sizeof(samples[0][0]); in cvGetTrainSamples() 882 samples[i] = (float*)(data + (s_idx ? s_idx[i] : i)*s_step); in cvGetTrainSamples() 888 CV_SWAP( s_step, v_step, i ); in cvGetTrainSamples() 893 const float* src = data + (s_idx ? s_idx[i] : i)*s_step; in cvGetTrainSamples()
|
/external/opencv3/apps/traincascade/ |
D | old_ml_inner_functions.cpp | 780 int i, j, var_count, sample_count, s_step, v_step; in cvGetTrainSamples() local 804 s_step = train_data->step / sizeof(samples[0][0]); in cvGetTrainSamples() 812 samples[i] = (float*)(data + (s_idx ? s_idx[i] : i)*s_step); in cvGetTrainSamples() 818 CV_SWAP( s_step, v_step, i ); in cvGetTrainSamples() 823 const float* src = data + (s_idx ? s_idx[i] : i)*s_step; in cvGetTrainSamples()
|