OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mosaicWidth
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Camera/jni/feature_mos/src/mosaic/
Mosaic.h
67
resultYVU = mosaic.getMosaic(
mosaicWidth
, mosaicHeight);
69
printf("Got mosaic of size %d,%d\n",
mosaicWidth
, mosaicHeight);
162
int
mosaicWidth
, mosaicHeight;
Mosaic.cpp
72
mosaicWidth
= mosaicHeight = 0;
203
mosaicWidth
, mosaicHeight, progress, cancelComputation);
223
width =
mosaicWidth
;
Blend.h
73
int &
mosaicWidth
, int &mosaicHeight, float &progress, bool &cancelComputation);
Blend.cpp
101
ImageType &imageMosaicYVU, int &
mosaicWidth
, int &mosaicHeight,
287
mosaicWidth
= cropping_rect.right - cropping_rect.left + 1;
292
mosaicWidth
= Mwidth;
[
all
...]
/packages/apps/Camera/jni/
feature_mos_jni.cpp
60
int
mosaicWidth
=0, mosaicHeight=0;
204
resultYVU = mosaic[mID]->getMosaic(
mosaicWidth
, mosaicHeight);
575
int width =
mosaicWidth
;
580
resultBGR = ImageUtils::allocateImage(
mosaicWidth
, mosaicHeight,
582
ImageUtils::yvu2bgr(resultBGR, resultYVU,
mosaicWidth
, mosaicHeight);
623
width =
mosaicWidth
;
629
ImageType V = resultYVU+
mosaicWidth
*mosaicHeight;
630
ImageType U = V+
mosaicWidth
*mosaicHeight;
633
for(int i=0; i<
mosaicWidth
; i+=2)
635
V[j*
mosaicWidth
+i] = V[(2*j)*mosaicWidth+i]; //
[
all
...]
Completed in 532 milliseconds