HomeSort by relevance Sort by last modified time
    Searched refs:Pixels (Results 1 - 21 of 21) sorted by null

  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 18 class MagickPPExport Pixels
23 Pixels(Magick::Image &image_);
26 ~Pixels(void);
28 // Transfer pixels from the image to the pixel view as defined by
29 // the specified region. Modified pixels may be subsequently
34 // Transfer read-only pixels from the image to the pixel view as
45 // Allocate a pixel view region to store image pixels as defined
51 // Transfers the image view pixels to the image.
68 // Copying and assigning Pixels is not supported.
69 Pixels(const Pixels& pixels_)
    [all...]
  /external/ImageMagick/Magick++/lib/
Magick++.h 13 #include <Magick++/Pixels.h>
Pixels.cpp 6 // Pixels Implementation
17 #include "Magick++/Pixels.h"
19 Magick::Pixels::Pixels(Magick::Image &image_)
31 Magick::Pixels::~Pixels(void)
37 Magick::Quantum* Magick::Pixels::get(const ssize_t x_,const ssize_t y_,
46 Quantum* pixels=GetCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_, local
50 return pixels;
53 const Magick::Quantum* Magick::Pixels::getConst(const ssize_t x_
62 const Quantum* pixels=GetCacheViewVirtualPixels(_view,x_,y_,columns_,rows_, local
85 Quantum* pixels=QueueCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_, local
    [all...]
Image.cpp 23 #include "Magick++/Pixels.h"
39 // If image pixels and signature are the same, then the image is identical
60 // If image pixels are less, then image is smaller
504 // Use SyncImage to synchronize the DirectClass pixels with the
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/
image_util.py 40 def Pixels(image):
42 return impl.Pixels(image)
58 def FromRGBPixels(width, height, pixels, bpp=3):
59 """Create an image from an array of rgb pixels.
65 pixels: The flat array of pixels in the form of [r,g,b[,a],r,g,b[,a],...]
67 return impl.FromRGBPixels(width, height, pixels, bpp)
image_util_unittest.py 60 pixels = [255, 0, 0, 255, 255, 0, 0, 0, 0,
62 orig = image_util.FromRGBPixels(3, 2, pixels)
105 pixels = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
108 bmp = image_util.FromRGBPixels(4, 3, pixels)
118 pixels = [0, 0, 0, 1, 0, 0, 2, 0, 0, 3, 0, 0,
121 bmp = image_util.FromRGBPixels(4, 3, pixels)
128 self.assertEquals(image_util.Pixels(bmp), bytearray([1, 2, 0, 2, 2, 0]))
  /external/chromium-trace/catapult/telemetry/telemetry/core/
platform_unittest.py 42 screenshot_pixels = image_util.Pixels(img)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
inspector_page_unittest.py 43 res = image_util.Pixels(self._tab.Screenshot())
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
image_util_bitmap_impl.py 19 def Pixels(bitmap):
20 return bitmap.pixels
28 def FromRGBPixels(width, height, pixels, bpp):
29 return _bitmap.Bitmap(bpp, width, height, pixels)
image_util_numpy_impl.py 25 def Pixels(image):
42 pixels = img.reshape(-1).tolist()
43 png.Writer(**metadata).write_array(f, pixels)
45 def FromRGBPixels(width, height, pixels, bpp):
46 img = np.array(pixels, order='F', dtype=np.uint8)
67 width, height, pixels, meta = png.Reader(bytes=png_data).read_flat()
68 return FromRGBPixels(width, height, pixels, 4 if meta['alpha'] else 3)
  /external/ImageMagick/Magick++/
Android.mk 37 lib/Pixels.cpp\
Makefile.am 86 Magick++/lib/Pixels.cpp \
106 Magick++/lib/Magick++/Pixels.h \
138 Magick++/lib/Magick++/Pixels.h \
  /external/ImageMagick/scripts/
Makefile.am 97 Magick++/lib/Pixels.cpp \
115 Magick++/lib/Magick++/Pixels.h \
134 Magick++/lib/Magick++/Pixels.h \
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Graphics.java 143 if (window.getConfig().hdpiMode == HdpiMode.Pixels) {
152 if (window.getConfig().hdpiMode == HdpiMode.Pixels) {
Lwjgl3ApplicationConfiguration.java 409 Pixels
Lwjgl3Input.java 116 if(window.getConfig().hdpiMode == HdpiMode.Pixels) {
321 if(window.getConfig().hdpiMode == HdpiMode.Pixels) {
  /external/ImageMagick/www/api/
cache.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Get or Set Image Pixels</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, get, or, set, image, pixels, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
81 <p>GetAuthenticMetacontent() returns the authentic metacontent corresponding with the last call to QueueAuthenticPixels() or GetVirtualPixels(). NULL is returned if the associated pixels are not available.</p>
103 <p>GetAuthenticPixelQueue() returns the authentic pixels associated corresponding with the last call to QueueAuthenticPixels() or GetAuthenticPixels().</p>
127 <p>The returned pointer may point to a temporary working copy of the pixels or it may point to the original pixels in memory. Performance is maximized if the selected region is part of one row, or one or more full rows, since then there is opportunity to access the pixels in-place (without a copy) if the image is in memory, or in a memory-mapped file. The returned pointer must *never* be deallocated by the user.</p>
129 <p>Pixels accessed via the returned pointer represent a simple array of type Quantum. If the image has corresponding metacontent,call GetAuthenticMetacontent() after invoking GetAuthenticPixels() to obtain the meta-content corresponding to the region. Once the Quantum array has been updated, the changes must be saved back to the underlying image using SyncAuthenticPixels() or they may be lost.</p>
151 <dd> These values define the perimeter of a region of pixels. </dd>
293 <p>GetVirtualPixelQueue() returns the virtual pixels associated corresponding with the last call to QueueAuthenticPixels() or GetVirtualPixels().</p
    [all...]
cipher.php 9 <title>ImageMagick: MagickCore, C API for ImageMagick: Convert to and from Cipher Pixels</title>
15 <meta name="keywords" content="magickcore, c, api, for, imagemagick:, convert, to, from, cipher, pixels, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
122 <p>PasskeyDecipherImage() converts cipher pixels to plain pixels.</p>
145 <dd>decipher cipher pixels with this passphrase. </dd>
149 <dd>decrypt cipher pixels with this passkey. </dd>
159 <p>PasskeyEncipherImage() converts pixels to cipher-pixels.</p>
182 <dd>encipher pixels with this passphrase. </dd>
186 <dd>decrypt cipher pixels with this passkey. </dd
    [all...]
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 187 The new format is added to the discussion of Obtaining Pixels from the
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddvdeo.h 370 UCHAR Pixels[1];
  /external/chromium-trace/catapult/telemetry/telemetry/page/
page_run_end_to_end_unittest.py 647 self.assertEquals(image_util.Pixels(chrome_version_screen_shot[0]),
648 image_util.Pixels(actual_screenshot))

Completed in 849 milliseconds