Searched defs:Image (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/tools/site_compare/operators/
H A Dequals.py7 from PIL import Image namespace
25 im1 = Image.open(file1)
26 im2 = Image.open(file2)
H A Dequals_with_mask.py7 from PIL import Image namespace
34 im1 = Image.open(file1)
35 im2 = Image.open(file2)
46 mask = Image.open(maskfile)
/external/opencv/cvaux/src/
H A Dcvfindface.cpp48 CvSeq * cvFindFace(IplImage * Image,CvMemStorage* lpStorage) argument
52 FD.FindFace(Image);
56 }//cvFindFace(IplImage * Image)
58 CvSeq * cvPostBoostingFindFace(IplImage * Image,CvMemStorage* lpStorage) argument
62 FD.FindFace(Image);
67 }//cvPostBoostingFindFace(IplImage * Image)
H A Dcvface.cpp297 void RFace::Show(IplImage * Image) argument
308 cvRectangle(Image,p1,p2,CV_RGB(255,0,0),1);
313 }//void RFace::Show(IplImage * Image)
315 void RFace::ShowIdeal(IplImage* Image) argument
322 cvRectangle(Image,p1,p2,CV_RGB(0,0,255),1);
324 }//void RFace::ShowIdeal(IplImage* Image)
/external/chromium_org/printing/
H A Dimage.cc20 Image::Image(const base::FilePath& path) function in class:printing::Image
40 Image::Image(const Metafile& metafile) function in class:printing::Image
46 Image::Image(const Image& image) function in class:printing::Image
53 Image::~Image() {}
55 std::string Image
[all...]
H A Dimage.h26 class PRINTING_EXPORT Image { class in namespace:printing
31 explicit Image(const base::FilePath& path);
35 explicit Image(const Metafile& metafile);
38 explicit Image(const Image& image);
40 ~Image();
53 double PercentageDifferent(const Image& rhs) const;
74 Image(const void* data, size_t size);
96 Image& operator=(const Image
[all...]
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
H A DImage.h7 // Image.h: Defines the rx::Image class, an abstract base class for the
27 class Image class in namespace:rx
30 Image();
31 virtual ~Image() {};
126 DISALLOW_COPY_AND_ASSIGN(Image);
H A DImage.cpp8 // Image.h: Implements the rx::Image class, an abstract base class for the
12 #include "libGLESv2/renderer/Image.h"
17 Image::Image() function in class:rx::Image
25 void Image::loadAlphaDataToBGRA(GLsizei width, GLsizei height,
45 void Image::loadAlphaDataToNative(GLsizei width, GLsizei height,
59 void Image::loadAlphaFloatDataToRGBA(GLsizei width, GLsizei height,
79 void Image::loadAlphaHalfFloatDataToRGBA(GLsizei width, GLsizei height,
99 void Image
[all...]
/external/chromium_org/chrome/test/functional/ispy/ispy_core/tools/
H A Dimage_tools.py9 from PIL import Image namespace
59 image_mask = Image.new('RGBA', image1.size, (0, 0, 0, 255))
62 image_diff = Image.new('RGBA', image1.size, (0, 0, 0, 255))
99 mask = Image.new('RGBA', images[0].size, (0, 0, 0, 255))
130 image = Image.new('RGBA', masks[0].size, black)
173 image: the RGBA PIL.Image mask to inflate.
177 A RGBA PIL.Image.
179 inflated = Image.new('RGBA', image.size)
233 image_mask = Image.new('RGBA', image1.size, (0, 0, 0, 255))
299 return Image
[all...]
H A Dimage_tools_unittest.py6 from PIL import Image namespace
11 return Image.new('RGBA', size, color)
152 cross_image = Image.new('RGBA', (3, 3))
153 white_image = Image.new('RGBA', (3, 3))
154 dot_image = Image.new('RGBA', (3, 3))
H A Drendering_test_manager_unittest.py5 from PIL import Image namespace
21 self.white = Image.new('RGB', (25, 25), (255, 255, 255))
22 self.red = Image.new('RGB', (25, 25), (255, 0, 0))
23 self.black = Image.new('RGB', (25, 25), (0, 0, 0))
/external/chromium_org/ui/gfx/image/
H A Dimage.h5 // An Image wraps an image any flavor, be it platform-native GdkBitmap/NSImage,
11 // tied to the lifetime of the Image's internal storage. To allow Images to be
17 // Attempting to use an empty Image will result in a crash.
56 class UI_EXPORT Image { class in namespace:gfx
70 Image();
74 explicit Image(const std::vector<ImagePNGRep>& image_reps);
78 explicit Image(const ImageSkia& image);
82 explicit Image(GdkPixbuf* pixbuf);
85 explicit Image(UIImage* image);
90 explicit Image(NSImag
[all...]
H A Dimage.cc194 // An ImageRep is the object that holds the backing memory for an Image. Each
201 explicit ImageRep(Image::RepresentationType rep) : type_(rep) {}
208 CHECK_EQ(type_, Image::kImageRepPNG);
213 CHECK_EQ(type_, Image::kImageRepSkia);
219 CHECK_EQ(type_, Image::kImageRepGdk);
224 CHECK_EQ(type_, Image::kImageRepCairo);
231 CHECK_EQ(type_, Image::kImageRepCocoaTouch);
236 CHECK_EQ(type_, Image::kImageRepCocoa);
241 Image::RepresentationType type() const { return type_; }
248 Image
525 Image::Image() { function in class:gfx::Image
529 Image::Image(const std::vector<ImagePNGRep>& image_reps) { function in class:gfx::Image
545 Image::Image(const ImageSkia& image) { function in class:gfx::Image
555 Image::Image(GdkPixbuf* pixbuf) { function in class:gfx::Image
565 Image::Image(UIImage* image) function in class:gfx::Image
573 Image::Image(NSImage* image) { function in class:gfx::Image
582 Image::Image(const Image& other) : storage_(other.storage_) { function in class:gfx::Image
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShapeValue.h45 Image enumerator in enum:WebCore::ShapeValue::ShapeValueType
84 : m_type(Image)
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DImage.cpp28 #include "core/platform/graphics/Image.h"
51 Image::Image(ImageObserver* observer) function in class:WebCore::Image
56 Image::~Image()
60 Image* Image::nullImage()
63 DEFINE_STATIC_LOCAL(RefPtr<Image>, nullImage, (BitmapImage::create()));;
67 PassRefPtr<Image> Image
[all...]
H A DImage.h54 class Image : public RefCounted<Image> { class in namespace:WebCore
61 virtual ~Image();
63 static PassRefPtr<Image> loadPlatformResource(const char* name);
74 static Image* nullImage();
122 Image(ImageObserver* = 0);
/external/chromium_org/tools/site_compare/commands/
H A Dmaskmaker.py19 from PIL import Image namespace
146 mask = Image.open(mask_filename)
157 mask = Image.new("1", size, 1)
173 baseline = Image.open(os.path.join(mask_scrape_dir, mask_scrapes[0]))
193 scrape = Image.open(mask_scrape_filename)
/external/giflib/
H A Dgifalloc.c204 GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]) argument
207 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
210 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
269 Image block allocation functions
304 * we want to free the last Image it's convenient to do it here.
H A Dgif_lib.h77 GifImageDesc Image; /* Current image (low-level API) */ member in struct:GifFileType
78 SavedImage *SavedImages; /* Image sequence (high-level API) */
248 extern void GifApplyTranslation(SavedImage *Image, GifPixelType Translation[]);
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxvideo.h58 unsigned char * Image ; member in struct:SDL_PrivateVideoData
80 #define SDL_Image (this -> hidden -> Image)
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libgif.cpp100 void CheckFreeExtension(SavedImage* Image) { argument
101 if (Image->ExtensionBlocks) {
103 FreeExtension(Image);
105 GifFreeExtensions(&Image->ExtensionBlockCount, &Image->ExtensionBlocks);
112 const ColorMapObject* cmap = gif->Image.ColorMap;
285 if (gif->Image.Interlace)
/external/skia/src/images/
H A DSkImageDecoder_libgif.cpp100 void CheckFreeExtension(SavedImage* Image) { argument
101 if (Image->ExtensionBlocks) {
103 FreeExtension(Image);
105 GifFreeExtensions(&Image->ExtensionBlockCount, &Image->ExtensionBlocks);
112 const ColorMapObject* cmap = gif->Image.ColorMap;
285 if (gif->Image.Interlace)
/external/chromium_org/cc/test/
H A Dtest_web_graphics_context_3d.h225 struct Image { struct in class:cc::TestWebGraphicsContext3D
226 Image();
227 ~Image();
232 DISALLOW_COPY_AND_ASSIGN(Image);
245 ScopedPtrHashMap<unsigned, Image> images;
/external/chromium_org/tools/imagediff/
H A Dimage_diff.cc46 class Image { class
48 Image() : w_(0), h_(0) { function in class:Image
51 Image(const Image& image) function in class:Image
142 float PercentageDifferent(const Image& baseline, const Image& actual) {
196 Image actual_image;
197 Image baseline_image;
269 bool CreateImageDiff(const Image& image1, const Image
[all...]
/external/chromium_org/skia/ext/
H A Dvector_canvas_unittest.cc84 class Image { class in namespace:skia::__anon9965
87 explicit Image(const base::FilePath& filename) : ignore_alpha_(true) { function in class:skia::__anon9965::Image
100 Image(skia::PlatformCanvas& canvas) : ignore_alpha_(true) { function in class:skia::__anon9965::Image
119 Image(const SkBitmap& bitmap) : ignore_alpha_(true) { function in class:skia::__anon9965::Image
147 double PercentageDifferent(const Image& rhs) const {
212 DISALLOW_COPY_AND_ASSIGN(Image);
292 Image image1(canvas);
293 Image image2(test_file(filename));
301 Image(canvas).SaveToFile(test_file(filename));
353 inline std::ostream& operator<<(std::ostream& out, const Image
[all...]

Completed in 660 milliseconds

12