KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
captchaAutoLabeling
★ 12
Open GitHub ↗
滑块、点选captcha自动标注
Download README (.md)
Explore Similar Repositories
UPT-Flow
:
No description available.
MasterKernel
:
Kernel Cheat for Games that use Modern AntiCheat EAC, Vanguard, Battleye etc
tang_nano_9K_ov7670
:
OV7670 camera sensor demo project for Tang Nano 9K board
Preprocessing-of-stroke-MRI-data
:
用于对脑卒中的MRI数据进行预处理,包括颅骨剥离,配准,以及归一化。其中包括原理解释和代码说明
DragonStub
:
A generic standalone EFI stub for DragonOS kernel, which based on the Linux EFI stub.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
captchaAutoLabeling
?
Download (.md)
# captchaAutoLabeling 滑块、点选captcha自动标注 如有侵权,请联系作者进行删除 QQ:848416881 感谢ddddocr的作者,本项目目前主要依赖其做的工作 附上地址:https://github.com/sml2h3/ddddocr python3.10.10 poetry使用 ``` pip install poetry poetry install # 安装python依赖包 ``` 运行:需要先将图片放到img目录 ``` cp .env.template .env python main.py ``` 如何自定义自己的model类进行二次开发: 在src/model.py文件中新增xxxModel类并继承BaseModel类 命名规范: 自定义模型名称 + Model xxx为自定义模型名 详情请参考OnnxModel类的实现 构建和发布包: 要构建并发布您的Python包,将自动生成所需的setup.py、setup.cfg和MANIFEST.in等文件,并将包发布到PyPI ``` poetry build poetry publish ```