HomeSort by relevance Sort by last modified time
    Searched full:sigma (Results 176 - 200 of 725) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
HTMLEntities.properties 153 # Sigma 931
178 # sigma 963
  /external/clang/include/clang/AST/
CommentHTMLNamedCharacterReferences.td 114 def : NCR<"Sigma", 0x003A3>;
136 def : NCR<"sigma", 0x003C3>;
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 129 const MatrixType sigma = one_over_n * dst_demean * src_demean.transpose(); local
131 JacobiSVD<MatrixType> svd(sigma, ComputeFullU | ComputeFullV);
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 193 * "aB<capital sigma>"
196 * "<small final sigma><small sigma><capital sigma>"
365 * "aB<capital sigma>"
368 * "<small final sigma><small sigma><capital sigma>"
  /external/libmojo/third_party/markupsafe/
_constants.py 60 'Sigma': 931,
228 'sigma': 963,
  /external/skqp/tools/
sk_tool_utils.cpp 225 static float gaussian2d_value(int x, int y, float sigma) {
228 float temp = expf(-(x*x + y*y)/(2*sigma*sigma));
232 static float* create_2d_kernel(float sigma, int* filterSize) {
235 int halfFilterSize = SkScalarCeilToInt(6*sigma)/2;
243 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma);
302 SkBitmap slow_blur(const SkBitmap& src, float sigma) {
308 std::unique_ptr<float[]> kernel(create_2d_kernel(sigma, &wh));
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
Greek.java 80 // U+03C2: "?" GREEK SMALL LETTER FINAL SIGMA
115 // U+03C3: "?" GREEK SMALL LETTER SIGMA
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
CommentHTMLNamedCharacterReferences.td 114 def : NCR<"Sigma", 0x003A3>;
136 def : NCR<"sigma", 0x003C3>;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
CommentHTMLNamedCharacterReferences.td 114 def : NCR<"Sigma", 0x003A3>;
136 def : NCR<"sigma", 0x003C3>;
  /system/core/storaged/include/
storaged_diskstats.h 177 uint32_t window_size = 5, double sigma = 1.0)
190 mSigma(sigma),
  /art/tools/ahat/src/test/com/android/ahat/
InstanceTest.java 48 assertEquals("Sigma (?) is not ASCII", str.asString());
76 assertEquals("Sigma (?)", str.asString(9));
104 assertEquals("Sigma (?) is not ASCII", str.asString(22));
132 assertEquals("Sigma (?) is not ASCII", str.asString(50));
160 assertEquals("Sigma (?) is not ASCII", str.asString(-3));
  /external/skia/gm/
reveal.cpp 390 SkScalar sigma = fBlurRadius / 4.0f; variable
393 clippedPath = drawObj->asPath(2.0f*sigma);
395 SkPath drawnPath = drawObj->asPath(2.0f*sigma);
396 SkPath clipPath = clipObj->asPath(2.0f*sigma);
403 blurPaint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, sigma));
  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator.cc 233 // sigma weights measurements with a small deltaFS as noisy and
