91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡(jiǎn)介

Android 8.0 系統(tǒng)自帶 高通驍龍相機(jī) SnapdragonCamera

資源截圖

代碼片段和文件信息

/*
?*?Copyright?(C)?2011?The?Android?Open?Source?Project
?*
?*?Licensed?under?the?Apache?License?Version?2.0?(the?“License“);
?*?you?may?not?use?this?file?except?in?compliance?with?the?License.
?*?You?may?obtain?a?copy?of?the?License?at
?*
?*??????http://www.apache.org/licenses/LICENSE-2.0
?*
?*?Unless?required?by?applicable?law?or?agreed?to?in?writing?software
?*?distributed?under?the?License?is?distributed?on?an?“AS?IS“?BASIS
?*?WITHOUT?WARRANTIES?OR?CONDITIONS?OF?ANY?KIND?either?express?or?implied.
?*?See?the?License?for?the?specific?language?governing?permissions?and
?*?limitations?under?the?License.
?*/

/*
*
?*/
#include?
#include?
#include?
#include?
#include?
#include?

#include?“mosaic/AlignFeatures.h“
#include?“mosaic/Blend.h“
#include?“mosaic/Mosaic.h“
#include?“mosaic/Log.h“
#define?LOG_TAG?“FEATURE_MOS_JNI“

#ifdef?__cplusplus
extern?“C“?{
#endif

#include?“mosaic_renderer_jni.h“

char?buffer[1024];

const?int?MAX_frameS?=?100;

static?double?mTx;

int?tWidth[NR];
int?tHeight[NR];

ImageType?tImage[NR][MAX_frameS];//?=?{{ImageUtils::IMAGE_TYPE_NOIMAGE}};?//?YVU24?format?image
Mosaic?*mosaic[NR]?=?{NULLNULL};
ImageType?resultYVU?=?ImageUtils::IMAGE_TYPE_NOIMAGE;
ImageType?resultBGR?=?ImageUtils::IMAGE_TYPE_NOIMAGE;
float?gTRS[11];?//?9?elements?of?the?transformation?1?for?frame-number?1?for?alignment?error?code.
//?Variables?to?keep?track?of?the?mosaic?computation?progress?for?both?LR?&?HR.
float?gProgress[NR];
//?Variables?to?be?able?to?cancel?the?mosaic?computation?when?the?GUI?says?so.
bool?gCancelComputation[NR];

int?c;
int?width=0?height=0;
int?mosaicWidth=0?mosaicHeight=0;

//int?blendingType?=?Blend::BLEND_TYPE_FULL;
//int?blendingType?=?Blend::BLEND_TYPE_CYLPAN;
int?blendingType?=?Blend::BLEND_TYPE_HORZ;
int?stripType?=?Blend::STRIP_TYPE_THIN;
bool?high_res?=?false;
bool?quarter_res[NR]?=?{falsefalse};
float?thresh_still[NR]?=?{5.0f0.0f};

/*?return?current?time?in?milliseconds*/

#ifndef?now_ms
static?double
now_ms(void)
{
????//struct?timespec?res;
????struct?timeval?res;
????//clock_gettime(CLOCK_REALTIME?&res);
????gettimeofday(&res?NULL);
????return?1000.0*res.tv_sec?+?(double)res.tv_usec/1e3;
}
#endif


static?int?frame_number_HR?=?0;
static?int?frame_number_LR?=?0;

int?Init(int?mID?int?nmax)
{
????????double??t0?t1?time_c;

????????if(mosaic[mID]!=NULL)
????????{
????????????????delete?mosaic[mID];
????????????????mosaic[mID]?=?NULL;
????????}

????????mosaic[mID]?=?new?Mosaic();

????????t0?=?now_ms();

????????//?When?processing?higher?than?720x480?video?process?low-res?at
????????//?quarter?resolution
????????if(tWidth[LR]>180)
????????????quarter_res[LR]?=?true;


????????//?Check?for?initialization?and?if?not?initialize
????????if?(!mosaic[mID]->isInitialized())
????????{
????????????????mosaic[mID]->initialize(blendingType?stripType?tWidth[mID]?tHeight[mID]
????????????????????????nmax?quarter_res[mID]?thresh_still[mID]);

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?-rw-r--r--??????3484??2018-04-25?23:23??version.mk

?-rw-r--r--???????563??2018-04-25?23:23??project.properties

?-rw-r--r--???????781??2018-04-25?23:23??proguard-project.txt

?-rwxr-xr-x??????1774??2018-04-25?23:23??proguard.flags

?-rw-r--r--??????2228??2018-04-25?23:23??CleanSpec.mk

?-rwxr-xr-x??????9337??2018-04-25?23:23??AndroidManifest.xml

?-rw-r--r--??????1472??2018-04-25?23:23??Android.mk

?-rw-r--r--??????6059??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\BeautificationFilter.java

?-rw-r--r--?????12001??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\BestpictureFilter.java

?-rw-r--r--??????5492??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\BlurbusterFilter.java

?-rwxr-xr-x?????10582??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\ChromaflashFilter.java

?-rw-r--r--??????3607??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\ImageFilter.java

?-rw-r--r--??????5875??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\OptizoomFilter.java

?-rw-r--r--??????6787??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\SharpshooterFilter.java

?-rw-r--r--??????6823??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\StillmoreFilter.java

?-rw-r--r--?????10307??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\TrackingFocusframeListener.java

?-rw-r--r--?????12600??2018-04-25?23:23??src\com\android\camera\imageprocessor\filter\UbifocusFilter.java

?-rw-r--r--??????1639??2018-04-25?23:23??src\com\android\camera\app\AppManagerFactory.java

?-rw-r--r--??????1717??2018-04-25?23:23??src\com\android\camera\app\CameraApp.java

?-rw-r--r--??????4716??2018-04-25?23:23??src\com\android\camera\app\OrientationManager.java

?-rw-r--r--??????5767??2018-04-25?23:23??src\com\android\camera\app\PlaceholderManager.java

?-rw-r--r--?????13402??2018-04-25?23:23??src\com\android\camera\crop\BoundedRect.java

?-rw-r--r--?????26920??2018-04-25?23:23??src\com\android\camera\crop\CropActivity.java

?-rw-r--r--??????7693??2018-04-25?23:23??src\com\android\camera\crop\CropDrawingUtils.java

?-rw-r--r--??????3784??2018-04-25?23:23??src\com\android\camera\crop\CropExtras.java

?-rw-r--r--??????9120??2018-04-25?23:23??src\com\android\camera\crop\CropMath.java

?-rw-r--r--?????11035??2018-04-25?23:23??src\com\android\camera\crop\Cropobject.java

?-rw-r--r--?????12869??2018-04-25?23:23??src\com\android\camera\crop\CropView.java

?-rw-r--r--??????5881??2018-04-25?23:23??src\com\android\camera\crop\GeometryMathUtils.java

?-rw-r--r--?????15917??2018-04-25?23:23??src\com\android\camera\crop\ImageLoader.java

............此處省略1687個(gè)文件信息

評(píng)論

共有 條評(píng)論