HomeSort by relevance Sort by last modified time
    Searched defs:Mosaic (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/ui/file_manager/file_manager/foreground/js/photo/
mosaic_mode.js 19 this.mosaic_ = new Mosaic(
30 * @return {Mosaic} The mosaic control.
37 MosaicMode.prototype.getName = function() { return 'mosaic' };
76 * Mosaic control.
83 * @return {Element} Mosaic element.
86 function Mosaic(document, dataModel, selectionModel, metadataCache,
89 Mosaic.decorate(
97 Mosaic.prototype.__proto__ = HTMLDivElement.prototype;
104 Mosaic.LAYOUT_DELAY = 200
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
mosaic_mode.js 19 this.mosaic_ = new Mosaic(
30 * @return {Mosaic} The mosaic control.
37 MosaicMode.prototype.getName = function() { return 'mosaic' };
76 * Mosaic control.
83 * @return {Element} Mosaic element.
86 function Mosaic(document, dataModel, selectionModel, metadataCache,
89 Mosaic.decorate(
97 Mosaic.prototype.__proto__ = HTMLDivElement.prototype;
104 Mosaic.LAYOUT_DELAY = 200
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Mosaic.cpp 18 // Mosaic.pp
21 // $Id: Mosaic.cpp,v 1.20 2011/06/24 04:22:14 mbansal Exp $
26 #include "Mosaic.h"
29 Mosaic::Mosaic()
37 Mosaic::~Mosaic()
57 int Mosaic::initialize(int blendingType, int stripType, int width, int height, int nframes, bool quarter_res, float thresh_still)
116 int Mosaic::addFrameRGB(ImageType imageRGB)
134 int Mosaic::addFrame(ImageType imageYVU
    [all...]
Mosaic.h 18 // Mosaic.h
21 // $Id: Mosaic.h,v 1.16 2011/06/24 04:22:14 mbansal Exp $
31 /*! \mainpage Mosaic
34 The class Mosaic provides a simple interface to the panoramic mosaicing algorithm. The class allows passing in individual image frames to be stitched together, computes the alignment transformation between them, and then stitches and blends them together into a single panoramic output which can then be accessed as a single image. \
37 The class methods need to be called as outlined in the sample application which is created from the mosaic_main.cpp file in the directory src/mosaic/. A brief snapshot of the flow is given below:
40 Mosaic mosaic;
50 if (!mosaic.isInitialized())
52 // Initialize mosaic processing
53 mosaic.initialize(blendingType, stripType, width, height, -1, false, 5.0f)
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Mosaic.cpp 18 // Mosaic.pp
21 // $Id: Mosaic.cpp,v 1.20 2011/06/24 04:22:14 mbansal Exp $
26 #include "Mosaic.h"
30 #define LOG_TAG "MOSAIC"
32 Mosaic::Mosaic()
40 Mosaic::~Mosaic()
60 int Mosaic::initialize(int blendingType, int stripType, int width, int height, int nframes, bool quarter_res, float thresh_still)
124 int Mosaic::addFrameRGB(ImageType imageRGB
    [all...]
Mosaic.h 18 // Mosaic.h
21 // $Id: Mosaic.h,v 1.16 2011/06/24 04:22:14 mbansal Exp $
31 /*! \mainpage Mosaic
34 The class Mosaic provides a simple interface to the panoramic mosaicing algorithm. The class allows passing in individual image frames to be stitched together, computes the alignment transformation between them, and then stitches and blends them together into a single panoramic output which can then be accessed as a single image. \
37 The class methods need to be called as outlined in the sample application which is created from the mosaic_main.cpp file in the directory src/mosaic/. A brief snapshot of the flow is given below:
40 Mosaic mosaic;
50 if (!mosaic.isInitialized())
52 // Initialize mosaic processing
53 mosaic.initialize(blendingType, stripType, width, height, -1, false, 5.0f)
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.cpp 18 // Mosaic.pp
21 // $Id: Mosaic.cpp,v 1.20 2011/06/24 04:22:14 mbansal Exp $
26 #include "Mosaic.h"
30 #define LOG_TAG "MOSAIC"
32 Mosaic::Mosaic()
40 Mosaic::~Mosaic()
56 int Mosaic::initialize(int blendingType, int stripType, int width, int height, int nframes, bool quarter_res, float thresh_still)
119 int Mosaic::addFrameRGB(ImageType imageRGB
    [all...]
Mosaic.h 18 // Mosaic.h
21 // $Id: Mosaic.h,v 1.16 2011/06/24 04:22:14 mbansal Exp $
31 /*! \mainpage Mosaic
34 The class Mosaic provides a simple interface to the panoramic mosaicing algorithm. The class allows passing in individual image frames to be stitched together, computes the alignment transformation between them, and then stitches and blends them together into a single panoramic output which can then be accessed as a single image. \
37 The class methods need to be called as outlined in the sample application which is created from the mosaic_main.cpp file in the directory src/mosaic/. A brief snapshot of the flow is given below:
40 Mosaic mosaic;
50 if (!mosaic.isInitialized())
52 // Initialize mosaic processing
53 mosaic.initialize(blendingType, stripType, width, height, -1, false, 5.0f)
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Mosaic.java 20 * The Java interface to JNI calls regarding mosaic stitching.
24 * Mosaic mosaic = new Mosaic();
25 * mosaic.setSourceImageDimensions(width, height);
26 * mosaic.reset(blendType);
29 * mosaic.setSourceImage(pixels);
32 * mosaic.createMosaic(highRes);
33 * byte[] result = mosaic.getFinalMosaic();
36 public class Mosaic {
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
Mosaic.java 20 * The Java interface to JNI calls regarding mosaic stitching.
24 * Mosaic mosaic = new Mosaic();
25 * mosaic.setSourceImageDimensions(width, height);
26 * mosaic.reset(blendType);
29 * mosaic.setSourceImage(pixels);
32 * mosaic.createMosaic(highRes);
33 * byte[] result = mosaic.getFinalMosaic();
36 public class Mosaic {
    [all...]

Completed in 165 milliseconds