/external/ImageMagick/MagickCore/ |
D | list.c | 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() 125 MagickExport Image *CloneImageList(const Image *images,ExceptionInfo *exception) in CloneImageList() argument 134 if (images == (Image *) NULL) in CloneImageList() 136 assert(images->signature == MagickCoreSignature); in CloneImageList() 137 while (images->previous != (Image *) NULL) in CloneImageList() [all …]
|
/external/ImageMagick/PerlMagick/demo/ |
D | demo.pl | 31 $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/ |
D | examples.pl | 31 $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/skia/gyp/ |
D | images.gyp | 6 # GYP file for images project. 10 'target_name': 'images', 24 '../include/images', 33 '../include/images/SkForceLinking.h', 34 '../src/images/SkJpegUtility.h', 35 '../include/images/SkMovie.h', 36 '../include/images/SkPageFlipper.h', 38 '../src/images/bmpdecoderhelper.cpp', 39 '../src/images/bmpdecoderhelper.h', 41 '../src/images/SkForceLinking.cpp', [all …]
|
/external/ImageMagick/Magick++/demo/ |
D | demo.cpp | 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() 129 images.push_back( example ); in main() [all …]
|
/external/ImageMagick/MagickWand/ |
D | magick-image.c | 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() 241 if (wand->images == (Image *) NULL) in MagickAdaptiveResizeImage() 243 resize_image=AdaptiveResizeImage(wand->images,columns,rows,wand->exception); in MagickAdaptiveResizeImage() [all …]
|
D | magick-wand.c | 84 wand->images=DestroyImageList(wand->images); in ClearMagickWand() 134 clone_wand->images=CloneImageList(wand->images,clone_wand->exception); in CloneMagickWand() 172 wand->images=DestroyImageList(wand->images); in DestroyMagickWand() 368 if (wand->images == (Image *) NULL) in MagickGetIteratorIndex() 374 return(GetImageIndexInList(wand->images)); in MagickGetIteratorIndex() 532 if (wand->images == (Image *) NULL) in MagickQueryFontMetrics() 549 status=GetTypeMetrics(wand->images,draw_info,&metrics,wand->exception); in MagickQueryFontMetrics() 639 if (wand->images == (Image *) NULL) in MagickQueryMultilineFontMetrics() 656 status=GetMultilineTypeMetrics(wand->images,draw_info,&metrics, in MagickQueryMultilineFontMetrics() 829 wand->images=GetFirstImageInList(wand->images); in MagickResetIterator() [all …]
|
/external/autotest/client/tests/kvm/ |
D | guest-os.cfg.sample | 63 images += " stg24 stg25 stg26 stg27" 92 boot_path = "images/pxeboot" 108 #floppy = images/f8-32/ks.vfd 109 cdrom_unattended = images/f8-32/ks.iso 110 kernel = images/f8-32/vmlinuz 111 initrd = images/f8-32/initrd.img 127 #floppy = images/f8-64/ks.vfd 128 cdrom_unattended = images/f8-64/ks.iso 129 kernel = images/f8-64/vmlinuz 130 initrd = images/f8-64/initrd.img [all …]
|
/external/opencv3/modules/photo/src/ |
D | calibrate.cpp | 66 std::vector<Mat> images; in process() local 67 src.getMatVector(images); in process() 70 CV_Assert(images.size() == times.total()); in process() 71 checkImageDimensions(images); in process() 72 CV_Assert(images[0].depth() == CV_8U); in process() 74 int channels = images[0].channels(); in process() 83 sample_points.push_back(Point(rand() % images[0].cols, rand() % images[0].rows)); in process() 86 … x_points = static_cast<int>(sqrt(static_cast<double>(samples) * images[0].cols / images[0].rows)); in process() 88 int step_x = images[0].cols / x_points; in process() 89 int step_y = images[0].rows / y_points; in process() [all …]
|
D | merge.cpp | 61 std::vector<Mat> images; in process() local 62 src.getMatVector(images); in process() 65 CV_Assert(images.size() == times.total()); in process() 66 checkImageDimensions(images); in process() 67 CV_Assert(images[0].depth() == CV_8U); in process() 69 int channels = images[0].channels(); in process() 70 Size size = images[0].size(); in process() 73 dst.create(images[0].size(), CV_32FCC); in process() 94 for(size_t i = 0; i < images.size(); i++) { in process() 96 split(images[i], splitted); in process() [all …]
|
D | hdr_common.cpp | 49 void checkImageDimensions(const std::vector<Mat>& images) in checkImageDimensions() argument 51 CV_Assert(!images.empty()); in checkImageDimensions() 52 int width = images[0].cols; in checkImageDimensions() 53 int height = images[0].rows; in checkImageDimensions() 54 int type = images[0].type(); in checkImageDimensions() 56 for(size_t i = 0; i < images.size(); i++) { in checkImageDimensions() 57 CV_Assert(images[i].cols == width && images[i].rows == height); in checkImageDimensions() 58 CV_Assert(images[i].type() == type); in checkImageDimensions()
|
/external/autotest/client/cros/chameleon/ |
D | screen_comparison.py | 51 images = [self._capturer1.capture(), self._capturer2.capture()] 53 if None in images: 55 tags[images.index(None)]) 62 for i, image in enumerate(images): 64 images[i] = image.convert('RGB') 70 if images[0].size != images[1].size: 73 (tuple(tags) + images[0].size + images[1].size)) 77 size = images[0].size[0] * images[0].size[1] 81 diff_image = ImageChops.difference(*images) 89 prefix_str = '%s-%dx%d' % ((time_str,) + images[0].size) [all …]
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/theme/chrome/public/gwt/chrome/ |
D | chrome_rtl.css | 34 background: url("images/hborder.png") repeat-x 0px -27px; 61 background: url(images/hborder.png) repeat-x; 65 background: url(images/vborder.png) repeat-y; 76 background: url(images/corner.png) no-repeat 0px 0px; 77 -background: url(images/corner_ie6.png) no-repeat 0px 0px; 80 background: url(images/corner.png) no-repeat -5px 0px; 81 -background: url(images/corner_ie6.png) no-repeat -5px 0px; 84 background: url(images/corner.png) no-repeat 0px -5px; 85 -background: url(images/corner_ie6.png) no-repeat 0px -5px; 88 background: url(images/corner.png) no-repeat -5px -5px; [all …]
|
D | chrome.css | 34 background: url("images/hborder.png") repeat-x 0px -27px; 61 background: url(images/hborder.png) repeat-x; 65 background: url(images/vborder.png) repeat-y; 76 background: url(images/corner.png) no-repeat 0px 0px; 77 -background: url(images/corner_ie6.png) no-repeat 0px 0px; 80 background: url(images/corner.png) no-repeat -5px 0px; 81 -background: url(images/corner_ie6.png) no-repeat -5px 0px; 84 background: url(images/corner.png) no-repeat 0px -5px; 85 -background: url(images/corner_ie6.png) no-repeat 0px -5px; 88 background: url(images/corner.png) no-repeat -5px -5px; [all …]
|
/external/opencv3/modules/photo/test/ |
D | test_hdr.cpp | 61 void loadExposureSeq(String path, vector<Mat>& images, vector<float>& times = DEFAULT_VECTOR) in loadExposureSeq() argument 70 images.push_back(img); in loadExposureSeq() 159 vector<Mat> images; in TEST() local 160 loadExposureSeq((test_path + "exposures/").c_str() , images); in TEST() 166 merge->process(images, result); in TEST() 173 images.clear(); in TEST() 174 images.push_back(uniform); in TEST() 176 merge->process(images, result); in TEST() 185 vector<Mat> images; in TEST() local 188 loadExposureSeq(test_path + "exposures/", images, times); in TEST() [all …]
|
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/ |
D | jquery.treeview.css | 14 background: url(images/treeview-default.gif) -64px -25px no-repeat; 41 .treeview li { background: url(images/treeview-default-line.gif) 0 0 no-repeat; } 47 .treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(images/treeview-d… 53 .treeview-red li { background-image: url(images/treeview-red-line.gif); } 54 …lastCollapsable, .treeview-red li.lastExpandable { background-image: url(images/treeview-red.gif);… 56 .treeview-black li { background-image: url(images/treeview-black-line.gif); } 57 …stCollapsable, .treeview-black li.lastExpandable { background-image: url(images/treeview-black.gif… 59 .treeview-gray li { background-image: url(images/treeview-gray-line.gif); } 60 …astCollapsable, .treeview-gray li.lastExpandable { background-image: url(images/treeview-gray.gif)… 62 .treeview-famfamfam li { background-image: url(images/treeview-famfamfam-line.gif); } [all …]
|
/external/libxml2/doc/ |
D | Makefile.am | 23 $(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/opencv3/modules/stitching/src/ |
D | exposure_compensate.cpp | 61 void ExposureCompensator::feed(const std::vector<Point> &corners, const std::vector<UMat> &images, in feed() argument 67 feed(corners, images, level_masks); in feed() 71 void GainCompensator::feed(const std::vector<Point> &corners, const std::vector<UMat> &images, in feed() argument 79 CV_Assert(corners.size() == images.size() && images.size() == masks.size()); in feed() 81 const int num_images = static_cast<int>(images.size()); in feed() 94 if (overlapRoi(corners[i], corners[j], images[i].size(), images[j].size(), roi)) in feed() 96 … subimg1 = images[i](Rect(roi.tl() - corners[i], roi.br() - corners[i])).getMat(ACCESS_READ); in feed() 97 … subimg2 = images[j](Rect(roi.tl() - corners[j], roi.br() - corners[j])).getMat(ACCESS_READ); in feed() 163 void BlocksGainCompensator::feed(const std::vector<Point> &corners, const std::vector<UMat> &images, in feed() argument 166 CV_Assert(corners.size() == images.size() && images.size() == masks.size()); in feed() [all …]
|
/external/vulkan-validation-layers/tests/ |
D | README-raster_tests | 3 …images generated from previous runs. To generate golden images, make sure that the tests are rend… 5 …images to the golden images, run with --compare-images. This too will generate .ppm images for al…
|
/external/opencv3/samples/cpp/tutorial_code/photo/hdr_imaging/ |
D | hdr_imaging.cpp | 15 vector<Mat> images; in main() local 17 loadExposureSeq(argv[1], images, times); in main() 21 calibrate->process(images, response, times); in main() 25 merge_debevec->process(images, hdr, times, response); in main() 33 merge_mertens->process(images, fusion); in main() 42 void loadExposureSeq(String path, vector<Mat>& images, vector<float>& times) in loadExposureSeq() argument 50 images.push_back(img); in loadExposureSeq()
|
/external/opencv3/samples/cpp/ |
D | pca.cpp | 54 static void read_imgList(const string& filename, vector<Mat>& images) { in read_imgList() argument 62 images.push_back(imread(line, 0)); in read_imgList() 133 vector<Mat> images; in main() local 137 read_imgList(imgList, images); in main() 144 if(images.size() <= 1) { in main() 150 Mat data = formatImagesForPCA(images); in main() 158 …reconstruction = reconstruction.reshape(images[0].channels(), images[0].rows); // reshape from a r… in main() 168 p.ch = images[0].channels(); in main() 169 p.rows = images[0].rows; in main()
|
/external/autotest/client/deps/glbench/ |
D | USAGE_glbench | 2 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/opencv3/modules/features2d/src/ |
D | feature2d.cpp | 76 vector<Mat> images, masks; in detect() local 78 _images.getMatVector(images); in detect() 79 size_t i, nimages = images.size(); in detect() 91 detect(images[i], keypoints[i], masks.empty() ? Mat() : masks[i] ); in detect() 120 vector<Mat> images; in compute() local 122 _images.getMatVector(images); in compute() 123 size_t i, nimages = images.size(); in compute() 133 compute(images[i], keypoints[i], descriptors[i]); in compute()
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.copy_image.txt | 25 + 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/autotest/client/site_tests/video_GlitchDetection/ |
D | control.collect_images_chameleon | 7 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
|