Searched refs:ImageType (Results 1 – 11 of 11) sorted by relevance
/development/perftests/panorama/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 | 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;
|
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 | AlignFeatures.h | 65 int addFrameRGB(ImageType image); 66 int addFrame(ImageType image); 89 ImageType imageGray;
|
D | Mosaic.cpp | 94 owned_frames = new ImageType[max_frames]; in initialize() 116 int Mosaic::addFrameRGB(ImageType imageRGB) in addFrameRGB() 118 ImageType imageYVU; in addFrameRGB() 134 int Mosaic::addFrame(ImageType imageYVU) in addFrame() 224 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 | 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…
|
D | Blend.cpp | 97 ImageType &imageMosaicYVU, int &mosaicWidth, int &mosaicHeight, in runBlend() 320 ImageType mbY, mbU, mbV; in FillFramePyramid() 584 ImageType yimg; in CropFinalMosaic() 585 ImageType uimg; in CropFinalMosaic() 586 ImageType vimg; in CropFinalMosaic() 631 ImageType yimg; in PerformFinalBlending() 632 ImageType uimg; in PerformFinalBlending() 633 ImageType vimg; in PerformFinalBlending()
|
/development/perftests/panorama/ |
D | benchmark.cpp | 31 ImageType yvuFrames[MAX_FRAMES]; 42 ImageType rgbFrame = ImageUtils::readBinaryPPM(filename, width, height); in loadImages() 99 ImageType resultYVU = mosaic.getMosaic(mosaicWidth, mosaicHeight); in main() 101 ImageType imageRGB = ImageUtils::allocateImage( in main()
|