HomeSort by relevance Sort by last modified time
    Searched refs:pixel (Results 301 - 325 of 555) sorted by null

<<11121314151617181920>>

  /external/ImageMagick/www/api/
constitute.php 59 <p>ConstituteImage() returns an image from the pixel data you supply. The pixel data must be in scanline order top-to-bottom. The data can be char, short int, int, float, or double. Float and double require the pixels to be normalized [0..1], otherwise [0..QuantumRange]. For example, to create a 640x480 image from unsigned red-green-blue character data, use:</p>
89 <dd> This string reflects the expected ordering of the pixel array. It can be any combination or order of R = red, G = green, B = blue, A = alpha (0 is transparent), O = opacity (0 is opaque), C = cyan, Y = yellow, M = magenta, K = black, I = intensity (for grayscale), P = pad. </dd>
97 <dd>This array of values contain the pixel components as defined by map and type. You must preallocate this array where the expected length varies depending on the values of width, height, map, and type. </dd>
signature.php 59 <p>SignatureImage() computes a message digest from an image pixel stream with an implementation of the NIST SHA-256 Message Digest algorithm. This signature uniquely identifies the image and is convenient for determining if an image has been modified or whether two images are identical.</p>
morphology.php 61 <p>The kernel so generated can be any rectangular array of floating point values (doubles) with the 'control point' or 'pixel being affected' anywhere within that array of values.</p>
73 <p>"WxH[+X+Y][@&gt;&lt;]:num, num, num ..." a kernel of size W by H, with W*H floating point numbers following. the 'center' can be optionally be defined at +X+Y (such that +0+0 is top left corner). If not defined the pixel in the center, for odd sizes, or to the immediate top or left of center for even sizes is automatically selected.</p>
138 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
150 <dd> If 'sigma' is zero, you get a single pixel on a field of zeros. </dd>
194 <dd> However this kernel is als at the heart of the FreiChen Edge Detection Process which uses a set of 9 specially weighted kernel. These 9 kernels not be normalized, but directly applied to the image. The results is then added together, to produce the intensity of an edge in a specific direction. The square root of the pixel value can then be taken as the cosine of the edge, and at least 2 such runs at 90 degrees from each other, both the direction and the strength of the edge can be determined. </dd>
236 <dd> Rectangle:{geometry} Simply generate a rectangle of 1's with the size given. You can also specify the location of the 'control point', otherwise the closest pixel to the center of the rectangle is selected. </dd>
254 <dd> Peak:radius1,radius2 Find any peak larger than the pixels the fall between the two radii. The default ring of pixels is as per "Ring". Edges Find flat orthogonal edges of a binary shape Corners Find 90 degree corners of a binary shape Diagonals:type A special kernel to thin the 'outside' of diagonals LineEnds:type Find end points of lines (for pruning a skeletion) Two types of lines ends (default to both) can be searched for Type 0: All line ends Type 1: single kernel for 4-conneected line ends Type 2: single kernel for simple line ends LineJunctions Find three line junctions (within a skeletion) Type 0: all line junctions Type 1: Y Junction kernel Type 2: Diagonal T Junction kernel Type 3: Orthogonal T Junction kernel Type 4: Diagonal X Junction kernel Type 5: Orthogonal + Junction kernel Ridges:type Find single pixel ridges or thin lines Type 1: Fine single pixel thick lines and ridges Type 2: Find two pixel thick lines and ridges ConvexHull Octagonal Thickening Kernel, to generate convex hulls of 45 degrees Skeleton:type Traditional skeleton generating kernels. Type 1: Tradional Skeleton kernel (4 connected skeleton) Type 2: HIPR2 Skeleton kernel (8 connected skeleton) Type 3: Thinning skeleton based on a ressearch paper by Dan S. Bloomberg (Default Type) ThinSE:type A huge variety of Thinning Kernels designed to preserve conectivity. many other kernel sets use these kernels as source definitions. Type numbers are 41-49, 81-89, 481, and 482 which are based on the super and sub notations used in the source research paper. </dd>
    [all...]
magick-image.php 102 <dd>the radius of the Gaussian, in pixels, not counting the center pixel. </dd>
159 <dd>the radius of the Gaussian, in pixels, not counting the center pixel. </dd>
169 <p>MagickAdaptiveThresholdImage() selects an individual threshold for each pixel based on the range of intensity values in its local neighborhood. This allows for thresholding of an image whose global intensity histogram doesn't contain distinctive peaks.</p>
    [all...]
