Home
last modified time | relevance | path

Searched refs:smoothing (Results 1 – 25 of 3237) sorted by relevance

12345678910>>...130

/dports/audio/mixxx/mixxx-2.3.0/src/effects/builtin/
H A Dautopaneffect.cpp46 EffectManifestParameterPointer smoothing = pManifest->addParameter(); in getManifest() local
47 smoothing->setId("smoothing"); in getManifest()
48 smoothing->setName(QObject::tr("Smoothing")); in getManifest()
49 smoothing->setShortName(QObject::tr("Smooth")); in getManifest()
50 smoothing->setDescription(QObject::tr( in getManifest()
54 smoothing->setUnitsHint(EffectManifestParameter::UnitsHint::UNKNOWN); in getManifest()
56 smoothing->setMinimum(0.25); in getManifest()
58 smoothing->setDefault(0.50); in getManifest()
139 float a = smoothing != 0.5f ? 1.0f / (1.0f - smoothing * 2.0f) : 1.0f; in processChannel()
142 float u = (0.5f - smoothing) / 2.0f; in processChannel()
[all …]
/dports/security/keybase/client-v5.7.1/shared/common-adapters/
H A Dtext.css7 -webkit-font-smoothing: antialiased;
20 -webkit-font-smoothing: antialiased;
33 -webkit-font-smoothing: antialiased;
46 -webkit-font-smoothing: antialiased;
60 -webkit-font-smoothing: antialiased;
74 -webkit-font-smoothing: antialiased;
87 -webkit-font-smoothing: antialiased;
100 -webkit-font-smoothing: antialiased;
114 -webkit-font-smoothing: antialiased;
124 -webkit-font-smoothing: antialiased;
[all …]
/dports/audio/sox/sox-14.4.2/src/
H A Dnoisered.c22 float *smoothing; member
144 float *smoothing = chan->smoothing; in reduce_noise() local
154 assert(smoothing[i] >= 0 && smoothing[i] <= 1); in reduce_noise()
173 smoothing[i] = smooth * 0.5 + smoothing[i] * 0.5; in reduce_noise()
179 if (smoothing[i]>=0.5 && in reduce_noise()
184 smoothing[i+2]<0.1) in reduce_noise()
185 smoothing[i] = 0.0; in reduce_noise()
188 outr[0] *= smoothing[0]; in reduce_noise()
189 outi[0] *= smoothing[0]; in reduce_noise()
209 assert(smoothing[i] >= 0 && smoothing[i] <= 1); in reduce_noise()
[all …]
/dports/math/R-cran-KFAS/KFAS/R/
H A DKFS.R264 if (missing(smoothing)) {
267 smoothing <- match.arg(arg = smoothing,
272 smoothing[smoothing == "signal"] <- "mean"
273 smoothing <- unique(smoothing)
277 smoothing <- smoothing[smoothing != "disturbance"]
381 as.integer("state" %in% smoothing), as.integer("signal" %in% smoothing),
449 transformedZ <- transform == "ldl" && ("signal" %in% smoothing || "mean" %in% smoothing)
590 thetahat = array(0, dim = c(p, n)*("signal" %in% smoothing || "mean" %in% smoothing)),
591 V_theta = array(0, dim = c(p, p, n)*("signal" %in% smoothing || "mean" %in% smoothing)),
595 as.integer("state" %in% smoothing), as.integer("disturbance" %in% smoothing),
[all …]
/dports/mail/nextcloud-mail/mail/vendor/rubix/ml/src/Transformers/
H A DTfIdfTransformer.php44 protected $smoothing; variable in Rubix\\ML\\Transformers\\TfIdfTransformer
69 * @param float $smoothing
71 public function __construct(float $smoothing = 1.0) argument
73 if ($smoothing <= 0.0) {
75 . " greater than 0, $smoothing given.");
78 $this->smoothing = $smoothing;
154 $nHat = $this->n + $this->smoothing;
159 $idfs[] = 1.0 + log($nHat / ($df + $this->smoothing));
193 return "TF-IDF Transformer (smoothing: {$this->smoothing})";
/dports/math/R-cran-NMF/NMF/man/
H A Dsmoothing.Rd1 \name{smoothing}
2 \alias{smoothing}
5 smoothing(x, theta = x@theta, ...)
10 \item{theta}{the smoothing parameter (numeric) between 0
20 The function \code{smoothing} builds a smoothing matrix
24 For a \eqn{r}-rank NMF, the smoothing matrix of parameter
36 smoothing(x)
37 smoothing(x, 0.1)
/dports/graphics/mirtk/MIRTK-2.0.0-122-g38210fa/Documentation/commands/
H A Dmerge-surfaces.rst99 .. option:: -smooth-boundaries, -boundary-smoothing [<n>]
104 .. option:: -nosmooth-boundaries, -noboundary-smoothing
147 .. option:: -smoothing, -smooth [<n>]
153 .. option:: -smoothing-iterations, -smooth-iterations
159 Disable smoothing of nearby intersection points, same as
160 :option:`-smoothing` or :option:`-smoothing-iterations` 0.
162 .. option:: -smoothing-lambda, -smooth-lambda <float>
166 When only :option:`-smoothing-lambda` is given, :option:`-smoothing-mu` is set to
169 .. option:: -smoothing-mu, -smooth-mu <float>
187 .. option:: -smoothing-neighborhood, -smoothing-radius <int>
[all …]
/dports/audio/boops-lv2/BOops-1.8.2/src/
H A DFxStutter.hpp37 stutters (1), smoothing (0.1f) in FxStutter()
46 smoothing = params[SLOTS_OPTPARAMS + FX_STUTTER_SMOOTH]; in init()
58 if (frac < 0.5 * smoothing) in process()
62 s1.mix (s2, 0.5 - frac / smoothing); in process()
65 else if (frac > 1.0 - 0.5 * smoothing) in process()
69 s1.mix (s2, 0.5 - (1.0 - frac) / smoothing); in process()
80 float smoothing; member in FxStutter
H A DFxChopper.hpp39 nr (1), smoothing (0.1f), reach (1.0) in FxChopper()
46 smoothing = params[SLOTS_OPTPARAMS + FX_CHOPPER_SMOOTH]; in init()
63 if (frac < 0.5 * smoothing) in process()
67 s1.mix (sp, 0.5 - frac / smoothing); in process()
70 else if (frac > 1.0 - 0.5 * smoothing) in process()
74 s1.mix (sn, 0.5 - (1.0 - frac) / smoothing); in process()
82 float smoothing; member in FxChopper
/dports/mail/nextcloud-mail/mail/vendor/rubix/ml/src/Classifiers/
H A DNaiveBayes.php54 protected $smoothing; variable in Rubix\\ML\\Classifiers\\NaiveBayes
100 * @param float $smoothing
104 public function __construct(float $smoothing = 1.0, ?array $priors = null) argument
106 if ($smoothing <= 0.0) {
108 . " greater than 0, $smoothing given.");
131 $this->smoothing = $smoothing;
172 'smoothing' => $this->smoothing,
256 $total = array_sum($columnCounts) + (count($columnCounts) * $this->smoothing);
261 $probs[$category] = log(($count + $this->smoothing) / $total);
275 $total = array_sum($this->weights) + (count($this->weights) * $this->smoothing);
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/interpolate/
H A D_rbfinterp.py80 def _build_and_solve_system(y, d, smoothing, kernel, epsilon, powers): argument
109 y, d, smoothing, kernel, epsilon, powers
284 smoothing=0.0, argument
308 if np.isscalar(smoothing):
309 smoothing = np.full(ny, smoothing, dtype=float)
311 smoothing = np.asarray(smoothing, dtype=float, order="C")
312 if smoothing.shape != (ny,):
369 y, d, smoothing, kernel, epsilon, powers
385 self.smoothing = smoothing
450 snbr = self.smoothing[yidx]
/dports/lang/racket/racket-8.3/share/pkgs/drracket/drracket/private/
H A Dfont.rkt10 (define sc-smoothing-label (string-constant font-smoothing-label))
11 (define sc-smoothing-none (string-constant font-smoothing-none))
12 (define sc-smoothing-some (string-constant font-smoothing-some))
13 (define sc-smoothing-all (string-constant font-smoothing-all))
14 (define sc-smoothing-default (string-constant font-smoothing-default))
146 (define (smoothing->choice-index sm)
152 (define smoothing-control
154 [label sc-smoothing-label]
155 [choices (list sc-smoothing-none
156 sc-smoothing-some
[all …]
/dports/textproc/irstlm/irstlm-5.80.03/scripts/
H A Dbuild-lm.sh57 smoothing="--witten-bell";
97 smoothing=$OPTARG
98 case $smoothing in
100 smoothing="--witten-bell"
103 smoothing="--kneser-ney"
106 smoothing="--improved-kneser-ney"
131 …utfile order=$order parts=$parts tmpdir=$tmpdir prune=$prune smoothing=$smoothing dictionary=$dict…
189 if [ $smoothing = "--kneser-ney" -o $smoothing = "--improved-kneser-ney" ]; then
190 $scr/build-sublm.pl $verbose $prune $smoothing "cat $tmpdir/ikn.stat.dict.*" --size $order --ngrams…
192 $scr/build-sublm.pl $verbose $prune $smoothing --size $order --ngrams "$gunzip -c $tmpdir/ngram.${…
H A Dbuild-lm-qsub.sh63 smoothing="--witten-bell";
104 smoothing=$OPTARG
105 case $smoothing in
107 smoothing="--witten-bell"
110 smoothing="--kneser-ney"
113 smoothing="--improved-kneser-ney"
141 …utfile order=$order parts=$parts tmpdir=$tmpdir prune=$prune smoothing=$smoothing dictionary=$dict…
243 if [ $smoothing = "--kneser-ney" -o $smoothing = "--improved-kneser-ney" ]; then
251 $scr/build-sublm.pl $verbose $prune $smoothing "cat $tmpdir/ikn.stat.dict*" --size $order --ngrams …
272 $scr/build-sublm.pl $verbose $prune $smoothing --size $order --ngrams "$gunzip -c $tmpdir/ngram.dic…
/dports/math/R-cran-gss/gss/
H A DINDEX2 ssanova Fitting smoothing spline ANOVA models
7 ssanova9 Fitting smoothing spline ANOVA models with correlated data
10 ssanova0 Fitting smoothing spline ANOVA models
32 ssden Estimating probability density using smoothing splines
35 ssden1 Estimating probability density using smoothing splines
62 ssllrm Fitting smoothing spline log-linear regression models
67 sshzd Estimating hazard function using smoothing splines
69 sshzd1 Estimating hazard function using smoothing splines
76 sscox Estimating relative risk using smoothing splines
82 sscopu Fitting copula density using smoothing splines
[all …]
/dports/games/supertuxkart/SuperTuxKart-1.2-src/src/graphics/
H A Dcamera_normal.cpp193 bool *smoothing, float *cam_roll_angle) in getCameraSettings() argument
209 *smoothing = UserConfigParams::m_camera_forward_smoothing; in getCameraSettings()
227 *smoothing = false; in getCameraSettings()
247 *smoothing = false; in getCameraSettings()
265 *smoothing = true; in getCameraSettings()
275 *smoothing = true; in getCameraSettings()
285 *smoothing = true; in getCameraSettings()
314 bool smoothing; in update() local
331 bool smoothing; in update() local
347 float side_way, float distance, float smoothing, in positionCamera() argument
[all …]
/dports/graphics/art/ART-1.9.3/rtgui/
H A Dsmoothing.cc272 setEnabled(pp->smoothing.enabled); in read()
273 data = pp->smoothing.regions; in read()
274 auto m = pp->smoothing.labmasks; in read()
279 labMasks->setMasks(m, pp->smoothing.showMask); in read()
288 pp->smoothing.enabled = getEnabled(); in write()
291 pp->smoothing.regions = data; in write()
293 labMasks->getMasks(pp->smoothing.labmasks, pp->smoothing.showMask); in write()
294 assert(pp->smoothing.regions.size() == pp->smoothing.labmasks.size()); in write()
309 initial_params = defParams->smoothing; in setDefaults()
463 pp.smoothing = initial_params; in toolReset()
[all …]
H A Dhslequalizer.cc84 smoothing = Gtk::manage(new Adjuster(M("TP_HSL_SMOOTHING"), 0, 10, 1, 0)); in HSLEqualizer()
85 smoothing->setAdjusterListener(this); in HSLEqualizer()
88 pack_start(*smoothing); in HSLEqualizer()
119 smoothing->setValue(pp->hsl.smoothing); in read()
168 pp->hsl.smoothing = smoothing->getValue(); in write()
234 smoothing->setDefault(def->hsl.smoothing); in setDefaults()
/dports/security/vaultwarden/vaultwarden-1.23.1/src/static/templates/email/
H A Dnew_device_logged_in.html.hbs4 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
5 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
6 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
10 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
11 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
15 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
16 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
20 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
21 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
25 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
[all …]
H A Dincomplete_2fa_login.html.hbs4 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
5 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
6 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
10 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
11 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
15 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
16 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
20 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
21 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
25 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
[all …]
H A Dpw_hint_some.html.hbs4 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
5 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
6 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
10 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
11 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
12 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
16 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
17 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
21 …rder-box; font-size: 16px; color: #333; line-height: 25px; -webkit-font-smoothing: antialiased; -w…
22 …ont-size: 16px; color: #333; line-height: 25px; margin: 0; -webkit-font-smoothing: antialiased; pa…
/dports/graphics/py-plotly/plotly-4.14.3/plotly/graph_objs/contour/
H A D_line.py102 def smoothing(self): member in Line
116 @smoothing.setter
117 def smoothing(self, val): member in Line
165 self, arg=None, color=None, dash=None, smoothing=None, width=None, **kwargs argument
233 _v = smoothing if smoothing is not None else _v
/dports/graphics/py-plotly/plotly-4.14.3/plotly/graph_objs/contourcarpet/
H A D_line.py102 def smoothing(self): member in Line
116 @smoothing.setter
117 def smoothing(self, val): member in Line
165 self, arg=None, color=None, dash=None, smoothing=None, width=None, **kwargs argument
234 _v = smoothing if smoothing is not None else _v
/dports/graphics/py-plotly/plotly-4.14.3/plotly/graph_objs/histogram2dcontour/
H A D_line.py102 def smoothing(self): member in Line
116 @smoothing.setter
117 def smoothing(self, val): member in Line
161 self, arg=None, color=None, dash=None, smoothing=None, width=None, **kwargs argument
228 _v = smoothing if smoothing is not None else _v
/dports/devel/wf-config/wf-config-0.7.1/include/wayfire/util/
H A Dduration.hpp8 namespace smoothing namespace
48 smoothing::smooth_function smooth = smoothing::circle);
147 smoothing::smooth_function smooth = smoothing::circle);

12345678910>>...130