-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] 前端实现场景分类功能 & [Style] 规范代码风格 #21
[Feature] 前端实现场景分类功能 & [Style] 规范代码风格 #21
Conversation
jscslld
commented
Sep 24, 2022
•
edited
Loading
edited
- 前端实现场景分类功能。
- 移除不必要的前端依赖,使得可以在Node.js 16下通过CI。
- 统一项目名,将前端中的Hippo修改为PP-GeoView。
- 使用PaddleRS提供的decode_image函数进行图片读取,减少代码冗余。
- 修复了批量渲染函数的函数名拼写错误的问题
- 目标检测绘制时colormap自动生成,便于适配自定义模型
1. 前端实现场景分类功能 2. 移除不必要的依赖,使得CI可以在Node.js 16.x下通过
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
算法&后端部分基本OK。有两个想法:
- 滑窗尺寸和步长后续是否可以做成可调的?
- 滑窗推理可以使用PaddleRS原生的
slider_predict()
方法。
前端部分请 @yibaikuai review~
@@ -41,7 +41,7 @@ def execute(model_path, data_path, out_dir, names_): | |||
return_list=True) | |||
# 设置滑窗大小与滑动步长 | |||
WINDOW_SIZE = 256 | |||
STRIDE = 128 | |||
STRIDE = 256 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
后续可以考虑把滑窗大小和步长设置为可调的,因为用户导出的模型不一定接受这个大小的输入。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.