Searched refs:ImageType (Results 1 - 23 of 23) sorted by relevance

/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DImageUtils.h30 typedef ImageTypeBase *ImageType; typedef
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 rgb2gra
[all...]
H A DMosaic.h105 int addFrame(ImageType imageYVU);
112 int addFrameRGB(ImageType imageRGB);
127 ImageType getMosaic(int &width, int &height);
169 ImageType imageMosaicYVU;
187 ImageType *owned_frames;
H A DAlignFeatures.h65 int addFrameRGB(ImageType image);
66 int addFrame(ImageType image);
89 ImageType imageGray;
H A DImageUtils.cpp28 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 vim
[all...]
H A DMosaicTypes.h70 ImageType image;
98 inline ImageType getV()
106 inline ImageType getU()
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
H A DMosaic.cpp97 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)
H A DAlignFeatures.cpp98 int Align::addFrameRGB(ImageType imageRGB)
104 int Align::addFrame(ImageType imageGray_)
109 ImageType *m_rows = ImageUtils::imageTypeToRowPointers(imageGray_, width, height);
H A DPyramid.h42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 );
H A DBlend.h76 int runBlend(MosaicFrame **frames, MosaicFrame **rframes, int frames_size, ImageType &imageMosaicYVU,
H A DBlend.cpp101 ImageType &imageMosaicYVU, int &mosaicWidth, int &mosaicHeight,
333 ImageType mbY, mbU, mbV;
601 ImageType yimg;
602 ImageType uimg;
603 ImageType vimg;
649 ImageType yimg;
650 ImageType uimg;
651 ImageType vimg;
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DImageUtils.h30 typedef ImageTypeBase *ImageType; typedef
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 rgb2gra
[all...]
H A DAlignFeatures.h65 int addFrameRGB(ImageType image);
66 int addFrame(ImageType image);
89 ImageType imageGray;
H A DMosaic.h105 int addFrame(ImageType imageYVU);
112 int addFrameRGB(ImageType imageRGB);
127 ImageType getMosaic(int &width, int &height);
169 ImageType imageMosaicYVU;
H A DImageUtils.cpp28 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 vim
[all...]
H A DMosaicTypes.h70 ImageType image;
98 inline ImageType getV()
106 inline ImageType getU()
116 ImageType U = image + (width*height);
125 ImageType U = image + (width*height*2);
H A DMosaic.cpp119 int Mosaic::addFrameRGB(ImageType imageRGB)
121 ImageType imageYVU;
129 int Mosaic::addFrame(ImageType imageYVU)
221 ImageType Mosaic::getMosaic(int &width, int &height)
H A DAlignFeatures.cpp98 int Align::addFrameRGB(ImageType imageRGB)
104 int Align::addFrame(ImageType imageGray_)
109 ImageType *m_rows = ImageUtils::imageTypeToRowPointers(imageGray_, width, height);
H A DPyramid.h42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 );
H A DBlend.h76 int runBlend(MosaicFrame **frames, MosaicFrame **rframes, int frames_size, ImageType &imageMosaicYVU,
H A DBlend.cpp101 ImageType &imageMosaicYVU, int &mosaicWidth, int &mosaicHeight,
333 ImageType mbY, mbU, mbV;
594 ImageType yimg;
595 ImageType uimg;
596 ImageType vimg;
642 ImageType yimg;
643 ImageType uimg;
644 ImageType vimg;
/packages/apps/Camera/perftests/panorama/
H A Dbenchmark.cpp31 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/
H A Dfeature_mos_jni.cpp48 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 oy
[all...]
/packages/apps/LegacyCamera/jni/
H A Dfeature_mos_jni.cpp48 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 oy
[all...]

Completed in 177 milliseconds