/hardware/bsp/intel/peripheral/libupm/examples/python/ |
mic.py | 41 thresh = myMic.findThreshold(threshContext, 30, buffer, len) variable 43 if(thresh): 44 print "Threshold is ", thresh
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
mic.cxx | 65 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 67 if (thresh) {
|
mq2.cxx | 65 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 67 if (thresh) {
|
mq3.cxx | 65 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 67 if (thresh) {
|
mq4.cxx | 67 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 69 if (thresh) {
|
mq5.cxx | 60 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 62 if (thresh) {
|
mq6.cxx | 67 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 69 if (thresh) {
|
mq7.cxx | 67 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 69 if (thresh) {
|
mq8.cxx | 67 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 69 if (thresh) {
|
mq9.cxx | 60 int thresh = sensor->findThreshold (&ctx, 30, buffer, len); local 62 if (thresh) {
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
MicrophoneSample.java | 55 int thresh = sensor.findThreshold(ctx, 30, buffer); local 57 if (thresh != 0) {
|
MQ2Sample.java | 54 int thresh = sensor.findThreshold(ctx, 30, buffer); local 56 if (thresh != 0) {
|
MQ5Sample.java | 53 int thresh = sensor.findThreshold(ctx, 30, buffer); local 55 if (thresh != 0) {
|
/external/aac/libAACenc/src/ |
grp_data.cpp | 181 FIXP_DBL thresh = sfbThreshold->Short[wnd][sfb]; local 184 thresh = nrgAddSaturate(thresh, sfbThreshold->Short[wnd+j][sfb]); 186 sfbThreshold->Long[i++] = thresh;
|
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/ |
findContours_demo.cpp | 18 int thresh = 100; variable 47 createTrackbar( " Canny thresh:", "Source", &thresh, max_thresh, thresh_callback ); 64 Canny( src_gray, canny_output, thresh, thresh*2, 3 );
|
generalContours_demo1.cpp | 18 int thresh = 100; variable 42 createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback ); 59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
|
generalContours_demo2.cpp | 18 int thresh = 100; variable 42 createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback ); 59 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
|
hull_demo.cpp | 18 int thresh = 100; variable 42 createTrackbar( " Threshold:", "Source", &thresh, max_thresh, thresh_callback ); 60 threshold( src_gray, threshold_output, thresh, 255, THRESH_BINARY );
|
moments_demo.cpp | 18 int thresh = 100; variable 42 createTrackbar( " Canny thresh:", "Source", &thresh, max_thresh, thresh_callback ); 59 Canny( src_gray, canny_output, thresh, thresh*2, 3 );
|
/external/opencv3/samples/cpp/tutorial_code/TrackingMotion/ |
cornerHarris_Demo.cpp | 19 int thresh = 200; variable 39 createTrackbar( "Threshold: ", source_window, &thresh, max_thresh, cornerHarris_demo ); 74 if( (int) dst_norm.at<float>(j,i) > thresh )
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
grp_data.c | 110 Word32 thresh = sfbThreshold->sfbShort[wnd][sfb]; local 112 thresh = L_add(thresh, sfbThreshold->sfbShort[wnd+j][sfb]); 114 sfbThreshold->sfbLong[i] = thresh;
|
/external/opencv3/modules/calib3d/test/ |
test_decompose_projection.cpp | 113 const double thresh = 1e-6; local 114 if ( norm(origK, K, cv::NORM_INF) > thresh ) 120 if ( norm(origR, R, cv::NORM_INF) > thresh ) 126 if ( norm(origT, t, cv::NORM_INF) > thresh )
|
/external/opencv3/modules/imgproc/perf/ |
perf_threshold.cpp | 30 double thresh = theRNG().uniform(1, 254); local 36 TEST_CYCLE_MULTIRUN(runs) threshold(src, dst, thresh, maxval, threshType);
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
motion_core.hpp | 76 float thresh; //!< max error to classify as inlier member in struct:cv::videostab::RansacParams 80 RansacParams() : size(0), thresh(0), eps(0), prob(0) {} 83 @param thresh Maximum re-projection error value to classify as inlier. 87 RansacParams(int size, float thresh, float eps, float prob); 122 : size(_size), thresh(_thresh), eps(_eps), prob(_prob) {}
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_pivotL.h | 40 * (1) Compute thresh = u * max_(i>=j) abs(A_ij); 41 * (2) IF user specifies pivot row k and abs(A_kj) >= thresh THEN 43 * ELSE IF abs(A_jj) >= thresh THEN 96 RealScalar thresh = diagpivotthresh * pivmax; local 107 if (rtemp != 0.0 && rtemp >= thresh) pivptr = diag;
|