1 Star 0 Fork 50

韩魁/keras口罩检测

forked from tzcfly/keras口罩检测 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
run.py 306 Bytes
Copy Edit Raw Blame History
tzcfly authored 2020-05-26 14:20 . object
"""使用fasterRCNN进行目标检测"""
from fasterRCNN import FasterRCNN
from PIL import Image
if __name__ == "__main__":
fasterrcnn = FasterRCNN()
img = "./valimg/mask2.jpg"
image = Image.open(img)
pred_image = fasterrcnn.detect_image(image)
pred_image.show()
fasterrcnn.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kui2011/keraskouzhaojiance.git
git@gitee.com:kui2011/keraskouzhaojiance.git
kui2011
keraskouzhaojiance
keras口罩检测
master

Search