HomeSort by relevance Sort by last modified time
    Searched refs:ImageType (Results 1 - 25 of 39) sorted by null

1 2

  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.h 30 typedef ImageTypeBase *ImageType;
62 static void rgb2yvu(ImageType out, ImageType in, int width, int height);
64 static void rgba2yvu(ImageType out, ImageType in, int width, int height);
76 static void yvu2rgb(ImageType out, ImageType in, int width, int height);
77 static void yvu2bgr(ImageType out, ImageType in, int width, int height);
91 static ImageType rgb2gray(ImageType in, int width, int height)
    [all...]
Mosaic.h 105 int addFrame(ImageType imageYVU);
112 int addFrameRGB(ImageType imageRGB);
127 ImageType getMosaic(int &width, int &height);
169 ImageType imageMosaicYVU;
187 ImageType *owned_frames;
AlignFeatures.h 65 int addFrameRGB(ImageType image);
66 int addFrame(ImageType image);
89 ImageType imageGray;
ImageUtils.cpp 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height)
31 ImageType yimg = out;
32 ImageType vimg = yimg + width*height;
33 ImageType uimg = vimg + width*height;
34 ImageType image = in;
73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height)
76 ImageType yimg = out;
77 ImageType vimg = yimg + width*height
    [all...]
MosaicTypes.h 70 ImageType image;
98 inline ImageType getV()
106 inline ImageType getU()
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
Mosaic.cpp 97 owned_frames = new ImageType[max_frames];
124 int Mosaic::addFrameRGB(ImageType imageRGB)
126 ImageType imageYVU;
142 int Mosaic::addFrame(ImageType imageYVU)
234 ImageType Mosaic::getMosaic(int &width, int &height)
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
ImageUtils.h 30 typedef ImageTypeBase *ImageType;
62 static void rgb2yvu(ImageType out, ImageType in, int width, int height);
64 static void rgba2yvu(ImageType out, ImageType in, int width, int height);
76 static void yvu2rgb(ImageType out, ImageType in, int width, int height);
77 static void yvu2bgr(ImageType out, ImageType in, int width, int height);
91 static ImageType rgb2gray(ImageType in, int width, int height)
    [all...]
Mosaic.h 105 int addFrame(ImageType imageYVU);
112 int addFrameRGB(ImageType imageRGB);
127 ImageType getMosaic(int &width, int &height);
169 ImageType imageMosaicYVU;
187 ImageType *owned_frames;
AlignFeatures.h 65 int addFrameRGB(ImageType image);
66 int addFrame(ImageType image);
89 ImageType imageGray;
ImageUtils.cpp 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height)
31 ImageType yimg = out;
32 ImageType vimg = yimg + width*height;
33 ImageType uimg = vimg + width*height;
34 ImageType image = in;
73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height)
76 ImageType yimg = out;
77 ImageType vimg = yimg + width*height
    [all...]
MosaicTypes.h 70 ImageType image;
98 inline ImageType getV()
106 inline ImageType getU()
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
Mosaic.cpp 97 owned_frames = new ImageType[max_frames];
124 int Mosaic::addFrameRGB(ImageType imageRGB)
126 ImageType imageYVU;
142 int Mosaic::addFrame(ImageType imageYVU)
234 ImageType Mosaic::getMosaic(int &width, int &height)
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
ImageUtils.h 30 typedef ImageTypeBase *ImageType;
62 static void rgb2yvu(ImageType out, ImageType in, int width, int height);
64 static void rgba2yvu(ImageType out, ImageType in, int width, int height);
76 static void yvu2rgb(ImageType out, ImageType in, int width, int height);
77 static void yvu2bgr(ImageType out, ImageType in, int width, int height);
91 static ImageType rgb2gray(ImageType in, int width, int height)
    [all...]
AlignFeatures.h 65 int addFrameRGB(ImageType image);
66 int addFrame(ImageType image);
89 ImageType imageGray;
Mosaic.h 105 int addFrame(ImageType imageYVU);
112 int addFrameRGB(ImageType imageRGB);
127 ImageType getMosaic(int &width, int &height);
169 ImageType imageMosaicYVU;
ImageUtils.cpp 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height)
31 ImageType yimg = out;
32 ImageType vimg = yimg + width*height;
33 ImageType uimg = vimg + width*height;
34 ImageType image = in;
73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height)
76 ImageType yimg = out;
77 ImageType vimg = yimg + width*height
    [all...]