fx.php 150 <dd>the radius of the pixel neighborhood. </dd>
164 <p>ColorizeImage() blends the fill color with each pixel in the image. A percentage blend is specified with opacity. Control the application of different color components by specifying a different percentage for each component (e.g. 90/100/10 is 90 red, 100 green, and 10 blue).</p>
290 <dd>the pixel interpolation method. </dd>
404 <dd>the pixel interpolation method. </dd>
510 <dd>the radius of the Gaussian, in pixels, not counting the center pixel. </dd>
634 <p>SwirlImage() swirls the pixels about the center of the image, where degrees indicates the sweep of the arc through which each pixel is moved. You get a more dramatic effect as the degrees move from 1 to 360.</p>
659 <dd>the pixel interpolation method. </dd>
669 <p>TintImage() applies a color vector to each pixel in the image. The length of the vector is 0 for black and white and at its maximum for the midtones. The vector weighting function is f(x)=(1-(4.0*((x-0.5)*(x-0.5))))</p>
726 <dd>the radius of the pixel neighborhood. </dd>
770 <dd>the pixel interpolation method. </dd
    [all...]
image-view.php 103 <p>DuplexTransferImageViewIterator() iterates over three image views in parallel and calls your transfer method for each scanline of the view. The source and duplex pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. However, the destination image view is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted.</p>
221 <dd>the pixel image_view. </dd>
275 <p>GetImageViewIterator() iterates over the image view in parallel and calls your get method for each scanline of the view. The pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. Any updates to the pixels in your callback are ignored.</p>
473 <p>SetImageViewIterator() iterates over the image view in parallel and calls your set method for each scanline of the view. The pixel extent is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension. The pixels are initiallly undefined and any settings you make in the callback method are automagically synced back to your image.</p>
519 <p>TransferImageViewIterator() iterates over two image views in parallel and calls your transfer method for each scanline of the view. The source pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. However, the destination image view is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted.</p>
570 <p>UpdateImageViewIterator() iterates over the image view in parallel and calls your update method for each scanline of the view. The pixel extent is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted. Updates to pixels in your callback are automagically synced back to the image.</p>
wand-view.php 103 <p>DuplexTransferWandViewIterator() iterates over three wand views in parallel and calls your transfer method for each scanline of the view. The source and duplex pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. However, the destination wand view is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted.</p>
176 <dd>the pixel wand_view. </dd>
208 <p>GetWandViewIterator() iterates over the wand view in parallel and calls your get method for each scanline of the view. The pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. Any updates to the pixels in your callback are ignored.</p>
395 <p>SetWandViewIterator() iterates over the wand view in parallel and calls your set method for each scanline of the view. The pixel extent is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension. The pixels are initiallly undefined and any settings you make in the callback method are automagically synced back to your image.</p>
441 <p>TransferWandViewIterator() iterates over two wand views in parallel and calls your transfer method for each scanline of the view. The source pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. However, the destination wand view is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted.</p>
492 <p>UpdateWandViewIterator() iterates over the wand view in parallel and calls your update method for each scanline of the view. The pixel extent is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted. Updates to pixels in your callback are automagically synced back to the image.</p>
  /external/chromium-trace/catapult/third_party/flot/
FAQ.md 12 points than the pixel width, you should probably start thinking about
  /external/libvpx/libvpx/vpx_dsp/arm/
idct16x16_add_neon.asm 623 vqmovun.s16 d12, q12 ; clip pixel
624 vqmovun.s16 d13, q13 ; clip pixel
637 vqmovun.s16 d12, q12 ; clip pixel
638 vqmovun.s16 d13, q13 ; clip pixel
655 vqmovun.s16 d12, q12 ; clip pixel
656 vqmovun.s16 d13, q13 ; clip pixel
669 vqmovun.s16 d12, q12 ; clip pixel
670 vqmovun.s16 d13, q13 ; clip pixel
681 vqmovun.s16 d12, q8 ; clip pixel
686 vqmovun.s16 d13, q9 ; clip pixel
    [all...]
