-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
pyramidbox_lite_server_mask模型报错 #621
Comments
你好!该问题可以参考 issue #609 的回复。 |
请问1.3.0中可以指定保存结果文件夹,怎么指定后没有出现? |
打印下识别后的结果,如果图片识别到没有人脸或者口罩,则不会保存相应识别结果图片。 |
好了 我懂了 谢谢你!!!
…------------------ 原始邮件 ------------------
发件人: "Steffy-zxf"<[email protected]>;
发送时间: 2020年5月24日(星期天) 下午3:28
收件人: "PaddlePaddle/PaddleHub"<[email protected]>;
抄送: "记忆摇晃着昨天的微笑ヽ"<[email protected]>;"Author"<[email protected]>;
主题: Re: [PaddlePaddle/PaddleHub] pyramidbox_lite_server_mask模型报错 (#621)
打印下识别后的结果,如果图片识别到没有人脸或者口罩,则不会保存相应识别结果图片。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
不好意思,打扰您了 。我想把一个文件里的图片的路径读取出来 , 然后放进口罩模型中训练它 ,但是每次只能读取几个图片就报错了 。结果如图所示。可以指导一下吗?
…------------------ 原始邮件 ------------------
发件人: "Steffy-zxf"<[email protected]>;
发送时间: 2020年5月24日(星期天) 下午3:28
收件人: "PaddlePaddle/PaddleHub"<[email protected]>;
抄送: "记忆摇晃着昨天的微笑ヽ"<[email protected]>;"Author"<[email protected]>;
主题: Re: [PaddlePaddle/PaddleHub] pyramidbox_lite_server_mask模型报错 (#621)
打印下识别后的结果,如果图片识别到没有人脸或者口罩,则不会保存相应识别结果图片。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
你好,你说的
我没有看见相应的结果。口罩模型目前支持预测,不知道你说的
你是怎么做呢? |
我是打算检测一个视频 我按帧保存了视频的图片 然后读出所保存的图片地址 将地址依次放入模型中 我把代码和结果截图打包了
…------------------ 原始邮件 ------------------
发件人: "Steffy-zxf"<[email protected]>;
发送时间: 2020年5月26日(星期二) 上午10:07
收件人: "PaddlePaddle/PaddleHub"<[email protected]>;
抄送: "记忆摇晃着昨天的微笑ヽ"<[email protected]>;"Author"<[email protected]>;
主题: Re: [PaddlePaddle/PaddleHub] pyramidbox_lite_server_mask模型报错 (#621)
你好,你说的我
结果如图所示。
我没有看见相应的结果。口罩模型目前支持预测,不知道你说的
然后放进口罩模型中训练它
你是怎么做呢?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
issue上没看见你上传的附件。其实你可以不用把视频中的图片帧保存在本地,直接读取视频帧成ndarray数据之后,传给 接口文档参考API说明 |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PaddleHub1.7.0,
window
pycharm中运行pyramidbox_lite_server_mask示例代码报错了
import paddlehub as hub
import cv2
mask_detector = hub.Module(name="pyramidbox_lite_server_mask", version='1.3.0')
result = mask_detector.face_detection(images=[cv2.imread('/PATH/TO/IMAGE')])
or
result = mask_detector.face_detection(paths=['image/mask/5.jpg'])
TypeError: call() missing 1 required positional argument: 'data'
paths是我的图片地址 是这个出问题了吗
The text was updated successfully, but these errors were encountered: