32 lines
964 B
Markdown
32 lines
964 B
Markdown
### 0410
|
|
1. 修改 repo 中的資料, 添加 .gitignore -> 0.5 hrs
|
|
2. 準備資料 + 開會 meeting -> 2 hrs
|
|
#### total: 2 hrs
|
|
---
|
|
### 0411
|
|
1. 解決 yolov5s 報錯: 將 input image 調整成 1500 * 1500 之後再把結果 mapping 回原先影像大小
|
|
```
|
|
Error code: 22. Description: ApiReturnCode KP_ERROR_IMAGE_RESOLUTION_TOO_SMALL_22
|
|
```
|
|
|
|
2. 修正 yolov5s 的回傳資料以符合 bounding box 顯示的格式
|
|
3. 添加 yolov5s classname mapping 機制
|
|
4. 添加 mutiple bounding boxes 顯示
|
|
```
|
|
{
|
|
"num_boxes": 2,
|
|
"bounding boxes": [[x1, y1, x2, y2], [x3, y3, x4, y4]],
|
|
"results": ["label1", "label2"]
|
|
}
|
|
```
|
|
5. 更新 README.md: 添加 bounding boxes 的 return value
|
|
#### total: 3.5 hrs
|
|
|
|
### 0415
|
|
1. 尋找 Face detection and Face recognition's pretrained model
|
|
#### total: 1 hrs
|
|
|
|
### 0416
|
|
1. 將 arcface's pth model 轉換成 onnx
|
|
2. 修正 video inference return none 導致的 crash
|
|
#### total: 3 hrs |