Home
last modified time | relevance | path

Searched refs:gaussian (Results 176 – 200 of 4467) sorted by relevance

12345678910>>...179

/dports/www/mod_php74/php-7.4.27/ext/gd/tests/
H A Dimageconvolution_error2.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
22 var_dump(imageconvolution($image, $gaussian, 16, 0));
/dports/graphics/php74-gd/php-7.4.27/ext/gd/tests/
H A Dimageconvolution_error3.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
23 var_dump(imageconvolution($image, $gaussian, 16, 0));
H A Dimageconvolution_error2.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
22 var_dump(imageconvolution($image, $gaussian, 16, 0));
/dports/graphics/php80-gd/php-8.0.15/ext/gd/tests/
H A Dimageconvolution_error2.phpt16 // Writes the text and apply a gaussian blur on the image
19 $gaussian = array(
25 fn() => imageconvolution($image, $gaussian, 16, 0)
H A Dimageconvolution_error3.phpt16 // Writes the text and apply a gaussian blur on the image
19 $gaussian = array(
32 fn() => imageconvolution($image, $gaussian, 16, 0),
/dports/graphics/php73-gd/php-7.3.33/ext/gd/tests/
H A Dimageconvolution_error2.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
22 var_dump(imageconvolution($image, $gaussian, 16, 0));
H A Dimageconvolution_error3.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
23 var_dump(imageconvolution($image, $gaussian, 16, 0));
/dports/graphics/GraphicsMagick/GraphicsMagick-1.3.36/Magick++/demo/
H A Ddemos.tap32 for filter in bessel blackman box catrom cubic gaussian hamming hanning hermite lanczos mitchell po…
36 for filter in bessel blackman box catrom cubic gaussian hamming hanning hermite lanczos mitchell po…
40 for filter in bessel blackman box catrom cubic gaussian hamming hanning hermite lanczos mitchell po…
44 for filter in bessel blackman box catrom cubic gaussian hamming hanning hermite lanczos mitchell po…
/dports/math/armadillo/armadillo-10.7.1/tests2/
H A Dgmm.cpp65 mat gaussian; variable
66 gaussian.randn(dims, counts[i]);
80 …data.cols(point, point + counts[i] - 1) = (covars[i] * gaussian + means[i] * ones<rowvec>(counts[i…
166 mat gaussian; variable
167 gaussian.randn(dims, counts[i]);
178 …data.cols(point, point + counts[i] - 1) = (covars[i] * gaussian + means[i] * ones<rowvec>(counts[i…
/dports/lang/racket/racket-8.3/share/pkgs/images-lib/images/private/
H A Dflomap-blur.rkt8 (provide flomap-gaussian-blur-x flomap-gaussian-blur-y flomap-gaussian-blur
15 (: flomap-gaussian-blur (case-> (flomap Real -> flomap)
17 (define flomap-gaussian-blur
19 [(fm xσ) (flomap-gaussian-blur fm xσ xσ)]
21 (flomap-gaussian-blur-y (flomap-gaussian-blur-x fm (abs (real->double-flonum xσ)))
24 (: flomap-gaussian-blur-x (flomap Real -> flomap))
25 (define (flomap-gaussian-blur-x fm σ*)
48 (: flomap-gaussian-blur-y (flomap Real -> flomap))
49 (define (flomap-gaussian-blur-y fm σ*)
74 (define (gaussian-kernel-1d mn mx σ)
[all …]
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/foundation/math/
H A Dfilter.h126 static T gaussian(const T x, const T alpha);
237 static T gaussian(const T x, const T alpha);
256 static T gaussian(const T x, const T alpha);
432 , m_shift(gaussian(T(1.0), alpha)) in GaussianFilter1()
440 return gaussian(nx, m_alpha) - m_shift; in evaluate()
557 , m_shift(gaussian(T(1.0), alpha)) in GaussianFilter2()
567 const T fx = gaussian(nx, m_alpha) - m_shift; in evaluate()
568 const T fy = gaussian(ny, m_alpha) - m_shift; in evaluate()
594 , m_shift(gaussian(T(1.0), alpha)) in FastGaussianFilter2()
604 const T fx = gaussian(nx, m_alpha) - m_shift; in evaluate()
[all …]
/dports/www/mod_php81/php-8.1.1/ext/gd/tests/
H A Dimageconvolution_error3.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
30 fn() => imageconvolution($image, $gaussian, 16, 0),
/dports/lang/php81/php-8.1.1/ext/gd/tests/
H A Dimageconvolution_error3.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
30 fn() => imageconvolution($image, $gaussian, 16, 0),
/dports/graphics/php81-gd/php-8.1.1/ext/gd/tests/
H A Dimageconvolution_error3.phpt14 // Writes the text and apply a gaussian blur on the image
17 $gaussian = array(
30 fn() => imageconvolution($image, $gaussian, 16, 0),
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/tests/
H A Dgan_test.cpp76 GaussianInitialization gaussian(0, 0.1); variable
82 gan(generator, discriminator, gaussian, noiseFunction, noiseDim, batchSize,
205 GaussianInitialization gaussian(0, 1); variable
212 gaussian, noiseFunction, noiseDim, batchSize, generatorUpdateStep,
254 gaussian, noiseFunction, noiseDim, batchSize, generatorUpdateStep,
259 gaussian, noiseFunction, noiseDim, batchSize, generatorUpdateStep,
264 gaussian, noiseFunction, noiseDim, batchSize, generatorUpdateStep,
327 GaussianInitialization gaussian(0, 0.1); variable
335 gan(generator, discriminator, gaussian, noiseFunction,
H A Drbm_network_test.cpp69 GaussianInitialization gaussian(0, 0.1); variable
71 gaussian, trainData.n_rows, hiddenLayerSize, batchSize);
136 GaussianInitialization gaussian(0, 1); variable
170 gaussian, trainData.n_rows, hiddenLayerSize, batchSize, 1, 1, poolSize,
219 GaussianInitialization gaussian(0, 0.1); in BuildVanillaNetwork() local
220 RBM<GaussianInitialization, MatType, BinaryRBM> model(trainData, gaussian, in BuildVanillaNetwork()
/dports/lang/php80/php-8.0.15/ext/gd/tests/
H A Dimageconvolution_error3.phpt16 // Writes the text and apply a gaussian blur on the image
19 $gaussian = array(
32 fn() => imageconvolution($image, $gaussian, 16, 0),
/dports/www/mod_php80/php-8.0.15/ext/gd/tests/
H A Dimageconvolution_error3.phpt16 // Writes the text and apply a gaussian blur on the image
19 $gaussian = array(
32 fn() => imageconvolution($image, $gaussian, 16, 0),
/dports/editors/texmacs/TeXmacs-1.99.4-src/TeXmacs/packages/standard/
H A Dstd-graphics.ts71 <assign|blur|<macro|body|r|<gr-effect|<arg|body>|<eff-blur|0|<eff-gaussian|<arg|r>>>>>>
73 …<assign|gaussian-blur|<macro|body|rx|ry|phi|<gr-effect|<arg|body>|<eff-blur|0|<eff-gaussian|<arg|r…
85 …<assign|gaussian-outline|<macro|body|rx|ry|phi|<gr-effect|<arg|body>|<eff-outline|0|<eff-gaussian|…
97 …<assign|gaussian-thicken|<macro|body|rx|ry|phi|<gr-effect|<arg|body>|<eff-thicken|0|<eff-gaussian|…
109 …<assign|gaussian-erode|<macro|body|rx|ry|phi|<gr-effect|<arg|body>|<eff-erode|0|<eff-gaussian|<arg…
123 …l|r|<eff-blur|<eff-monochrome|<eff-move|0|<arg|dx>|<arg|dy>>|<arg|col>|1>|<eff-gaussian|<arg|r>>>>>
/dports/math/py-gau2grid/gau2grid-2.0.7/docs/source/
H A Dindex.rst10 *gau2grid is a python-generated C library for vectorized computation of grid to gaussian collocatio…
13 space grid and a gaussian basis set expanded to a given angular momenta.
14 Where a simple gaussian can be represented with the cartesian form as:
20 where for a given angular momenta :math:`\ell`, a gaussian basis has all
33 several gaussian with different exponents and coefficients together:
/dports/math/gau2grid/gau2grid-2.0.7/docs/source/
H A Dindex.rst10 *gau2grid is a python-generated C library for vectorized computation of grid to gaussian collocatio…
13 space grid and a gaussian basis set expanded to a given angular momenta.
14 Where a simple gaussian can be represented with the cartesian form as:
20 where for a given angular momenta :math:`\ell`, a gaussian basis has all
33 several gaussian with different exponents and coefficients together:
/dports/math/geogram/geogram-1.7.7/src/lib/geogram_gfx/GLUP/shaders/fullscreen/
H A Dblur_fragment_shader.h23 float gaussian(in float x, in float s) { in gaussian() function
36 float weight = gaussian(float(i), blur_width);
61 float weight = gaussian(float(i), blur_width) / sum;
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/filters/
H A D_gaussian.py7 from .._shared.filters import gaussian
147 im1 = gaussian(image, low_sigma, mode=mode, cval=cval,
151 im2 = gaussian(image, high_sigma, mode=mode, cval=cval,
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/registration/
H A D_optical_flow.py12 from .._shared.filters import gaussian as gaussian_filter
232 def _ilk(reference_image, moving_image, flow0, radius, num_warp, gaussian, argument
265 if gaussian:
312 radius=7, num_warp=10, gaussian=False, argument
378 solver = partial(_ilk, radius=radius, num_warp=num_warp, gaussian=gaussian,
/dports/math/py-pygsl/pygsl-2.3.0/doc/ref/
H A Drng.rst68 gaussiansigma gaussian distribution with mean 0 and given sigma returns
71 gaussian\_ratio\_methodsigma gaussian distribution with mean 0 and given
75 ugaussian gaussian distribution with unit sigma and mean 0. returns
78 ugaussian\_ratio\_method gaussian distribution with unit sigma and mean
81 gaussian\_tailsigma, a upper tail of a Gaussian distribution with
87 bivariate\_gaussiansigma\_x, sigma\_y, rho pair of correlated gaussian

12345678910>>...179