英文:
Need Updated StickerView with auto face detect functionality
问题
我已经尝试过寻找一个新的更新的Stickerview
库,但在GitHub上没有找到更新的库。
上述所有库的效果都不好。
所需功能:
- 自动检测人脸并很好地应用贴纸。
- 可以一次性添加/替换多个贴纸。
请建议如何寻找一个适合的Stickerview
库。
(这不是寻找工具的请求)
英文:
I have tried to find out a new updated Stickerview
library but no updated library available on GitHub.
All the Above library not working well.
Functionality Needed:
- Auto Face detects and applies the sticker on it very well.
- Multiple stickers can add/replace at a time.
Please suggests how to look for a good library for Stickerview
.
(This is not a request for finding a tool)
答案1
得分: 1
以下是翻译的内容:
你可以参考这两个仓库的“Network”部分:
- https://github.com/kencheung4/android-StickerView/network
- https://github.com/nimengbo/StickerView/network
你将会看到从这些仓库派生出的分支,以及这些分支中的新提交记录。
通过这种方式,你可能会找到一个包含你所需修复的分支。
例如:usmanrana07/android-StickerView
包含:
> ## 添加了 'controlFrameVisibility' 方法
>
> 控制器框架应该在 'ACTION_UP' 完成后的一段时间内隐藏,因为如果用户想要截图,这些图标也会在图片中保持可见。
我添加了一些代码,将在操作完成后的 2 秒内隐藏控制器框架,触摸视图时会再次显示。
而 yongjhih/StickerView
则添加了一个 StickerManager
,用于更简化的应用程序,这可能对你的情况有兴趣。
也许并没有你正在寻找的确切功能,但“Network”部分是评估是否已经编码实现了这些功能的好方法,或者你是否需要实现它们。
英文:
You can refer to the "Network" section of those two repositories:
- https://github.com/kencheung4/android-StickerView/network
- https://github.com/nimengbo/StickerView/network
You will see the forks created from said repositories, and the newer commits done in those forks.
That way, you might find the one fork which include the fixes you want.
For example: usmanrana07/android-StickerView
includes:
> ## Added 'controlFrameVisibility' method
>
> The controller frame should hide after particular time of ACTION_UP
even because if user wants to take screenshot then those icons also remain visible in picture.
I have added pieces of code which will hide the controller frame after 2 seconds of action completion and it would be visible again on touch to the view.
And yongjhih/StickerView
adds a StickerManager
for simpler application, which could be of interest in your case.
There might not be the exact features you are looking for, but the "Network" section is a good way to assess if said features were already coded, or if you need to implement them.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论