Searched refs:aligner (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DMosaic.h75 * Main class that creates a mosaic by creating an aligner and blender.
86 * Creates the aligner and blender and initializes state.
131 * \return Pointer to the aligner object.
133 Align* getAligner() { return aligner; }
206 * Pointer to aligner.
208 Align *aligner; member in class:Mosaic
H A DMosaic.cpp54 if (aligner != NULL)
55 delete aligner;
104 aligner = new Align();
105 aligner->initialize(width, height,quarter_res,thresh_still);
151 // Add frame to aligner
153 if (aligner != NULL)
155 // Note aligner takes in RGB images
157 align_flag = aligner->addFrame(frame->image);
158 aligner->getLastTRS(frame->trs);
196 // Haven't accepted any frame in aligner
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DMosaic.h75 * Main class that creates a mosaic by creating an aligner and blender.
86 * Creates the aligner and blender and initializes state.
131 * \return Pointer to the aligner object.
133 Align* getAligner() { return aligner; }
200 * Pointer to aligner.
202 Align *aligner; member in class:Mosaic
H A DMosaic.cpp50 if (aligner != NULL)
51 delete aligner;
99 aligner = new Align();
100 aligner->initialize(width, height,quarter_res,thresh_still);
138 // Add frame to aligner
140 if (aligner != NULL)
142 // Note aligner takes in RGB images
144 align_flag = aligner->addFrame(frame->image);
145 aligner->getLastTRS(frame->trs);
183 // Haven't accepted any frame in aligner
[all...]

Completed in 282 milliseconds