summaryrefslogtreecommitdiff
path: root/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h')
-rw-r--r--camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h107
1 files changed, 0 insertions, 107 deletions
diff --git a/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h b/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h
deleted file mode 100644
index f29131a..0000000
--- a/camera/QCamera2/HAL/tsMakeuplib/include/ts_makeup_engine.h
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
-* Copyright (C) 2014,2015 Thundersoft Corporation
-* All rights Reserved
-*
-* 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.
-*/
-#ifndef __TS_MAKEUP_ENGINI_H__
-#define __TS_MAKEUP_ENGINI_H__
-#include "ts_makeup_data.h"
-#include "ts_makeup_image.h"
-
-
- /**
- * Data struct : TSMakeupDeblemish
- */
- typedef struct _tag_tsmakeupdeblemish {
- TSPoint selectpoint;
- long deblemishRadius; // Radius of the deblemish rect
- } TSMakeupDeblemish;
-
-
- /**
- * FUNCTION : ts_makeup_get_supported_face_num
- *
- * DESCRIPTION: get supported face number
- *
- * RETURN : The supported face number
- *
- */
- int ts_makeup_get_supported_face_num();
-
-
- /**
- * FUNCTION : ts_makeup_skin_beauty
- *
- * DESCRIPTION: skin beauty method.
- *
- * PARAMETERS :
- * @param[in] pInData : The TSMakeupData pointer.MUST not NULL.
- * @param[out] pOutData : The TSMakeupData pointer.MUST not NULL.
- * @param[in] pFaceRect : The face rect.MUST not NULL.
- * @param[in] cleanLevel : Skin clean level, value range [0,100].
- * @param[in] whiteLevel : Skin white level, value range [0,100].
- * RETURN : TS_OK if success, otherwise failed.
- *
- */
- int ts_makeup_skin_beauty(TSMakeupData *pInData, TSMakeupData *pOutData, const TSRect *pFaceRect, int cleanLevel,int whiteLevel);
-
- /**
- * FUNCTION : ts_makeup_finish
- *
- * DESCRIPTION: Finish makeup,call this method at last time.
- * This method MUST be called After ts_makeup_skin_clean and ts_makeup_skin_whiten
- *
- */
- void ts_makeup_finish();
-
- /**
- * FUNCTION : ts_makeup_do_deblemish
- *
- * DESCRIPTION: do deblemish method.
- *
- * PARAMETERS :
- * @param[in] pInData : The TSMakeupData pointer.MUST not NULL.
- * @param[out] pOutData : The TSMakeupData pointer.MUST not NULL.
- * @param[in] pFaceRect : The face rect.MUST not NULL.
- * @param[in] deblemishParaNum : The deblemish paramters number.MUST > 0.
- * @param[in] pDeblemishPara : The deblemish paramters.MUST not NULL.
- *
- * RETURN : TS_OK if success, otherwise failed.
- *
- */
- int ts_makeup_do_deblemish(TSMakeupData *pInData, TSMakeupData *pOutData, const TSRect *pFaceRect,
- int deblemishParaNum, const TSMakeupDeblemish* pDeblemishPara);
-
-
- /**
- * FUNCTION : ts_makeup_warp_face
- *
- * DESCRIPTION: do warp face.
- *
- * PARAMETERS :
- * @param[in] pInData : The TSMakeupData pointer.MUST not NULL.
- * @param[out] pOutData : The TSMakeupData pointer.MUST not NULL.
- * @param[in] pLeftEye : The left eye rect pointer.MUST not NULL.
- * @param[in] pRightEye : The right eye rect pointer.MUST not NULL.
- * @param[in] pMouth : The mouth rect pointer.MUST not NULL.
- * @param[in] bigEyeLevel : The big eye level, value range [0,100].
- * @param[in] trimFaceLevel : The trim face level, value range [0,100].
- *
- * RETURN : TS_OK if success, otherwise failed.
- *
- */
- int ts_makeup_warp_face(TSMakeupData *pInData, TSMakeupData *pOutData,
- const TSRect *pLeftEye, const TSRect *pRightEye, const TSRect *pMouth, int bigEyeLevel, int trimFaceLevel);
-
-#endif // __TS_MAKEUP_ENGINI_H__