238 double sigma = (300.0 * exp(-fabs(static_cast<double>(deltaFSBytes)) / local
242 if (sigma < 1.0) {
243 sigma = 1.0;
245 hMh_sigma = deltaFSBytes * Mh[0] + Mh[1] + sigma;
  /system/chre/chre_api/include/chre_api/chre/
gnss.h 220 //! 1-sigma uncertainty associated with the clock's bias in nanoseconds
223 //! 1-sigma uncertainty associated with the clock's drift in nanoseconds
252 //! 1-sigma uncertainty of received GNSS satellite time, in nanoseconds
258 //! 1-sigma uncertainty of pseudorange rate in meters per second
261 //! 1-sigma uncertainty of the accumulated delta range in meters
  /system/chre/chre_api/legacy/v1_1/chre/
gnss.h 213 //! 1-sigma uncertainty associated with the clock's bias in nanoseconds
216 //! 1-sigma uncertainty associated with the clock's drift in nanoseconds
245 //! 1-sigma uncertainty of received GNSS satellite time, in nanoseconds
251 //! 1-sigma uncertainty of pseudorange rate in meters per second
254 //! 1-sigma uncertainty of the accumulated delta range in meters
  /external/ImageMagick/ImageMagick/api/
fx.html 135 const double sigma,ExceptionInfo *exception)
153 <dt>sigma</dt>
451 const double sigma,const ssize_t x_offset,const ssize_t y_offset,
470 <dt>sigma</dt>
489 <p>SketchImage() simulates a pencil sketch. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and SketchImage() selects a suitable radius for you. Angle gives the angle of the sketch.</p>
495 const double sigma,const double angle,ExceptionInfo *exception)
513 <dt>sigma</dt>
710 const double sigma,const ssize_t x,const ssize_t y,
729 <dt>sigma</dt
    [all...]
morphology.html 136 <dd> Gaussian:{radius},{sigma} Generate a two-dimensional gaussian kernel, as used by -gaussian. The sigma for the curve is required. The resulting kernel is normalized, </dd>
138 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
140 <dd> NOTE: that the 'radius' is optional, but if provided can limit (clip) the final size of the resulting kernel to a square 2*radius+1 in size. The radius should be at least 2 times that of the sigma value, or sever clipping and aliasing may result. If not given or set to 0 the radius will be determined so as to produce the best minimal error result, which is usally much larger than is normally needed. </dd>
142 <dd> LoG:{radius},{sigma} "Laplacian of a Gaussian" or "Mexician Hat" Kernel. The supposed ideal edge detection, zero-summing kernel. </dd>
144 <dd> An alturnative to this kernel is to use a "DoG" with a sigma ratio of approx 1.6 (according to wikipedia). </dd>
148 <dd> Blur:{radius},{sigma}[,{angle}] Generates a 1 dimensional or linear gaussian blur, at the angle given (current restricted to orthogonal angles). If a 'radius' is given the kernel is clipped to a width of 2*radius+1. Kernel can be rotated by a 90 degree angle. </dd>
150 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
152 <dd> Note that two convolutions with two "Blur" kernels perpendicular to each other, is equivalent to a far larger "Gaussian" kernel with the same sigma value, However it is much faster to apply. This is how the "-blur" operator actually works. </dd>
154 <dd> Comet:{width},{sigma},{angle} Blur in one direction only, much like how a bright object leaves a comet like trail. The (…)
    [all...]
  /external/ImageMagick/www/api/
fx.html 139 const double sigma,ExceptionInfo *exception)
157 <dt>sigma</dt>
455 const double sigma,const ssize_t x_offset,const ssize_t y_offset,
474 <dt>sigma</dt>
493 <p>SketchImage() simulates a pencil sketch. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and SketchImage() selects a suitable radius for you. Angle gives the angle of the sketch.</p>
499 const double sigma,const double angle,ExceptionInfo *exception)
517 <dt>sigma</dt>
714 const double sigma,const ssize_t x,const ssize_t y,
733 <dt>sigma</dt
    [all...]
fx.php 135 const double sigma,ExceptionInfo *exception)
153 <dt>sigma</dt>
451 const double sigma,const ssize_t x_offset,const ssize_t y_offset,
470 <dt>sigma</dt>
489 <p>SketchImage() simulates a pencil sketch. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and SketchImage() selects a suitable radius for you. Angle gives the angle of the sketch.</p>
495 const double sigma,const double angle,ExceptionInfo *exception)
513 <dt>sigma</dt>
710 const double sigma,const ssize_t x,const ssize_t y,
729 <dt>sigma</dt
    [all...]
morphology.html 140 <dd> Gaussian:{radius},{sigma} Generate a two-dimensional gaussian kernel, as used by -gaussian. The sigma for the curve is required. The resulting kernel is normalized, </dd>
142 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
144 <dd> NOTE: that the 'radius' is optional, but if provided can limit (clip) the final size of the resulting kernel to a square 2*radius+1 in size. The radius should be at least 2 times that of the sigma value, or sever clipping and aliasing may result. If not given or set to 0 the radius will be determined so as to produce the best minimal error result, which is usally much larger than is normally needed. </dd>
146 <dd> LoG:{radius},{sigma} "Laplacian of a Gaussian" or "Mexician Hat" Kernel. The supposed ideal edge detection, zero-summing kernel. </dd>
148 <dd> An alturnative to this kernel is to use a "DoG" with a sigma ratio of approx 1.6 (according to wikipedia). </dd>
152 <dd> Blur:{radius},{sigma}[,{angle}] Generates a 1 dimensional or linear gaussian blur, at the angle given (current restricted to orthogonal angles). If a 'radius' is given the kernel is clipped to a width of 2*radius+1. Kernel can be rotated by a 90 degree angle. </dd>
154 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
156 <dd> Note that two convolutions with two "Blur" kernels perpendicular to each other, is equivalent to a far larger "Gaussian" kernel with the same sigma value, However it is much faster to apply. This is how the "-blur" operator actually works. </dd>
158 <dd> Comet:{width},{sigma},{angle} Blur in one direction only, much like how a bright object leaves a comet like trail. The (…)
    [all...]
