Home
last modified time | relevance | path

Searched full:images (Results 1 – 25 of 2361) sorted by relevance

12345678910>>...95

/external/ImageMagick/MagickCore/
Dlist.c68 % AppendImageToList(Image *images,const Image *image)
72 % o images: the image list to be appended to.
77 MagickExport void AppendImageToList(Image **images,const Image *append) in AppendImageToList() argument
83 assert(images != (Image **) NULL); in AppendImageToList()
89 if ((*images) == (Image *) NULL) in AppendImageToList()
91 *images=(Image *) append; in AppendImageToList()
94 assert((*images)->signature == MagickCoreSignature); in AppendImageToList()
95 p=GetLastImageInList(*images); in AppendImageToList()
116 % Image *CloneImageList(const Image *images,ExceptionInfo *exception)
120 % o images: the image list.
[all …]
/external/ImageMagick/Magick++/demo/
Ddemo.cpp43 cout << "Read images ..." << endl; in main()
63 list<Image> images( 7, null ); in main() local
76 images.push_back( example ); in main()
81 images.push_back( example ); in main()
92 images.push_back( example ); in main()
98 images.push_back( example ); in main()
104 images.push_back( example ); in main()
111 images.push_back( example ); in main()
117 images.push_back( example ); in main()
123 images.push_back( example ); in main()
[all …]
/external/ImageMagick/PerlMagick/demo/
Ddemo.pl31 $images=Image::Magick->new();
37 push(@$images,$example);
43 push(@$images,$example);
49 push(@$images,$example);
55 push(@$images,$example);
61 push(@$images,$example);
68 push(@$images,$example);
74 push(@$images,$example);
80 push(@$images,$example);
86 push(@$images,$example);
[all …]
/external/ImageMagick/www/source/
Dexamples.pl31 $images=Image::Magick->new();
37 push(@$images,$example);
43 push(@$images,$example);
49 push(@$images,$example);
55 push(@$images,$example);
61 push(@$images,$example);
68 push(@$images,$example);
74 push(@$images,$example);
80 push(@$images,$example);
86 push(@$images,$example);
[all …]
/external/ImageMagick/www/api/
Dlist.html14images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-…
28 <link rel="icon" href="../images/wand.png"/>
29 <link rel="shortcut icon" href="../images/wand.ico"/>
68 AppendImageToList(Image *images,const Image *image)
78 <dt>images</dt>
94 Image *CloneImageList(const Image *images,ExceptionInfo *exception)
104 <dt>images</dt>
115 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of …
117images starting counting from the end of the range. Images may be refered to multiple times to clo…
119 <p>Images referenced may be reversed, and results in a clone of those images also being made with a…
[all …]
Dlist.php12images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-…
64 AppendImageToList(Image *images,const Image *image)
74 <dt>images</dt>
90 Image *CloneImageList(const Image *images,ExceptionInfo *exception)
100 <dt>images</dt>
111 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of …
113images starting counting from the end of the range. Images may be refered to multiple times to clo…
115 <p>Images referenced may be reversed, and results in a clone of those images also being made with a…
120 Image *CloneImages(const Image *images,const char *scenes,
131 <dt>images</dt>
[all …]
Dlayer.html14images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-…
28 <link rel="icon" href="../images/wand.png"/>
29 <link rel="shortcut icon" href="../images/wand.ico"/>
63images while respecting any page offsets and disposal methods. GIF, MIFF, and MNG animation seque…
104 <dt>images</dt>
117 <p>Images do NOT have to be the same size, though it is best that all the images are 'coalesced' (i…
124 Image *CompareImagesLayers(const Image *images,
140 <dd>the layers type to compare images with. Must be one of... CompareAnyLayer, CompareClearLayer, C…
206 <p>WARNING: This modifies the current images directly, rather than generate a new image sequence.</…
249 <dt>images</dt>
[all …]
/external/ImageMagick/ImageMagick/api/
Dlist.html12images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-…
64 AppendImageToList(Image *images,const Image *image)
74 <dt>images</dt>
90 Image *CloneImageList(const Image *images,ExceptionInfo *exception)
100 <dt>images</dt>
111 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of …
113images starting counting from the end of the range. Images may be refered to multiple times to clo…
115 <p>Images referenced may be reversed, and results in a clone of those images also being made with a…
120 Image *CloneImages(const Image *images,const char *scenes,
131 <dt>images</dt>
[all …]
Dlayer.html12images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, JPEG-…
59images while respecting any page offsets and disposal methods. GIF, MIFF, and MNG animation seque…
100 <dt>images</dt>
113 <p>Images do NOT have to be the same size, though it is best that all the images are 'coalesced' (i…
120 Image *CompareImagesLayers(const Image *images,
136 <dd>the layers type to compare images with. Must be one of... CompareAnyLayer, CompareClearLayer, C…
202 <p>WARNING: This modifies the current images directly, rather than generate a new image sequence.</…
245 <dt>images</dt>
256images generally represent intermediate or partial updates in GIF animations used for file optimiz…
260 <p>No warning will be given if no image was removed because all images had an appropriate non-zero …
[all …]
/external/autotest/client/cros/chameleon/
Dscreen_comparison.py27 @param output_dir: The directory for output images.
55 images = [self._capturer1.capture(), self._capturer2.capture()]
57 if None in images:
59 tags[images.index(None)])
63 # Sometimes the format of images got from X is not RGB,
66 for i, image in enumerate(images):
68 images[i] = image.convert('RGB')
74 if images[0].size != images[1].size:
75 message = ('Sizes of images %s and %s do not match: '
77 (tuple(tags) + images[0].size + images[1].size))
[all …]
/external/libxml2/doc/
DMakefile.am23 $(wildcard tutorial/images/*.png) \
24 $(wildcard tutorial/images/callouts/*.png) $(wildcard API*.html) \
190 tutorial/images/blank.png \
191 tutorial/images/callouts/1.png \
192 tutorial/images/callouts/10.png \
193 tutorial/images/callouts/2.png \
194 tutorial/images/callouts/3.png \
195 tutorial/images/callouts/4.png \
196 tutorial/images/callouts/5.png \
197 tutorial/images/callouts/6.png \
[all …]
/external/autotest/client/deps/glbench/
DUSAGE_glbench2 performance numbers to stdout and resulting images to a directory for
6 threshold, while the resulting images have to be found in a repository of
7 reference images. As the image name encodes the raw pixel MD5 this can be
44 1) first try to identify known buggy images by searching in
46 2) then identify good images by searching in
55 Handling of reference images
58 Good reference images themselves are located at ../glbench-images/glbench_reference_images/
59 Images that have outstanding defects and an open bug filed are at ../glbench-images/glbench_knownba…
60 When that bug is closed the directory should be moved to ../glbench-images/glbench_fixedbad_images/…
62 To push out new reference images place them in the appropriate
/external/ImageMagick/utilities/
DImageMagick.13 ImageMagick \- is a free software suite for the creation, modification and display of bitmap images.
9images. It can read, convert and write images in a variety of formats (about 100) including GIF, J…
13 …(Tcl/TK). With a language interface, use ImageMagick to modify or create images automagically and …
15images. Most of you are probably accustom to editing images one at a time with a graphical user in…
22 use ImageMagick utilities to convert, compose, or edit images from the command-
27 Read images into memory, and perform operations on those images, and write
61 create a composite image by combining several separate images. The images are tiled on the composit…
70 …ut image a row at a time making stream desirable when working with large images or when you requir…
DImageMagick.1.in3 ImageMagick \- is a free software suite for the creation, modification and display of bitmap images.
9images. It can read, convert and write images in a variety of formats (about 100) including GIF, J…
13 …(Tcl/TK). With a language interface, use ImageMagick to modify or create images automagically and …
15images. Most of you are probably accustom to editing images one at a time with a graphical user in…
22 use ImageMagick utilities to convert, compose, or edit images from the command-
27 Read images into memory, and perform operations on those images, and write
61 create a composite image by combining several separate images. The images are tiled on the composit…
70 …ut image a row at a time making stream desirable when working with large images or when you requir…
/external/autotest/site_utils/
Drestart_latest.py13 process only specific boards and/or a different images directory, use the -b
16 Expected images directory structure looks like:
39 # Path to Dev Server's images directory.
40 DEFAULT_IMAGES_PATH = '/usr/local/google/images'
50 ' all boards in the images directory will be processed.')
51 parser.add_option('-i', '--images', dest='images',
52 help='Path to Dev Server images directory. Defaults to %s' %
57 if not os.path.exists(options.images):
58 parser.error('The specified images directory (%s) does not exist. Please '
59 'specify another.' % options.images)
[all …]
/external/deqp/doc/testspecs/GLES31/
Dfunctional.copy_image.txt25 + 2D texture images
26 + Cube map texture images
27 + 3D texture images
28 + 2D texture array images
29 + Renderbuffer images
33 + Using images for rendering before copy
34 + Not using images for rendering before copy
48 Test creates two images and initializes them to random data. Both images have
49 always npot size and texture images are always created so that they are mipmap
59 Each test case does copying in two different ways. First they create images,
[all …]
/external/ImageMagick/MagickWand/
Dmagick-image.c78 % Image *images)
84 % o images: replace the image list with these image(s).
88 Image *images) in CloneMagickWandFromImages() argument
100 images->filename); in CloneMagickWandFromImages()
108 clone_wand->images=images; in CloneMagickWandFromImages()
144 if (wand->images == (Image *) NULL) in GetImageFromMagickWand()
150 return(wand->images); in GetImageFromMagickWand()
196 if (wand->images == (Image *) NULL) in MagickAdaptiveBlurImage()
198 sharp_image=AdaptiveBlurImage(wand->images,radius,sigma,wand->exception); in MagickAdaptiveBlurImage()
201 ReplaceImageInList(&wand->images,sharp_image); in MagickAdaptiveBlurImage()
[all …]
/external/autotest/client/site_tests/video_GlitchDetection/
Dcontrol.collect_images_chameleon7 PURPOSE = "Collect golden images to be used in video image comparison tests."
16 we use image comparison techniques. In it, we collect golden images ahead of
17 time and during a test on a build we collect test images and compare them
20 What makes the golden images golden is the build they are collected on. Other
21 the process of collecting these images is similar to what you would do to
22 collect test images. So, we are resuing the same code but using this control
23 file to only collect the images and perform no comparison.
25 To collect golden images run a command in this format:
33 After the test is completed, the images will be saved under
39 You will need to upload this text file together with the images into google
/external/vulkan-validation-layers/tests/
DREADME-raster_tests3images generated from previous runs. To generate golden images, make sure that the tests are rend…
5images to the golden images, run with --compare-images. This too will generate .ppm images for al…
/external/deqp/android/cts/nyc/
Degl-master.txt1080 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_destroy
1081 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_texture
1082 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.texsubimage2d
1083 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copytexsubimage2d
1084 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.teximage2d
1085 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copyteximage2d
1086 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_texture_render
1087 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.texsubimage2d_render
1088 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copytexsubimage2d_render
1089 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.teximage2d_render
[all …]
/external/deqp/android/cts/nyc/src/
Degl-master.txt1080 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_destroy
1081 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_texture
1082 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.texsubimage2d
1083 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copytexsubimage2d
1084 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.teximage2d
1085 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copyteximage2d
1086 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_texture_render
1087 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.texsubimage2d_render
1088 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copytexsubimage2d_render
1089 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.teximage2d_render
[all …]
/external/deqp/android/cts/master/
Degl-master.txt1081 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_destroy
1082 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_texture
1083 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.texsubimage2d
1084 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copytexsubimage2d
1085 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.teximage2d
1086 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copyteximage2d
1087 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.create_texture_render
1088 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.texsubimage2d_render
1089 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.copytexsubimage2d_render
1090 dEQP-EGL.functional.sharing.gles2.multithread.simple.images.texture_source.teximage2d_render
[all …]
/external/libvncserver/webclients/novnc/
Dvnc.html28 <link rel="apple-touch-startup-image" href="images/screen_320x460.png" />
30 <link rel="apple-touch-icon" href="images/screen_57x57.png">
32 <link rel="apple-touch-icon-precomposed" href="images/screen_57x57.png" />
52 <input type="image" alt="viewport drag" src="images/drag.png"
56 <input type="image" alt="No mousebutton" src="images/mouse_none.png"
58 <input type="image" alt="Left mousebutton" src="images/mouse_left.png"
60 <input type="image" alt="Middle mousebutton" src="images/mouse_middle.png"
62 <input type="image" alt="Right mousebutton" src="images/mouse_right.png"
64 <input type="image" alt="Keyboard" src="images/keyboard.png"
76 <input type="image" alt="Extra keys" src="images/showextrakeys.png"
[all …]
/external/skia/infra/bots/recipes/upload_dm_results.expected/
Dfailed_all.json83 "name": "find images",
95 "gs://skia-infra-gm/dm-images-v1"
97 "name": "upload images",
108 "gs://skia-infra-gm/dm-images-v1"
110 "name": "upload images (attempt 2)",
121 "gs://skia-infra-gm/dm-images-v1"
123 "name": "upload images (attempt 3)",
134 "gs://skia-infra-gm/dm-images-v1"
136 "name": "upload images (attempt 4)",
147 "gs://skia-infra-gm/dm-images-v1"
[all …]
/external/libjpeg-turbo/testimages/
Dnightshot_iso_100.txt7 The images historically used for compression research (lena, barbra, pepper etc...) have outlived t…
9images have been carefully selected to aid in image compression algorithm research and evaluation.…
11 Images are available without any prohibitive copyright restrictions.
13 These images are (c) there respective owners. You are granted full redistribution and publication r…
20images, running all the various tests etc... Thanks to Pete Fraser, Tony Story, Wayne J. Cosshall,…

12345678910>>...95