Home
last modified time | relevance | path

Searched refs:threshold (Results 1 - 25 of 511) sorted by relevance

12345678910>>...21

/third_party/unity/src/
H A Dunity.h169 #define TEST_ASSERT_NOT_EQUAL_INT(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT((threshold), (actual), __LINE__, NULL)
170 #define TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT8((threshold), (actual), __LINE__, NULL)
171 #define TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT16((threshold), (actual), __LINE__, NULL)
172 #define TEST_ASSERT_NOT_EQUAL_INT32(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT32((threshold), (actual), __LINE__, NULL)
173 #define TEST_ASSERT_NOT_EQUAL_INT64(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT64((threshold), (actua
[all...]
H A Dunity_internals.h602 void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold,
688 void UnityAssertGreaterOrLessFloat(const UNITY_FLOAT threshold,
721 void UnityAssertGreaterOrLessDouble(const UNITY_DOUBLE threshold,
897 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
898 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
899 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
900 #define UNITY_TEST_ASSERT_NOT_EQUAL_INT32(threshold, actua
[all...]
/third_party/cJSON/tests/unity/src/
H A Dunity.h152 #define TEST_ASSERT_GREATER_THAN(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, NULL)
153 #define TEST_ASSERT_GREATER_THAN_INT(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, NULL)
154 #define TEST_ASSERT_GREATER_THAN_INT8(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT8((threshold), (actual), __LINE__, NULL)
155 #define TEST_ASSERT_GREATER_THAN_INT16(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT16((threshold), (actual), __LINE__, NULL)
156 #define TEST_ASSERT_GREATER_THAN_INT32(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT32((threshold), (actua
[all...]
H A Dunity_internals.h465 void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold,
669 #define UNITY_TEST_ASSERT_GREATER_THAN_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
670 #define UNITY_TEST_ASSERT_GREATER_THAN_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
671 #define UNITY_TEST_ASSERT_GREATER_THAN_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
672 #define UNITY_TEST_ASSERT_GREATER_THAN_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
673 #define UNITY_TEST_ASSERT_GREATER_THAN_UINT(threshold, actua
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_smartblur.c48 int threshold; member
70 { "luma_threshold", "set luma threshold", OFFSET(luma.threshold), AV_OPT_TYPE_INT, {.i64=0}, THRESHOLD_MIN, THRESHOLD_MAX, .flags=FLAGS },
71 { "lt", "set luma threshold", OFFSET(luma.threshold), AV_OPT_TYPE_INT, {.i64=0}, THRESHOLD_MIN, THRESHOLD_MAX, .flags=FLAGS },
77 { "chroma_threshold", "set chroma threshold", OFFSET(chroma.threshold), AV_OPT_TYPE_INT, {.i64=THRESHOLD_MIN-1}, THRESHOLD_MIN-1, THRESHOLD_MAX, .flags=FLAGS },
78 { "ct", "set chroma threshold", OFFSET(chroma.threshold), AV_OPT_TYPE_INT, {.i64=THRESHOLD_MIN-1}, THRESHOLD_MIN-1, THRESHOLD_MAX, .flags=FLAGS },
94 if (s->chroma.threshold < THRESHOLD_MI in init()
169 blur(uint8_t *dst, const int dst_linesize, const uint8_t *src, const int src_linesize, const int w, const int h, const int threshold, struct SwsContext *filter_context) blur() argument
[all...]
H A Dvf_neighbor.c42 int threshold[4]; member
50 int threshold, const uint8_t *coordinates[], int coord,
77 int threshold, const uint8_t *coordinates[], int coord, in erosion()
84 int limit = FFMAX(min - threshold, 0); in erosion()
98 int threshold, const uint8_t *coordinates[], int coord, in erosion16()
106 int limit = FFMAX(min - threshold, 0); in erosion16()
120 int threshold, const uint8_t *coordinates[], int coord, in dilation()
127 int limit = FFMIN(max + threshold, 255); in dilation()
141 int threshold, const uint8_t *coordinates[], int coord, in dilation16()
149 int limit = FFMIN(max + threshold, max in dilation16()
76 erosion(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) erosion() argument
97 erosion16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) erosion16() argument
119 dilation(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) dilation() argument
140 dilation16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) dilation16() argument
162 deflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) deflate() argument
178 deflate16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) deflate16() argument
195 inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) inflate() argument
211 inflate16(uint8_t *dstp, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc) inflate16() argument
267 const int threshold = s->threshold[plane]; filter_slice() local
[all...]
H A Dvf_threshold.c23 * threshold video filter
34 #include "threshold.h"
45 AVFILTER_DEFINE_CLASS(threshold); variable
71 AVFrame *threshold; member
83 AVFrame *threshold = td->threshold; in filter_slice() local
101 s->threshold(in->data[p] + slice_start * in->linesize[p], in filter_slice()
102 threshold->data[p] + slice_start * threshold->linesize[p], in filter_slice()
106 in->linesize[p], threshold in filter_slice()
120 AVFrame *out, *in, *threshold, *min, *max; process_frame() local
181 AVFilterLink *threshold = ctx->inputs[1]; config_output() local
[all...]
H A Dvf_threshold_init.h29 #include "threshold.h"
31 static void threshold8(const uint8_t *in, const uint8_t *threshold, in threshold8() argument
41 out[x] = in[x] < threshold[x] ? min[x] : max[x]; in threshold8()
44 threshold += tlinesize; in threshold8()
60 const uint16_t *threshold = (const uint16_t *)tthreshold;
67 out[x] = in[x] < threshold[x] ? min[x] : max[x];
70 threshold += tlinesize / 2;
80 s->threshold = threshold8;
83 s->threshold = threshold16;
H A Dvf_vaguedenoiser.c38 float threshold; member
63 const int stride, const float threshold,
70 { "threshold", "set filtering strength", OFFSET(threshold), AV_OPT_TYPE_FLOAT, {.dbl=2.}, 0,DBL_MAX, FLAGS },
78 { "type", "set threshold type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0 }, 0, 1, FLAGS, "type" },
157 s->threshold *= 1 << (s->depth - 8); in config_input()
332 const int stride, const float threshold, in hard_thresholding()
340 if (FFABS(block[x]) <= threshold) in hard_thresholding()
348 const float threshold, const float percent) in soft_thresholding()
351 const float shift = threshold * 0.0 in soft_thresholding()
331 hard_thresholding(float *block, const int width, const int height, const int stride, const float threshold, const float percent) hard_thresholding() argument
347 soft_thresholding(float *block, const int width, const int height, const int stride, const float threshold, const float percent) soft_thresholding() argument
366 qian_thresholding(float *block, const int width, const int height, const int stride, const float threshold, const float percent) qian_thresholding() argument
389 bayes_threshold(float *block, const int width, const int height, const int stride, const float threshold) bayes_threshold() argument
473 float threshold; filter() local
[all...]
H A Dvf_neighbor_opencl.c45 cl_float threshold[4]; member
97 ctx->threshold[i] /= 255.0; in neighbor_opencl_make_filter_params()
166 if (ctx->threshold[p] == 0) { in neighbor_opencl_filter_frame()
178 CL_SET_KERNEL_ARG(ctx->kernel, 2, cl_float, &ctx->threshold[p]); in neighbor_opencl_filter_frame()
266 { "threshold0", "set threshold for 1st plane", OFFSET(threshold[0]), AV_OPT_TYPE_FLOAT, {.dbl=65535.0}, 0.0, 65535, FLAGS },
267 { "threshold1", "set threshold for 2nd plane", OFFSET(threshold[1]), AV_OPT_TYPE_FLOAT, {.dbl=65535.0}, 0.0, 65535, FLAGS },
268 { "threshold2", "set threshold for 3rd plane", OFFSET(threshold[
[all...]
H A Dvf_maskedthreshold.c33 int threshold; member
42 void (*maskedthreshold)(const uint8_t *src, const uint8_t *ref, uint8_t *dst, int threshold, int w);
53 { "threshold", "set threshold", OFFSET(threshold), AV_OPT_TYPE_INT, {.i64=1}, 0, UINT16_MAX, FLAGS },
80 static void threshold8(const uint8_t *src, const uint8_t *ref, uint8_t *dst, int threshold, int w) in threshold8() argument
83 dst[x] = FFABS(src[x] - ref[x]) <= threshold ? src[x] : ref[x]; in threshold8()
86 static void threshold16(const uint8_t *ssrc, const uint8_t *rref, uint8_t *ddst, int threshold, int w) in threshold16() argument
93 dst[x] = FFABS(src[x] - ref[x]) <= threshold ? src[x] : ref[x]; in threshold16()
128 const int threshold in threshold_slice() local
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/
H A Dsigstore_verification.js140 return { threshold: 0, performOnlineVerification: false, disable: false };
145 threshold: isSet(object.threshold) ? Number(object.threshold) : 0,
154 message.threshold !== undefined && (obj.threshold = Math.round(message.threshold));
162 return { threshold: 0, disable: false };
167 threshold: isSet(object.threshold)
[all...]
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/
H A Drole.js26 const { keyIDs, threshold, unrecognizedFields } = options;
30 if (threshold < 1) {
31 throw new error_1.ValueError('threshold must be at least 1');
34 this.threshold = threshold;
41 return (this.threshold === other.threshold &&
48 threshold: this.threshold,
53 const { keyids, threshold,
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuImageCompare.hpp47 bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode logMode);
48 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode logMode);
51 bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode logMode);
53 bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode);
54 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
55 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& ignorekey, const Vec4& threshold, CompareLogMode logMode);
56 bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Vec4& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode logMode);
57 bool intThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode logMode, bool use64Bits = false);
58 bool intThresholdPositionDeviationCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, CompareLogMode logMode);
59 bool intThresholdPositionDeviationErrorThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, cons
[all...]
H A DtcuBilinearImageCompare.cpp114 bool comparePixelRGBA8 (const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, int x, int y)
127 if (compareThreshold(resPix, readRGBA8(reference, x1, y1), threshold) ||
128 compareThreshold(resPix, readRGBA8(reference, x0, y1), threshold) ||
129 compareThreshold(resPix, readRGBA8(reference, x2, y1), threshold) ||
130 compareThreshold(resPix, readRGBA8(reference, x0, y0), threshold) ||
131 compareThreshold(resPix, readRGBA8(reference, x1, y0), threshold) ||
132 compareThreshold(resPix, readRGBA8(reference, x2, y0), threshold) ||
133 compareThreshold(resPix, readRGBA8(reference, x0, y2), threshold) ||
134 compareThreshold(resPix, readRGBA8(reference, x1, y2), threshold) ||
135 compareThreshold(resPix, readRGBA8(reference, x2, y2), threshold))
[all...]
/third_party/backends/backend/
H A Dplustek-usbmap.c123 int i, threshold; in usb_MapDownload() local
155 threshold = (int)((double)scanning->sParam.brightness * in usb_MapDownload()
157 threshold = _MAP_SIZE - threshold; in usb_MapDownload()
158 if(threshold < 0) in usb_MapDownload()
159 threshold = 0; in usb_MapDownload()
160 if(threshold > (int)_MAP_SIZE) in usb_MapDownload()
161 threshold = _MAP_SIZE; in usb_MapDownload()
164 threshold, scanning->sParam.brightness ); in usb_MapDownload()
166 for(i = 0; i < threshold; in usb_MapDownload()
[all...]
/third_party/ffmpeg/tests/checkasm/
H A Dvf_threshold.c38 LOCAL_ALIGNED_32(uint8_t, threshold, [WIDTH_PADDED]); in check_threshold()
46 declare_func(void, const uint8_t *in, const uint8_t *threshold, in check_threshold()
57 memset(threshold, 0, WIDTH_PADDED); in check_threshold()
63 randomize_buffers(threshold, WIDTH); in check_threshold()
70 if (check_func(s.threshold, "threshold%d", depth)) { in check_threshold()
71 call_ref(in, threshold, min, max, out_ref, line_size, line_size, line_size, line_size, line_size, w, 1); in check_threshold()
72 call_new(in, threshold, min, max, out_new, line_size, line_size, line_size, line_size, line_size, w, 1); in check_threshold()
75 bench_new(in, threshold, min, max, out_new, line_size, line_size, line_size, line_size, line_size, w, 1); in check_threshold()
/third_party/libinput/src/
H A Dfilter-low-dpi.c56 double threshold; /* units/us */ member
66 * The threshold/max accel depends on the DPI, the smaller the DPI the
83 double threshold = accel_filter->threshold; /* units/us */ in pointer_accel_profile_linear_low_dpi() local
89 the threshold so it kicks in earlier */ in pointer_accel_profile_linear_low_dpi()
91 threshold *= dpi_factor; in pointer_accel_profile_linear_low_dpi()
96 else if (speed_in < threshold) in pointer_accel_profile_linear_low_dpi()
99 factor = incline * v_us2ms(speed_in - threshold) + 1; in pointer_accel_profile_linear_low_dpi()
194 accel_filter->threshold = DEFAULT_THRESHOLD - in accelerator_set_speed()
196 if (accel_filter->threshold < MINIMUM_THRESHOL in accelerator_set_speed()
[all...]
H A Dfilter-mouse.c56 double threshold; /* 1000dpi units/us */ member
181 accel_filter->threshold = DEFAULT_THRESHOLD - in accelerator_set_speed()
183 if (accel_filter->threshold < MINIMUM_THRESHOLD) in accelerator_set_speed()
184 accel_filter->threshold = MINIMUM_THRESHOLD; in accelerator_set_speed()
205 const double threshold = accel_filter->threshold; /* 1000dpi units/us */ in pointer_accel_profile_linear() local
238 * 0.07u/ms as threshold is a result of trial-and-error and in pointer_accel_profile_linear()
245 /* up to the threshold, we keep factor 1, i.e. 1:1 movement */ in pointer_accel_profile_linear()
246 } else if (speed_in < threshold) { in pointer_accel_profile_linear()
250 /* Acceleration function above the threshold in pointer_accel_profile_linear()
[all...]
H A Dfilter-touchpad.c53 double threshold; /* mm/s */ member
197 const double threshold = accel_filter->threshold; /* mm/s */ in touchpad_accel_profile_linear() local
226 for speeds up to the lower threshold, we decelerate, down to 30% in touchpad_accel_profile_linear()
243 * The minimum threshold is a result of trial-and-error and in touchpad_accel_profile_linear()
251 /* up to the threshold, we keep factor 1, i.e. 1:1 movement */ in touchpad_accel_profile_linear()
252 } else if (speed_in < threshold) { in touchpad_accel_profile_linear()
256 /* Acceleration function above the threshold is a curve up in touchpad_accel_profile_linear()
257 to four times the threshold, because why not. in touchpad_accel_profile_linear()
267 const double upper_threshold = threshold * 4. in touchpad_accel_profile_linear()
[all...]
H A Dfilter-touchpad-x230.c70 double threshold; /* units/us */ member
232 accel_filter->threshold = DEFAULT_THRESHOLD - in accelerator_set_speed_x230()
234 if (accel_filter->threshold < MINIMUM_THRESHOLD) in accelerator_set_speed_x230()
235 accel_filter->threshold = MINIMUM_THRESHOLD; in accelerator_set_speed_x230()
266 const double threshold = accel_filter->threshold / in touchpad_lenovo_x230_accel_profile() local
279 f2 = 1 + (v_us2ms(speed_in) - v_us2ms(threshold)) * incline; in touchpad_lenovo_x230_accel_profile()
312 filter->threshold = X230_THRESHOLD; in create_pointer_accelerator_filter_lenovo_x230()
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_threshold_init.c24 #include "libavfilter/threshold.h"
27 void ff_threshold##depth##_##opt(const uint8_t *in, const uint8_t *threshold,\
46 s->threshold = ff_threshold8_sse4; in ff_threshold_init_x86()
49 s->threshold = ff_threshold8_avx2; in ff_threshold_init_x86()
53 s->threshold = ff_threshold16_sse4; in ff_threshold_init_x86()
56 s->threshold = ff_threshold16_avx2; in ff_threshold_init_x86()
/third_party/python/Lib/distutils/
H A Dlog.py16 def __init__(self, threshold=WARN):
17 self.threshold = threshold
23 if level >= self.threshold:
66 # return the old threshold for use from tests
67 old = _global_log.threshold
68 _global_log.threshold = level
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineSamplerBorderSwizzleTests.cpp468 tcu::Vec4 threshold (0.0f); in comparePixelToColorClearValue()
476 threshold = tcu::Vec4 (bitDepth[0] > 0 ? 1.0f / ((float)(1 << (bitDepth[0] - modifier)) - 1.0f) : 0.0f, in comparePixelToColorClearValue()
484 for (int i = 0; i < decltype(threshold)::SIZE; ++i) in comparePixelToColorClearValue()
485 threshold[i] *= 2.0f; in comparePixelToColorClearValue()
490 threshold = applySwizzle(threshold, params.componentMapping); in comparePixelToColorClearValue()
493 threshold = applyGather(threshold, *params.componentGather); in comparePixelToColorClearValue()
500 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold), channelMask), channelMask)); in comparePixelToColorClearValue()
505 s << "Ref:" << refColor << " Threshold:" << threshold << " Colo in comparePixelToColorClearValue()
[all...]
/third_party/backends/sanei/
H A Dsanei_ir.c22 * The threshold yen, otsu and max_entropy routines have been
162 int threshold, i; in sanei_ir_threshold_yen() local
184 /* Find the threshold that maximizes the criterion */ in sanei_ir_threshold_yen()
185 threshold = INT_MIN; in sanei_ir_threshold_yen()
195 threshold = i; in sanei_ir_threshold_yen()
199 if (threshold == INT_MIN) in sanei_ir_threshold_yen()
201 DBG (5, "sanei_ir_threshold_yen: no threshold found\n"); in sanei_ir_threshold_yen()
210 *thresh = threshold * i + i / 2; in sanei_ir_threshold_yen()
213 *thresh = threshold; in sanei_ir_threshold_yen()
214 DBG (10, "sanei_ir_threshold_yen: threshold in sanei_ir_threshold_yen()
239 int threshold, i; sanei_ir_threshold_otsu() local
318 int threshold; sanei_ir_threshold_maxentropy() local
778 int threshold, itop; sanei_ir_filter_madmean() local
856 sanei_ir_add_threshold(const SANE_Parameters * params, const SANE_Uint *in_img, SANE_Uint * mask_img, int threshold) sanei_ir_add_threshold() argument
[all...]

Completed in 17 milliseconds

12345678910>>...21