Home
last modified time | relevance | path

Searched refs:thresholded (Results 1 – 25 of 149) sorted by relevance

123456

/dports/math/py-PyWavelets/pywt-1.2.0/pywt/
H A D_thresholding.py23 thresholded = (1 - value/magnitude)
24 thresholded.clip(min=0, max=None, out=thresholded)
25 thresholded = data * thresholded
28 return thresholded
41 thresholded = (1 - value**2/magnitude**2)
42 thresholded.clip(min=0, max=None, out=thresholded)
43 thresholded = data * thresholded
46 return thresholded
243 thresholded.clip(min=0, max=None, out=thresholded)
244 thresholded = data * thresholded
[all …]
/dports/audio/aubio/aubio-0.4.9/src/onset/
H A Dpeakpicker.c67 fvec_t *thresholded; member
92 fvec_t *thresholded = p->thresholded; in aubio_peakpicker_do() local
116 thresholded->data[0] = in aubio_peakpicker_do()
118 onset_peek->data[2] = thresholded->data[0]; in aubio_peakpicker_do()
131 return p->thresholded; in aubio_peakpicker_get_thresholded_input()
176 t->thresholded = new_fvec (1); in new_aubio_peakpicker()
196 del_fvec (p->thresholded); in del_aubio_peakpicker()
/dports/audio/py-aubio/aubio-0.4.9/src/onset/
H A Dpeakpicker.c67 fvec_t *thresholded; member
92 fvec_t *thresholded = p->thresholded; in aubio_peakpicker_do() local
116 thresholded->data[0] = in aubio_peakpicker_do()
118 onset_peek->data[2] = thresholded->data[0]; in aubio_peakpicker_do()
131 return p->thresholded; in aubio_peakpicker_get_thresholded_input()
176 t->thresholded = new_fvec (1); in new_aubio_peakpicker()
196 del_fvec (p->thresholded); in del_aubio_peakpicker()
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/imports/effectlib/shaders/
H A Dcombiner.frag6 vec3 thresholded = clamp(bloom_result.xyz, 0.0, channelThreshold) / channelThreshold;
7 vec3 tonemapped = pow(thresholded, vec3(1.0 / gamma));
8 vec3 final_color = mix(thresholded, tonemapped, tonemappingLerp);
/dports/devel/upp/upp/bazaar/TestLeptonica/
H A DLineRemoval.cpp8 Pix thresholded = source.ThresholdToBinary(170); in RemoveLines() local
9 CHECKR(thresholded, "Error thresholding the image"); in RemoveLines()
10 dest.Add(thresholded); in RemoveLines()
14 CHECKR(thresholded.FindSkew(&angle, NULL), "Error finding skew value"); in RemoveLines()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/ximgproc/perf/
H A Dperf_run_length_morphology.cpp22 Mat thresholded, dstRLE; variable
29 rl::threshold(src, thresholded, 100.0, THRESH_BINARY);
30 rl::morphologyEx(thresholded, dstRLE, op, se);
/dports/graphics/py-scikit-image/scikit-image-0.19.0/benchmarks/
H A Dbenchmark_graph.py16 thresholded = filters.apply_hysteresis_threshold(vessels, 0.01, 0.03)
17 labeled = ndi.label(thresholded)[0]
22 labeled2 = ndi.label(thresholded[::2, ::2])[0]
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/doc/tutorials/content/sources/iros2011/include/solution/
H A Dfilters.h17 PointCloudPtr thresholded (new PointCloud); in thresholdDepth()
18 pass_through.filter (*thresholded); in thresholdDepth()
20 return (thresholded); in thresholdDepth()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/doc/tutorials/content/sources/iccv2011/include/
H A Dfilters.h17 PointCloudPtr thresholded (new PointCloud); in thresholdDepth()
18 pass_through.filter (*thresholded); in thresholdDepth()
20 return (thresholded); in thresholdDepth()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/doc/tutorials/content/sources/iros2011/include/
H A Dfilters.h13 PointCloudPtr thresholded; in thresholdDepth() local
14 return (thresholded); in thresholdDepth()
/dports/math/octave-forge-ltfat/ltfat/inst/demos/
H A Ddemo_phaseplot.m29 % Figure 2: Synthetic signal, thresholded.
111 title('Phaseplot of synthetic signal - thresholded version, freq. inv. phase');
115 title('Phaseplot of synthetic signal - thresholded version, time inv. phase');
132 title('Phaseplot of linus - thresholded version');
/dports/graphics/py-scikit-image/scikit-image-0.19.0/doc/examples/applications/
H A Dplot_pixel_graphs.py63 thresholded = filters.apply_hysteresis_threshold(vessels, 0.01, 0.03) variable
64 labeled = ndi.label(thresholded)[0]
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/Edge/src/
H A Dedgeelement.cpp59 const QVector<quint8> &thresholded) const;
148 auto thresholded = this->d->threshold(src.width(), in iVideoStream() local
155 thresholded); in iVideoStream()
451 const QVector<quint8> &thresholded) const in hysteresisThresholding()
453 QVector<quint8> canny = thresholded; in hysteresisThresholding()
/dports/graphics/hugin/hugin-2020.0.0/src/deghosting/
H A Ddeghosting_mask.cpp367 …std::vector<deghosting::BImagePtr> thresholded = threshold(weights, thresholdLim, otherThresholdFl… in main() local
382 vigra::BImage outImg = vigra::BImage((*thresholded[i]).size()); in main()
383 simpleDenoise(vigra::srcImageRange(*thresholded[i]), destImage(outImg)); in main()
/dports/audio/aubio/aubio-0.4.9/src/tempo/
H A Dtempo.c62 fvec_t * thresholded; in aubio_tempo_do() local
84 thresholded = aubio_peakpicker_get_thresholded_input(o->pp); in aubio_tempo_do()
85 o->dfframe->data[winlen - step + o->blockpos] = thresholded->data[0]; in aubio_tempo_do()
/dports/audio/py-aubio/aubio-0.4.9/src/tempo/
H A Dtempo.c62 fvec_t * thresholded;
84 thresholded = aubio_peakpicker_get_thresholded_input(o->pp);
85 o->dfframe->data[winlen - step + o->blockpos] = thresholded->data[0];
/dports/print/texlive-base/texlive-20150521-source/texk/ps2pk/
H A Dregions.c243 if (area->thresholded != NULL) in KillRegion()
244 KillPicture(area->thresholded); in KillRegion()
270 if (area->thresholded != NULL) in CopyRegion()
272 r->thresholded = (struct picture *)Dup((struct xobject *)area->thresholded); in CopyRegion()
1382 if (R->thresholded != NULL) { in MoveEdges()
1383 R->thresholded->origin.x -= dx; in MoveEdges()
1384 R->thresholded->origin.y -= dy; in MoveEdges()
/dports/comms/p5-Cisco-UCS/Cisco-UCS-0.51/lib/Cisco/UCS/Chassis/
H A DStats.pm19 thresholded => 'thresholded',
/dports/comms/p5-Cisco-UCS/Cisco-UCS-0.51/lib/Cisco/UCS/Common/
H A DEnvironmentalStats.pm20 thresholded => 'thresholded',
H A DPowerStats.pm23 thresholded => 'thresholded',
/dports/net/tightvnc/vnc_unixsrc/Xvnc/lib/font/Type1/
H A Dregions.c244 if (area->thresholded != NULL)
245 KillPicture(area->thresholded);
271 if (area->thresholded != NULL)
273 r->thresholded = (struct picture *)Dup(area->thresholded);
1400 if (R->thresholded != NULL) {
1401 R->thresholded->origin.x -= dx;
1402 R->thresholded->origin.y -= dy;
/dports/science/py-nilearn/nilearn-0.8.1/doc/glm/
H A Dindex.rst13 analyses performed and present thresholded results.
/dports/comms/p5-Cisco-UCS/Cisco-UCS-0.51/lib/Cisco/UCS/Chassis/PSU/
H A DStats.pm48 thresholded => 'thresholded',
/dports/science/gnudatalanguage/gdl-1.0.1/src/pro/
H A Dcvttobm.pro1 ; converts a byte 'image' thresholded on 1 bit, to a 1 bit bitmap
/dports/graphics/frei0r/frei0r-1.7.0-18-g86475d3/src/filter/denoise/
H A DREADME11 In the future I would like to try at least a thresholded 3D median,

123456