MosaicTypes.h 70 ImageType image;
98 inline ImageType getV()
106 inline ImageType getU()
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
Mosaic.cpp 119 int Mosaic::addFrameRGB(ImageType imageRGB)
121 ImageType imageYVU;
129 int Mosaic::addFrame(ImageType imageYVU)
221 ImageType Mosaic::getMosaic(int &width, int &height)
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
ImageLoader.java 67 Image result = this.loadImage(inputStream, ImageType.AWT, flipY);
71 result = this.loadImage(inputStream, ImageType.TGA, flipY);
76 result = this.loadImage(inputStream, ImageType.DDS, flipY);
91 * @param imageType
92 * the type of the image {@link ImageType}
97 public Image loadImage(InputStream inputStream, ImageType imageType, boolean flipY) {
99 switch (imageType) {
122 throw new IllegalStateException("Unknown image type: " + imageType);
132 private static enum ImageType {
    [all...]
  /packages/apps/Camera/perftests/panorama/
benchmark.cpp 31 ImageType yvuFrames[MAX_FRAMES];
42 ImageType rgbFrame = ImageUtils::readBinaryPPM(filename, width, height);
99 ImageType resultYVU = mosaic.getMosaic(mosaicWidth, mosaicHeight);
101 ImageType imageRGB = ImageUtils::allocateImage(
  /packages/apps/Gallery2/perftests/panorama/
benchmark.cpp 31 ImageType yvuFrames[MAX_FRAMES];
42 ImageType rgbFrame = ImageUtils::readBinaryPPM(filename, width, height);
99 ImageType resultYVU = mosaic.getMosaic(mosaicWidth, mosaicHeight);
101 ImageType imageRGB = ImageUtils::allocateImage(
  /packages/apps/Camera/jni/
feature_mos_jni.cpp 48 ImageType tImage[NR][MAX_FRAMES];// = {{ImageUtils::IMAGE_TYPE_NOIMAGE}}; // YVU24 format image
50 ImageType resultYVU = ImageUtils::IMAGE_TYPE_NOIMAGE;
51 ImageType resultBGR = ImageUtils::IMAGE_TYPE_NOIMAGE;
121 void GenerateQuarterResImagePlanar(ImageType im, int input_w, int input_h,
122 ImageType &out)
124 ImageType imp;
125 ImageType outp;
209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height)
213 ImageType oyp = yvu24
    [all...]
  /packages/apps/Gallery2/jni_mosaic/
feature_mos_jni.cpp 48 ImageType tImage[NR][MAX_FRAMES];// = {{ImageUtils::IMAGE_TYPE_NOIMAGE}}; // YVU24 format image
50 ImageType resultYVU = ImageUtils::IMAGE_TYPE_NOIMAGE;
51 ImageType resultBGR = ImageUtils::IMAGE_TYPE_NOIMAGE;
121 void GenerateQuarterResImagePlanar(ImageType im, int input_w, int input_h,
122 ImageType &out)
124 ImageType imp;
125 ImageType outp;
209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height)
213 ImageType oyp = yvu24
    [all...]
  /packages/apps/LegacyCamera/jni/
feature_mos_jni.cpp 48 ImageType tImage[NR][MAX_FRAMES];// = {{ImageUtils::IMAGE_TYPE_NOIMAGE}}; // YVU24 format image
50 ImageType resultYVU = ImageUtils::IMAGE_TYPE_NOIMAGE;
51 ImageType resultBGR = ImageUtils::IMAGE_TYPE_NOIMAGE;
121 void GenerateQuarterResImagePlanar(ImageType im, int input_w, int input_h,
122 ImageType &out)
124 ImageType imp;
125 ImageType outp;
209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height)
213 ImageType oyp = yvu24
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/ico/
ICOImageDecoder.h 61 enum ImageType {
118 ImageType imageTypeAtIndex(size_t);

Completed in 438 milliseconds

1 2