Home
last modified time | relevance | path

Searched refs:high_thresh (Results 1 – 25 of 41) sorted by relevance

12

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/test/
H A Dtest_canny.cpp82 double high_thresh = 100.0; in CUDA_TEST_P() local
84 …nnyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size… in CUDA_TEST_P()
90 cv::Canny(img, edges_gold, low_thresh, high_thresh, apperture_size, useL2gradient); in CUDA_TEST_P()
99 …: d_img(d_img_), edges(edges_), low_thresh(low_thresh_), high_thresh(high_thresh_), apperture_size… in CannyAsyncParallelLoopBody()
105 …nnyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size… in operator ()()
114 double high_thresh; member in opencv_test::__anon27504d200111::CannyAsyncParallelLoopBody
135 double high_thresh = 100.0; in CUDA_TEST_P() local
138 …nnyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size… in CUDA_TEST_P()
144 …NUM_STREAMS), CannyAsyncParallelLoopBody(d_img_roi, edges, low_thresh, high_thresh, apperture_size… in CUDA_TEST_P()
/dports/misc/vxl/vxl-3.3.2/core/vil1/
H A Dvil1_clamp_image.cxx24 T high_thresh = T(high); in vil1_clamp_image() local
27 VIL1_CLAMP_IMAGE_THRESHOLD(buf[pos], low_thresh, high_thresh); in vil1_clamp_image()
47 …T high_thresh = T(high); …
50 …VIL1_CLAMP_IMAGE_THRESHOLD(buf[pos].r, low_thresh, high_thresh); …
51 …VIL1_CLAMP_IMAGE_THRESHOLD(buf[pos].g, low_thresh, high_thresh); …
52 …VIL1_CLAMP_IMAGE_THRESHOLD(buf[pos].b, low_thresh, high_thresh); …
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dcanny.cpp161 high_thresh = high_thresh / 16.0f; in ocl_Canny()
167 high_thresh = std::min(32767.0f, high_thresh); in ocl_Canny()
171 if (high_thresh > 0) in ocl_Canny()
172 high_thresh *= high_thresh; in ocl_Canny()
851 high_thresh = high_thresh / 16.0; in Canny()
854 if (low_thresh > high_thresh) in Canny()
877 cvFloor(high_thresh), in Canny()
886 high_thresh = std::min(32767.0, high_thresh); in Canny()
889 if (high_thresh > 0) high_thresh *= high_thresh; in Canny()
962 high_thresh = std::min(32767.0, high_thresh); in Canny()
[all …]
/dports/graphics/opencv/opencv-4.5.3/3rdparty/carotene/src/
H A Dcanny.cpp270 if (low_thresh > high_thresh) in prepareThresh()
274 high = (s32)high_thresh; in prepareThresh()
276 high -= (high > high_thresh); in prepareThresh()
290 if (low_thresh > high_thresh) in prepareThresh()
293 if (high_thresh > 0) high_thresh *= high_thresh; in prepareThresh()
296 high = (s32)high_thresh; in prepareThresh()
298 high -= (high > high_thresh); in prepareThresh()
683 (void)high_thresh; in Canny3x3L1()
710 (void)high_thresh; in Canny3x3L2()
740 (void)high_thresh; in Canny3x3L1()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/test/ocl/
H A Dtest_canny.cpp101 const double low_thresh = 50.0, high_thresh = 100.0; in OCL_TEST_P() local
104 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, aperture_size, useL2gradient)); in OCL_TEST_P()
105 OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, aperture_size, useL2gradient)); in OCL_TEST_P()
115 const double low_thresh = 50.0, high_thresh = 100.0; in OCL_TEST_P() local
118 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, aperture_size, useL2gradient)); in OCL_TEST_P()
123 cv::Canny(dx, dy, udst_roi, low_thresh, high_thresh, useL2gradient); in OCL_TEST_P()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/src/
H A Dcanny.cpp59 …PtrStepSzi dy, PtrStepSzf mag, PtrStepSzi map, float low_thresh, float high_thresh, cudaStream_t s…
73 CannyImpl(double low_thresh, double high_thresh, int apperture_size, bool L2gradient) : in CannyImpl() argument
74 …low_thresh_(low_thresh), high_thresh_(high_thresh), apperture_size_(apperture_size), L2gradient_(L… in CannyImpl()
86 void setHighThreshold(double high_thresh) { high_thresh_ = high_thresh; } in setHighThreshold() argument
240 Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double low_thresh, double high_thresh, int… in createCannyEdgeDetector() argument
242 return makePtr<CannyImpl>(low_thresh, high_thresh, apperture_size, L2gradient); in createCannyEdgeDetector()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/perf/
H A Dperf_canny.cpp65 const double high_thresh = 100.0; variable
72 …nnyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_thresh, apperture_size…
82 TEST_CYCLE() cv::Canny(image, dst, low_thresh, high_thresh, apperture_size, useL2gradient);
/dports/net-mgmt/flowviewer/FlowViewer_4.5/tools/
H A Dperformance_check15 $high_thresh = 120;
29 if (($seconds > $low_thresh) && ($seconds < $high_thresh)) { $norm_count++; }
30 if ($seconds >= $high_thresh) { $high_count++; if ($print_highs) { print $_; } }
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaimgproc/src/cuda/
H A Dcanny.cu233 …st PtrStepSzi dx, const PtrStepi dy, PtrStepi map, const float low_thresh, const float high_thresh) in calcMapKernel() argument
268 edge_type = 1 + (int)(m > high_thresh); in calcMapKernel()
273 edge_type = 1 + (int)(m > high_thresh); in calcMapKernel()
278 edge_type = 1 + (int)(m > high_thresh); in calcMapKernel()
285 …, const PtrStepi dy, PtrStepi map, const float low_thresh, const float high_thresh, cudaTextureObj… in calcMapKernel() argument
320 edge_type = 1 + (int)(m > high_thresh); in calcMapKernel()
325 edge_type = 1 + (int)(m > high_thresh); in calcMapKernel()
330 edge_type = 1 + (int)(m > high_thresh); in calcMapKernel()
337 …PtrStepSzi dy, PtrStepSzf mag, PtrStepSzi map, float low_thresh, float high_thresh, cudaStream_t s… in calcMap() argument
362 calcMapKernel<<<grid, block, 0, stream>>>(dx, dy, map, low_thresh, high_thresh, tex); in calcMap()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/include/net/
H A Dinet_frag.h11 long high_thresh; member
120 fqdir->high_thresh = 0; /* prevent creation of new frags */ in fqdir_pre_exit()
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/net/
H A Dinet_frag.h11 long high_thresh; member
120 fqdir->high_thresh = 0; /* prevent creation of new frags */ in fqdir_pre_exit()
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/net/
H A Dinet_frag.h11 long high_thresh; member
120 fqdir->high_thresh = 0; /* prevent creation of new frags */ in fqdir_pre_exit()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/iio/adc/
H A Dti-ads1015.c231 int high_thresh; member
559 data->thresh_data[chan->address].high_thresh : in ads1015_read_event()
604 data->thresh_data[chan->address].high_thresh = val; in ads1015_write_event()
659 int high_thresh = data->thresh_data[chan->address].high_thresh; in ads1015_enable_event_config() local
674 high_thresh - 1); in ads1015_enable_event_config()
682 high_thresh << chan->scan_type.shift); in ads1015_enable_event_config()
983 data->thresh_data[i].high_thresh = (1 << (realbits - 1)) - 1; in ads1015_probe()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/iio/adc/
H A Dti-ads1015.c231 int high_thresh; member
559 data->thresh_data[chan->address].high_thresh : in ads1015_read_event()
604 data->thresh_data[chan->address].high_thresh = val; in ads1015_write_event()
659 int high_thresh = data->thresh_data[chan->address].high_thresh; in ads1015_enable_event_config() local
674 high_thresh - 1); in ads1015_enable_event_config()
682 high_thresh << chan->scan_type.shift); in ads1015_enable_event_config()
983 data->thresh_data[i].high_thresh = (1 << (realbits - 1)) - 1; in ads1015_probe()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/iio/adc/
H A Dti-ads1015.c231 int high_thresh; member
559 data->thresh_data[chan->address].high_thresh : in ads1015_read_event()
604 data->thresh_data[chan->address].high_thresh = val; in ads1015_write_event()
659 int high_thresh = data->thresh_data[chan->address].high_thresh; in ads1015_enable_event_config() local
674 high_thresh - 1); in ads1015_enable_event_config()
682 high_thresh << chan->scan_type.shift); in ads1015_enable_event_config()
983 data->thresh_data[i].high_thresh = (1 << (realbits - 1)) - 1; in ads1015_probe()
/dports/multimedia/libv4l/linux-5.13-rc2/net/ipv6/netfilter/
H A Dnf_conntrack_reasm.c86 table[1].extra2 = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
87 table[2].data = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
89 table[2].extra2 = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
502 nf_frag->fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH; in nf_ct_net_init()
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/ipv6/netfilter/
H A Dnf_conntrack_reasm.c86 table[1].extra2 = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
87 table[2].data = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
89 table[2].extra2 = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
502 nf_frag->fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH; in nf_ct_net_init()
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/ipv6/netfilter/
H A Dnf_conntrack_reasm.c86 table[1].extra2 = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
87 table[2].data = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
89 table[2].extra2 = &nf_frag->fqdir->high_thresh; in nf_ct_frag6_sysctl_register()
502 nf_frag->fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH; in nf_ct_net_init()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/iio/light/
H A Dtcs3472.c62 u16 high_thresh; member
233 data->high_thresh : data->low_thresh; in tcs3472_read_event()
283 data->high_thresh = val; in tcs3472_write_event()
492 data->high_thresh = ret; in tcs3472_probe()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/iio/light/
H A Dtcs3472.c62 u16 high_thresh; member
233 data->high_thresh : data->low_thresh; in tcs3472_read_event()
283 data->high_thresh = val; in tcs3472_write_event()
492 data->high_thresh = ret; in tcs3472_probe()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/iio/light/
H A Dtcs3472.c62 u16 high_thresh; member
233 data->high_thresh : data->low_thresh; in tcs3472_read_event()
283 data->high_thresh = val; in tcs3472_write_event()
492 data->high_thresh = ret; in tcs3472_probe()
/dports/science/madness/madness-ebb3fd7/src/apps/chem/
H A Dcis_example_input19 high_thresh 1.e-5
/dports/graphics/opencv/opencv-4.5.3/modules/calib3d/src/
H A Dquadsubpix.cpp118 static int segment_hist_max(const Mat& hist, int& low_thresh, int& high_thresh) in segment_hist_max() argument
157 high_thresh = cvRound(max_start_x + 0.75*(max_end_x - max_start_x)); in segment_hist_max()
/dports/multimedia/libv4l/linux-5.13-rc2/net/ieee802154/6lowpan/
H A Dreassembly.c375 table[0].data = &ieee802154_lowpan->fqdir->high_thresh; in lowpan_frags_ns_sysctl_register()
378 table[1].extra2 = &ieee802154_lowpan->fqdir->high_thresh; in lowpan_frags_ns_sysctl_register()
452 ieee802154_lowpan->fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH; in lowpan_frags_init_net()
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/ieee802154/6lowpan/
H A Dreassembly.c375 table[0].data = &ieee802154_lowpan->fqdir->high_thresh; in lowpan_frags_ns_sysctl_register()
378 table[1].extra2 = &ieee802154_lowpan->fqdir->high_thresh; in lowpan_frags_ns_sysctl_register()
452 ieee802154_lowpan->fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH; in lowpan_frags_init_net()

12