variance_halfpixvar16x16_hv_media.asm 53 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
96 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
138 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
178 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OnedCode39Reader.cpp 142 FX_BOOL pixel = row->Get(i); local
143 if (pixel ^ isWhite) {
  /external/skia/src/core/
SkPixmap.cpp 113 unsigned pixel = (SkA32To4444(a) << SK_A4444_SHIFT) | local
117 return SkToU16(pixel);
  /external/v8/test/mjsunit/regress/
regress-1563.js 32 // Test that undefined gets properly clamped in Crankshafted pixel array
  /frameworks/rs/api/
rs_object_info.spec 54 Elements can also have a kind, which is semantic information used to interpret pixel
182 Returns the Element's data kind. This is used to interpret pixel data.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
vp8_variance_halfpixvar16x16_hv_armv6.asm 53 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
96 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
138 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
178 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
vp9_idct16x16_add_neon.asm 623 vqmovun.s16 d12, q12 ; clip pixel
624 vqmovun.s16 d13, q13 ; clip pixel
637 vqmovun.s16 d12, q12 ; clip pixel
638 vqmovun.s16 d13, q13 ; clip pixel
655 vqmovun.s16 d12, q12 ; clip pixel
656 vqmovun.s16 d13, q13 ; clip pixel
669 vqmovun.s16 d12, q12 ; clip pixel
670 vqmovun.s16 d13, q13 ; clip pixel
681 vqmovun.s16 d12, q8 ; clip pixel
686 vqmovun.s16 d13, q9 ; clip pixel
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 448 int pixel = image.getRGB(x, y); local
449 color = new Color(pixel);
450 hLabel.setText("#" + Integer.toHexString(pixel));
451 rLabel.setText(String.valueOf((pixel >> 16) & 0xff));
452 gLabel.setText(String.valueOf((pixel >> 8) & 0xff));
453 bLabel.setText(String.valueOf((pixel ) & 0xff));
  /external/ImageMagick/MagickCore/
draw.c 76 #include "MagickCore/pixel-accessor.h"
77 #include "MagickCore/pixel-private.h"
1172 pixel; local
3431 pixel; local
4049 pixel; local
4350 pixel; local
4369 pixel, local
4432 pixel; local
4466 pixel; local
4486 pixel, local
4543 pixel; local
    [all...]
display.c 79 #include "MagickCore/pixel.h"
80 #include "MagickCore/pixel-accessor.h"
287 " Pixel Color",
321 "of the Command widget. The point method recolors any pixel",
323 "replace method recolors any pixel that matches the color of",
324 "the pixel you select with a button press. Floodfill recolors",
325 "any pixel that matches the color of the pixel you select with",
327 "any neighbor pixel that is not the border color. Finally reset",
330 "Next, choose a pixel color from the Pixel Color sub-menu."
3750 pixel, local
10120 pixel, local
13241 pixel; local
13472 pixel; local
13803 pixel; local
14505 *pixel; local
    [all...]
cache.c 13 % MagickCore Pixel Cache Methods %
63 #include "MagickCore/pixel.h"
64 #include "MagickCore/pixel-accessor.h"
179 % AcquirePixelCache() acquires a pixel cache.
303 % o length: the pixel cache length.
395 % ClonePixelCache() clones a pixel cache.
403 % o cache: the pixel cache.
439 % ClonePixelCacheMethods() clones the pixel cache methods from one cache to
450 % o cache: the pixel cache.
482 % ClonePixelCacheRepository() clones the source pixel cache to the destinatio
    [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c 294 pixel;
296 GetPixelInfo(wand->image,&pixel);
297 pixel.colorspace=sRGBColorspace;
298 pixel.alpha_trait=packet->alpha != OpaqueAlpha ? BlendPixelTrait :
300 pixel.red=(double) packet->red;
301 pixel.green=(double) packet->green;
302 pixel.blue=(double) packet->blue;
303 pixel.alpha=(double) packet->alpha;
304 GetColorTuple(&pixel,MagickTrue,tuple);
649 % PointMethod: Select the target pixel
290 pixel; local
2461 pixel; local
    [all...]
  /external/ImageMagick/coders/
xcf.c 56 #include "MagickCore/pixel.h"
57 #include "MagickCore/pixel-accessor.h"
439 pixel,
464 pixel=(*xcfdata++);
465 length=(size_t) pixel;
536 pixel=(*xcfdata++);
539 data=pixel;
434 pixel, local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 65 int pixel = image.getRGB(x, y); local
66 if ((pixel & 0xFF000000) != 0) {
67 int r = (pixel & 0xFF0000) >> 16;
68 int g = (pixel & 0x00FF00) >> 8;
69 int b = (pixel & 0x0000FF);
177 * @param blankArgb the color considered to be blank, as a 32 pixel integer with 8
198 * @param blankArgb the color considered to be blank, as a 32 pixel integer with 8
220 * a pixel should be cropped or not.
224 * Returns true if the pixel is should be cropped.
226 * @param image the image containing the pixel in questio
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.cpp 235 * \brief Get access to subregion of pixel buffer
261 * \brief Get access to subregion of pixel buffer
287 * \brief Get access to subregion of pixel buffer
301 * \brief Get access to subregion of pixel buffer
665 inline void fillRow (const PixelBufferAccess& dst, int y, int z, int pixelSize, const deUint8* pixel)
675 memcpy(&val, pixel, sizeof(val));
683 memcpy(&val, pixel, sizeof(val));
692 dstPtr[i*pixelSize+j] = pixel[j];
710 } pixel;
711 DE_STATIC_ASSERT(sizeof(pixel) == CLEAR_OPTIMIZE_MAX_PIXEL_SIZE)
    [all...]
  /external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp 86 const tcu::RGBA pixel = image.getPixel(x, y); local
89 // Any pixel with !(G ~= 255) is faulty (not a linear combinations of green and yellow)
90 if (de::abs(pixel.getGreen() - 255) > colorThreshold)
93 // Any pixel with !(B ~= 0) is faulty (not a linear combinations of green and yellow)
94 if (de::abs(pixel.getBlue() - 0) > colorThreshold)

Completed in 1338 milliseconds

<<11121314151617181920>>