HomeSort by relevance Sort by last modified time
    Searched refs:s_step (Results 1 - 3 of 3) sorted by null

  /external/opencv/otherlibs/highgui/
utils.cpp 621 int s_step = src->step, d_step = dst->step; local
629 s_step = d_step = CV_STUB_STEP;
635 icvCvt_Gray2BGR_8u_C1C3R( s, s_step, d, d_step, size );
638 icvCvt_BGR2Gray_8u_C3C1R( s, s_step, d, d_step, size, swap_rb );
642 icvCvt_RGB2BGR_8u_C3R( s, s_step, d, d_step, size );
645 icvCvt_BGRA2Gray_8u_C4C1R( s, s_step, d, d_step, size, swap_rb );
648 icvCvt_BGRA2BGR_8u_C4C3R( s, s_step, d, d_step, size, swap_rb );
  /external/opencv/ml/src/
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];
ml_inner_functions.cpp 850 int i, j, var_count, sample_count, s_step, v_step; local
874 s_step = train_data->step / sizeof(samples[0][0]);
882 samples[i] = (float*)(data + (s_idx ? s_idx[i] : i)*s_step);
888 CV_SWAP( s_step, v_step, i );
893 const float* src = data + (s_idx ? s_idx[i] : i)*s_step;
    [all...]

Completed in 92 milliseconds