We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
flycv版本:flycv-v1.0.0-android.tar 平台:展锐T610 CPU armv7 复现步骤:读取本地图片,然后调用画图函数,最后保存画图后的数据,保存的图片上没有画图结果
参考代码: std::string raw_img_path = "/sdcard/Android/data/com.baidu.paddle.lite.demo.ssd_detection/cache/raw.jpg"; fcv::Mat raw_img = fcv::imread(raw_img_path); fcv::circle(raw_img,fcv::Point(500,500),100,fcv::Scalar(0,0,100),2);
std::string res_img_path = "/sdcard/Android/data/com.baidu.paddle.lite.demo.ssd_detection/cache/raw_res.jpg"; fcv::imwrite(res_img_path, raw_img);
The text was updated successfully, but these errors were encountered:
fcv::circle(raw_img,fcv::Point(500,500),100,fcv::Scalar(0,0,100),2); 你好,能否打印下这个函数调用返回的状态码
fcv::circle(raw_img,fcv::Point(500,500),100,fcv::Scalar(0,0,100),2);
Sorry, something went wrong.
打印了一直返回是0
请问这个问题修复了吗?
正在安排复现,有更新会及时同步哈
TomasRan
VoidSalts
No branches or pull requests
flycv版本:flycv-v1.0.0-android.tar
平台:展锐T610 CPU armv7
复现步骤:读取本地图片,然后调用画图函数,最后保存画图后的数据,保存的图片上没有画图结果
参考代码:
std::string raw_img_path = "/sdcard/Android/data/com.baidu.paddle.lite.demo.ssd_detection/cache/raw.jpg";
fcv::Mat raw_img = fcv::imread(raw_img_path);
fcv::circle(raw_img,fcv::Point(500,500),100,fcv::Scalar(0,0,100),2);
std::string res_img_path = "/sdcard/Android/data/com.baidu.paddle.lite.demo.ssd_detection/cache/raw_res.jpg";
fcv::imwrite(res_img_path, raw_img);
The text was updated successfully, but these errors were encountered: