Searched refs:ImageType (Results 1 – 11 of 11) sorted by relevance
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
D | ImageUtils.h | 30 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 rgb2gray(ImageType in, int width, int height); 92 static ImageType rgb2gray(ImageType out, ImageType in, int width, int height); 97 static ImageType readBinaryPPM(const char *filename, int &width, int &height); 102 …static void writeBinaryPPM(ImageType image, const char *filename, int width, int height, int numCh… 107 static ImageType allocateImage(int width, int height, int numChannels, short int border = 0); [all …]
|
D | ImageUtils.cpp | 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height) in rgba2yvu() 31 ImageType yimg = out; in rgba2yvu() 32 ImageType vimg = yimg + width*height; in rgba2yvu() 33 ImageType uimg = vimg + width*height; in rgba2yvu() 34 ImageType image = in; in rgba2yvu() 73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height) in rgb2yvu() 76 ImageType yimg = out; in rgb2yvu() 77 ImageType vimg = yimg + width*height; in rgb2yvu() 78 ImageType uimg = vimg + width*height; in rgb2yvu() 79 ImageType image = in; in rgb2yvu() [all …]
|
D | MosaicTypes.h | 70 ImageType image; 98 inline ImageType getV() in getV() 106 inline ImageType getU() in getU() 116 ImageType U = image + (width*height); in getV() 125 ImageType U = image + (width*height*2); in getU()
|
D | Mosaic.h | 105 int addFrame(ImageType imageYVU); 112 int addFrameRGB(ImageType imageRGB); 127 ImageType getMosaic(int &width, int &height); 169 ImageType imageMosaicYVU;
|
D | AlignFeatures.h | 65 int addFrameRGB(ImageType image); 66 int addFrame(ImageType image); 89 ImageType imageGray;
|
D | Mosaic.cpp | 119 int Mosaic::addFrameRGB(ImageType imageRGB) in addFrameRGB() 121 ImageType imageYVU; in addFrameRGB() 129 int Mosaic::addFrame(ImageType imageYVU) in addFrame() 221 ImageType Mosaic::getMosaic(int &width, int &height) in getMosaic()
|
D | AlignFeatures.cpp | 98 int Align::addFrameRGB(ImageType imageRGB) in addFrameRGB() 104 int Align::addFrame(ImageType imageGray_) in addFrame() 109 ImageType *m_rows = ImageUtils::imageTypeToRowPointers(imageGray_, width, height); in addFrame()
|
D | Blend.cpp | 101 ImageType &imageMosaicYVU, int &mosaicWidth, int &mosaicHeight, in runBlend() 333 ImageType mbY, mbU, mbV; in FillFramePyramid() 594 ImageType yimg; in CropFinalMosaic() 595 ImageType uimg; in CropFinalMosaic() 596 ImageType vimg; in CropFinalMosaic() 642 ImageType yimg; in PerformFinalBlending() 643 ImageType uimg; in PerformFinalBlending() 644 ImageType vimg; in PerformFinalBlending()
|
D | Pyramid.h | 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 );
|
D | Blend.h | 76 …int runBlend(MosaicFrame **frames, MosaicFrame **rframes, int frames_size, ImageType &imageMosaicY…
|
/packages/apps/LegacyCamera/jni/ |
D | 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, in GenerateQuarterResImagePlanar() 122 ImageType &out) in GenerateQuarterResImagePlanar() 124 ImageType imp; in GenerateQuarterResImagePlanar() 125 ImageType outp; in GenerateQuarterResImagePlanar() 209 void YUV420toYVU24(ImageType yvu24, ImageType yuv420sp, int width, int height) in YUV420toYVU24() 213 ImageType oyp = yvu24; in YUV420toYVU24() 214 ImageType ovp = yvu24+frameSize; in YUV420toYVU24() [all …]
|