Home
last modified time | relevance | path

Searched refs:threshold2 (Results 1 – 13 of 13) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_pp7.c150 unsigned int threshold2 = threshold1 << 1; in hardthresh_c() local
152 if (((unsigned)(level + threshold1)) > threshold2) in hardthresh_c()
166 unsigned int threshold2 = threshold1 << 1; in mediumthresh_c() local
168 if (((unsigned)(level + threshold1)) > threshold2) { in mediumthresh_c()
169 if (((unsigned)(level + 2 * threshold1)) > 2 * threshold2) in mediumthresh_c()
190 unsigned int threshold2 = threshold1 << 1; in softthresh_c() local
192 if (((unsigned)(level + threshold1)) > threshold2) { in softthresh_c()
Dvf_spp.c138 unsigned threshold2 = threshold1 << 1; in hardthresh_c() local
145 if (((unsigned)(level + threshold1)) > threshold2) { in hardthresh_c()
159 unsigned threshold2 = threshold1 << 1; in softthresh_c() local
166 if (((unsigned)(level + threshold1)) > threshold2) { in softthresh_c()
/third_party/gstreamer/gstplugins_bad/ext/opencv/
Dgstedgedetect.cpp185 filter->threshold2 = 150; in gst_edge_detect_init()
206 filter->threshold2 = g_value_get_int (value); in gst_edge_detect_set_property()
231 g_value_set_int (value, filter->threshold2); in gst_edge_detect_get_property()
266 filter->threshold2, filter->aperture); in gst_edge_detect_transform()
Dgstedgedetect.h75 int threshold2; member
/third_party/flutter/skia/third_party/externals/libwebp/src/utils/
Dquant_levels_dec_utils.c168 const int threshold2 = (3 * threshold1) >> 2; in InitCorrectionLUT() local
169 const int max_threshold = threshold2 << DFIX; in InitCorrectionLUT()
170 const int delta = threshold1 - threshold2; in InitCorrectionLUT()
173 int c = (i <= threshold2) ? (i << DFIX) in InitCorrectionLUT()
/third_party/skia/third_party/externals/libwebp/src/utils/
Dquant_levels_dec_utils.c168 const int threshold2 = (3 * threshold1) >> 2; in InitCorrectionLUT() local
169 const int max_threshold = threshold2 << DFIX; in InitCorrectionLUT()
170 const int delta = threshold1 - threshold2; in InitCorrectionLUT()
173 int c = (i <= threshold2) ? (i << DFIX) in InitCorrectionLUT()
/third_party/skia/samplecode/
DSampleSimpleStroker.cpp274 const float threshold2 = halfMiterLength * halfMiterLength - radiusSquared; in join() local
277 const float maxLenSqd = std::max(threshold1, threshold2); in join()
/third_party/python/Doc/library/
Dgc.rst96 .. function:: set_threshold(threshold0[, threshold1[, threshold2]])
125 threshold1, threshold2)``.
/third_party/ffmpeg/libavcodec/
Ddnxhdenc.c124 unsigned int threshold1, threshold2; in dnxhd_10bit_dct_quantize_444() local
134 threshold2 = (threshold1 << 1); in dnxhd_10bit_dct_quantize_444()
140 if (((unsigned)(level + threshold1)) > threshold2) { in dnxhd_10bit_dct_quantize_444()
152 if (((unsigned)(level + threshold1)) > threshold2) { in dnxhd_10bit_dct_quantize_444()
Dmpegvideo_enc.c4018 unsigned int threshold1, threshold2; in dct_quantize_trellis_c() local
4093 threshold2= (threshold1<<1); in dct_quantize_trellis_c()
4099 if(((unsigned)(level+threshold1))>threshold2){ in dct_quantize_trellis_c()
4111 if(((unsigned)(level+threshold1))>threshold2){ in dct_quantize_trellis_c()
4705 unsigned int threshold1, threshold2; in ff_dct_quantize_c() local
4738 threshold2= (threshold1<<1); in ff_dct_quantize_c()
4743 if(((unsigned)(level+threshold1))>threshold2){ in ff_dct_quantize_c()
4756 if(((unsigned)(level+threshold1))>threshold2){ in ff_dct_quantize_c()
/third_party/mesa3d/src/amd/addrlib/src/r800/
Degbaddrlib.cpp1121 UINT_32 threshold2 = in ComputeSurfaceMipLevelTileMode() local
1137 (interleaveSize > threshold2)) in ComputeSurfaceMipLevelTileMode()
/third_party/ffmpeg/doc/
Dfilters.texi9719 @item threshold2
10055 @item threshold2
11275 @item threshold2
13538 @item threshold2
16349 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
16353 @item threshold2
22816 @item threshold2
22838 Apply erosion filter with threshold0 set to 30, threshold1 set 40, threshold2 set to 50 and coordin…
22924 @item threshold2
22946 Apply dilation filter with threshold0 set to 30, threshold1 set 40, threshold2 set to 50 and coordi…
/third_party/gstreamer/gstplugins_bad/
DChangeLog177533 …* Make it possible to set threshold2 at runtime * Implement pyramid segmentation element * Make ma…