morphology.php 136 <dd> Gaussian:{radius},{sigma} Generate a two-dimensional gaussian kernel, as used by -gaussian. The sigma for the curve is required. The resulting kernel is normalized, </dd>
138 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
140 <dd> NOTE: that the 'radius' is optional, but if provided can limit (clip) the final size of the resulting kernel to a square 2*radius+1 in size. The radius should be at least 2 times that of the sigma value, or sever clipping and aliasing may result. If not given or set to 0 the radius will be determined so as to produce the best minimal error result, which is usally much larger than is normally needed. </dd>
142 <dd> LoG:{radius},{sigma} "Laplacian of a Gaussian" or "Mexician Hat" Kernel. The supposed ideal edge detection, zero-summing kernel. </dd>
144 <dd> An alturnative to this kernel is to use a "DoG" with a sigma ratio of approx 1.6 (according to wikipedia). </dd>
148 <dd> Blur:{radius},{sigma}[,{angle}] Generates a 1 dimensional or linear gaussian blur, at the angle given (current restricted to orthogonal angles). If a 'radius' is given the kernel is clipped to a width of 2*radius+1. Kernel can be rotated by a 90 degree angle. </dd>
150 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
152 <dd> Note that two convolutions with two "Blur" kernels perpendicular to each other, is equivalent to a far larger "Gaussian" kernel with the same sigma value, However it is much faster to apply. This is how the "-blur" operator actually works. </dd>
154 <dd> Comet:{width},{sigma},{angle} Blur in one direction only, much like how a bright object leaves a comet like trail. The (…)
    [all...]
  /bionic/libm/x86_64/
s_sin.S 79 // sigma closest power of 2 to cos(B)
80 // C_hl 53-bit cos(B) - sigma
85 // sin(B + r + c) = [sin(B) + sigma * r] +
86 // r * (cos(B) - sigma) +
92 // [S_hi + sigma * r] +
95 // (C_hl + sigma) * [(sin(r) - r) + c]
104 // hi = S_hi + sigma r
106 // pols = S_hi * (cos(r) - 1) + (C_hl + sigma) * (sin(r) - r)
107 // corr = S_lo + c * ((C_hl + sigma) - S_hi * r)
111 // The polynomial S_hi * (cos(r) - 1) + (C_hl + sigma) *
    [all...]
  /external/eigen/Eigen/src/Core/
PermutationMatrix.h 31 * The convention followed here is that if \f$ \sigma \f$ is a permutation, the corresponding permutation matrix
32 * \f$ P_\sigma \f$ is such that if \f$ (e_1,\ldots,e_p) \f$ is the canonical basis, we have:
33 * \f[ P_\sigma(e_i) = e_{\sigma(i)}. \f]
34 * This convention ensures that for any two permutations \f$ \sigma, \tau \f$, we have:
35 * \f[ P_{\sigma\circ\tau} = P_\sigma P_\tau. \f]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
SpecialCasing.txt 209 # Special case for final form of sigma
211 03A3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK CAPITAL LETTER SIGMA
215 # 03A3; 03C3; 03A3; 03A3; # GREEK CAPITAL LETTER SIGMA
216 # 03C3; 03C3; 03A3; 03A3; # GREEK SMALL LETTER SIGMA
217 # 03C2; 03C2; 03A3; 03A3; # GREEK SMALL LETTER FINAL SIGMA
221 # 03C3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK SMALL LETTER SIGMA
222 # 03C2; 03C3; 03A3; 03A3; Not_Final_Sigma; # GREEK SMALL LETTER FINAL SIGMA
  /external/icu/icu4c/source/data/unidata/
SpecialCasing.txt 209 # Special case for final form of sigma
211 03A3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK CAPITAL LETTER SIGMA
215 # 03A3; 03C3; 03A3; 03A3; # GREEK CAPITAL LETTER SIGMA
216 # 03C3; 03C3; 03A3; 03A3; # GREEK SMALL LETTER SIGMA
217 # 03C2; 03C2; 03A3; 03A3; # GREEK SMALL LETTER FINAL SIGMA
221 # 03C3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK SMALL LETTER SIGMA
222 # 03C2; 03C3; 03A3; 03A3; Not_Final_Sigma; # GREEK SMALL LETTER FINAL SIGMA

Completed in 2628 milliseconds

1 2 3 4 5 6 78 91011>>