YOLOV5_NCNN_Android icon indicating copy to clipboard operation
YOLOV5_NCNN_Android copied to clipboard

YOLOv5 C++ Implementation on Android using NCNN framework

Results 16 YOLOV5_NCNN_Android issues
Sort by recently updated
recently updated
newest added

I trained model yolov5 for object detection and now i want to deploy it on android app. Before, I tried covert to .tflite format but slowly. I saw in assets...

你好,我已经转换好了ncnn模型,修改相关参数,但是我的程序一直闪退。 ![image](https://user-images.githubusercontent.com/80535260/114383952-b3f2ec00-9bc0-11eb-85ae-106affe5adf3.png) 我想知道我需要改哪?

YOLOv5提供了转换为ONNX的工具,请问有转换为NCNN模型的工具吗?

hey, I modified the code in the common.py file, but the predicted boxes are all wrong after the conversion the in the mobile devices. Do I need to modify other...

为debug|armeabi-v7a提示cmake找不到vulkan-lib,但是我安装了libvulkan1 libvulkan-dev vulkan-utils 之后还是不行。 各位大佬如何能编译的

大佬好,目前yolov5基于Release v3版本的模型文件从onnx转ncnn的时候文件只有17M,模型被截断了,ncnn加载模型文件的时候会失败(返回-1),请问这可能是什么原因呀?

您好,作者,请教下。检测无返回值,像无用,尝试过nms给到0. 步骤如下: 1.使用export.py将yolov5-s权重转换为onnx 2.用https://github.com/daquexian/onnx-simplifier简化 python -m onnxsim yolov5s.onnx yolov5s-simplified.onnx 3.使用以下工具转换为ncnn:tools / onnx2ncnn ./onnx2ncnn yolov5s-simplified.onnx yolov5s.param yolov5s.bin 4.出现Unsupported slice step !这个有了解到切片的问题,有尝试按issue提到的注释。解决了此现象。 5.最后得到的 yolov5s.param yolov5s.bin替换作者Android项目的asset下的文件,进行测试,发现检测不了。用你的模型可行。我转换的 yolov5s.param yolov5s.bin不可行。不知道是什么原因呢?

In this project, you need to specify the output of the model in YoloV5.h. In Android_NCNN_yolov4-tiny project,We don't need to specify the output. Does it mean that the output of...

自己训练的yolov5模型转ncnn,检测到目标得分变低了,同一张图片同一个目标,pt模型检测得分是0.87,ncnn模型检测得分是0.6。为什么呢?