Skip to content

Commit

Permalink
updadte version
Browse files Browse the repository at this point in the history
  • Loading branch information
Crusoekid committed Feb 24, 2021
1 parent f84ef47 commit adde0ee
Show file tree
Hide file tree
Showing 22 changed files with 61 additions and 46 deletions.
8 changes: 4 additions & 4 deletions Android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ The ```build.gradle``` in Main Module add,select which function you need.But the
dependencies {
...
// Must have and must be the newest!!!!
implementation 'com.tengine.tenginekit:core:0.0.2'
implementation 'com.tengine.tenginekit:core:0.0.3'
// Function on Face
implementation 'com.tengine.tenginekit:face:0.0.2'
implementation 'com.tengine.tenginekit:face:0.0.3'
// Function on Hand
implementation 'com.tengine.tenginekit:hand:0.0.1'
implementation 'com.tengine.tenginekit:hand:0.0.2'
// Function on Body
implementation 'com.tengine.tenginekit:body:0.0.1'
implementation 'com.tengine.tenginekit:body:0.0.2'
...
}
```
Expand Down
4 changes: 2 additions & 2 deletions Android/sample/FaceDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ dependencies {
implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.google.android.material:material:1.0.0'

implementation 'com.tengine.tenginekit:core:0.0.2'
implementation 'com.tengine.tenginekit:face:0.0.2'
implementation 'com.tengine.tenginekit:core:0.0.3'
implementation 'com.tengine.tenginekit:face:0.0.3'

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
Expand Down
5 changes: 3 additions & 2 deletions Android/sample/GoogleBodyDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ dependencies {
implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.google.android.material:material:1.0.0'

implementation 'com.tengine.tenginekit:core:0.0.1'
implementation 'com.tengine.tenginekit:body:0.0.1'
implementation 'com.tengine.tenginekit:core:0.0.3'
implementation 'com.tengine.tenginekit:body:0.0.2'

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
Expand Down
4 changes: 2 additions & 2 deletions Android/sample/GoogleFaceDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ dependencies {
implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.google.android.material:material:1.0.0'

implementation 'com.tengine.tenginekit:core:0.0.1'
implementation 'com.tengine.tenginekit:face:0.0.1'
implementation 'com.tengine.tenginekit:core:0.0.3'
implementation 'com.tengine.tenginekit:face:0.0.3'

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
Expand Down
4 changes: 2 additions & 2 deletions Android/sample/GoogleHandDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ dependencies {
implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.google.android.material:material:1.0.0'

implementation 'com.tengine.tenginekit:core:0.0.1'
implementation 'com.tengine.tenginekit:hand:0.0.1'
implementation 'com.tengine.tenginekit:core:0.0.3'
implementation 'com.tengine.tenginekit:hand:0.0.2'

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
Expand Down
4 changes: 2 additions & 2 deletions Android/sample/ImageDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ dependencies {
implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.google.android.material:material:1.0.0'

implementation 'com.tengine.tenginekit:core:0.0.1'
implementation 'com.tengine.tenginekit:face:0.0.1'
implementation 'com.tengine.tenginekit:core:0.0.3'
implementation 'com.tengine.tenginekit:face:0.0.3'

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
Expand Down
2 changes: 1 addition & 1 deletion Docs/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ TengineKit是一个易于集成的AI算法SDK。目前,它可以在各种手
- 身体检测(尚未手机实时)
- 身体关键点(尚未手机实时)

# 性能指标(Face Detect & Face Landmark)(缩短了时间)
# 性能指标(Face Detect & Face Landmark)

| CPU | 耗时 | 帧率 |
| :---: | :---: | :---: |
Expand Down
23 changes: 14 additions & 9 deletions Linux/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
[中文版本](docs/Linux_README_CN.md)
[中文版本](docs/Linux_README_CN.md) | English Version

# Files
- libTengineKitSDK.so
- tenginekit_api.h
- tenginekit_struct.h
- [models](docs/Model_des.md)
# Qucik Start
## Sources
- Library File : ```libTengineKitSDK.so```
- Header Files : ```tenginekit_api.h``` && ```tenginekit_struct.h```
- Model Files : [Models Path](docs/Model_des.md)

# System
Linux
## System
- Ubuntu 18

# Usage
## Function
- [API](docs/Linux_api.md) : When using sdk, you can refer to API to complete the functions you need.

## Sample Usage
```bash
./make.sh
./bin/demo resources/image/4.jpg
```
27 changes: 17 additions & 10 deletions Linux/docs/Linux_README_CN.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# 文件
- libTengineKitSDK.so
- tenginekit_api.h
- tenginekit_struct.h
- [models](Model_des.md)

# 系统
Linux
中文版本 | [English Version](../README.md)

# 快速开始
# 资源
- 库文件 : ```libTengineKitSDK.so```
- 头文件 : ```tenginekit_api.h``` && ```tenginekit_struct.h```
- 模型文件 : [在这里](docs/Model_des.md)

## 系统
- Ubuntu 18

# 使用
- [API](Linux_api_CN.md) : 在使用sdk时,您可以参考API来完成你需要的功能。
## 功能
- [API](Linux_api_CN.md) : 在使用sdk时,您可以参考API来完成你需要的功能。

## 示例使用
```bash
./make.sh
./bin/demo resources/image/4.jpg
```
8 changes: 4 additions & 4 deletions Linux/docs/Model_des.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

| Model Name | Function |
| :---: | :---: |
| detect.bin | Face Detect |
| detect_go.bin | Google`s Face Detect |
| face_detect.bin | Face Detect |
| face_detect_go.bin | Google`s Face Detect |
| face_landmark2d.bin | Face 2d Landmark |
| face_landmark3d.bin | Face 3d Landmark |
| attribution.bin | Face Attribution |
| face_attr.bin | Face Attribution |
| iris_landmark_go.bin | Iris Landmark |
| hand_detect_go.bin | Hand Detect |
| hand_landmark_go.bin | Hand Landmark |
| body_detect_go.bin | Body Detect |
| body_landmark2d_go.bin | Body Landmark |
| body_landmark_go.bin | Body Landmark |
Binary file modified Linux/libs/libTengineKitSDK.so
Binary file not shown.
Binary file modified Linux/models/body_detect_go.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Linux/models/face_landmark2d.bin
Binary file not shown.
Binary file modified Linux/models/face_landmark3d.bin
Binary file not shown.
Binary file modified Linux/models/hand_detect_go.bin
Binary file not shown.
Binary file modified Linux/models/hand_landmark_go.bin
Binary file not shown.
Binary file modified Linux/models/iris_landmark_go.bin
Binary file not shown.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,16 @@ or
- body detect(Real-time, not yet on Mobile)
- body landamrks(Real-time, not yet on Mobile)

# Update (2021/01/08)
- Khadas NPU application
- Improved the speed of face detection and face landmarks
- Update folders
- Update Linux Models
- Update Core v0.0.2 & Face v0.0.2

# Performance(Face Detect & Face Landmark)(Reduced time)
# Update (2021/02/24)
- Update Core v0.0.3
- Update Face v0.0.3
- Update Hand v0.0.2
- Update Body v0.0.2
- Fixed some Bugs
- Rename models
- Linux libTengineKitSDK.so

# Performance(Face Detect & Face Landmark)

| CPU | Time consuming | Frame rate |
| :---: | :---: | :---: |
Expand Down

0 comments on commit adde0ee

Please sign in to comment.