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

/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/webkit/Source/WebCore/platform/graphics/
H A DImage.cpp28 #include "Image.h"
45 Image::Image(ImageObserver* observer) function in class:WebCore::Image
50 Image::~Image()
54 Image* Image::nullImage()
57 DEFINE_STATIC_LOCAL(RefPtr<Image>, nullImage, (BitmapImage::create()));;
61 bool Image::supportsType(const String& type)
66 bool Image
[all...]
H A DImage.h78 class Image : public RefCounted<Image> { class in namespace:WebCore
83 virtual ~Image();
85 static PassRefPtr<Image> create(ImageObserver* = 0);
86 static PassRefPtr<Image> loadPlatformResource(const char* name);
95 static Image* nullImage();
155 static PassRefPtr<Image> loadPlatformThemeIcon(const char* name, int size);
162 Image(ImageObserver* = 0);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTilePainter.h45 enum SurfaceType { Painted, Image }; enumerator in enum:WebCore::TilePainter::SurfaceType
/external/giflib/
H A Dgifalloc.c219 ApplyTranslation(SavedImage * Image, argument
223 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
226 Image->RasterBits[i] = Translation[Image->RasterBits[i]];
283 FreeExtension(SavedImage * Image) argument
287 if ((Image == NULL) || (Image->ExtensionBlocks == NULL)) {
290 for (ep = Image->ExtensionBlocks;
291 ep < (Image
[all...]
H A Dgif_lib.h90 GifImageDesc Image; /* Block describing current image */ member in struct:GifFileType
295 extern void ApplyTranslation(SavedImage * Image, GifPixelType Translation[]);
299 extern void FreeExtension(SavedImage * Image);
313 extern void DrawGifText(SavedImage * Image,
315 extern void DrawGifText(SavedImage * Image,
320 extern void DrawBox(SavedImage * Image,
324 void DrawRectangle(SavedImage * Image,
328 extern void DrawBoxedText(SavedImage * Image,
/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/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DTexture.h104 struct Image struct in class:gl::Texture
106 Image();
107 ~Image();
120 void setImage(GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img);
121 bool subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img);
122 void setCompressedImage(GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *img);
123 bool subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *img);
124 void copyNonRenderable(Image *image, GLenum internalFormat, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, IDirect3DSurface9 *renderTarget);
141 void createSurface(GLsizei width, GLsizei height, GLenum format, GLenum type, Image *img);
247 Image mImageArra
[all...]
H A DTexture.cpp27 Texture::Image::Image() function in class:gl::Texture::Image
32 Texture::Image::~Image()
207 // Selects an internal Direct3D 9 format for storing an Image
735 void Texture::createSurface(GLsizei width, GLsizei height, GLenum format, GLenum type, Image *img)
783 void Texture::setImage(GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img)
809 void Texture::setCompressedImage(GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *img)
832 bool Texture::subImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, GLint unpackAlignment, const void *pixels, Image *img)
867 bool Texture::subImageCompressed(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *pixels, Image *im
[all...]
/external/skia/src/images/
H A DSkImageDecoder_libgif.cpp100 void CheckFreeExtension(SavedImage* Image) { argument
101 if (Image->ExtensionBlocks) {
102 FreeExtension(Image);
108 const ColorMapObject* cmap = gif->Image.ColorMap;
281 if (gif->Image.Interlace)
/external/webkit/Source/WebCore/inspector/front-end/
H A DResource.js43 Image: 2,
62 case this.Image:
63 return WebInspector.UIString("Image");
87 case this.Image:
388 case WebInspector.Resource.Type.Image:
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp68 class Image { class
70 Image() function in class:Image
74 Image(const Image& image) function in class:Image
155 float percentageDifferent(const Image& baseline, const Image& actual)
211 Image actualImage;
212 Image baselineImage;
241 Image actualImage;
242 Image baselineImag
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java45 * <code>Image</code> defines a data format for a graphical image. The image
52 * @version $Id: Image.java 4131 2009-03-19 20:15:28Z blaine.dev $
54 public class Image extends NativeObject implements Savable /*, Cloneable*/ { class in inherits:NativeObject,Savable
334 return new Image(id);
341 public Image clone(){
342 Image clone = (Image) super.clone();
350 * Constructor instantiates a new <code>Image</code> object. All values
353 public Image() { method in class:Image
354 super(Image
358 protected Image(int id){ method in class:Image
377 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data, method in class:Image
409 public Image(Format format, int width, int height, ByteBuffer data, method in class:Image
441 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data) { method in class:Image
458 public Image(Format format, int width, int height, ByteBuffer data) { method in class:Image
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jai.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1249 milliseconds