【error】OpenCV Error: Parsing error (Missing or invalid SVM type) in read_params, file modules/ml/src/svm.cpp

前言

移植代码到板子上出现小问题,其实非常简单,但是不一定能立即想到,故还是记录一下。好记性不如烂笔头~

错误

Vxworks上的error

0x21c411c0 (iRtp_imx6): RTP 0x2117b0e0 has been deleted due to signal 6.
OpenCV Error: Parsing error (Missing or invalid SVM type) in read_params, file modules/ml/src/svm.cpp, line 2198

imx6上的error

OpenCV Error: Parsing error (Missing or invalid SVM type) in read_params, file /usr/src/debug/opencv/3.1+gitAUTOINC+92387b1ef8-r0/git/modules/ml/src/svm.cpp, line 2122
terminate called after throwing an instance of ‘cv::Exception‘
  what():  /usr/src/debug/opencv/3.1+gitAUTOINC+92387b1ef8-r0/git/modules/ml/src/svm.cpp:2122: error: (-212) Missing or invalid SVM type in function read_params

Aborted

原因

之前在使用板子的过程中其实也遇到过这个问题,不过再次遇到的时候还是忘记了,在回到源码调试的过程中,才明白原因是缺少模型文件,也就是程序找不到模型文件。

原文地址:https://www.cnblogs.com/happyamyhope/p/12212540.html

时间: 2024-10-10 09:28:51

【error】OpenCV Error: Parsing error (Missing or invalid SVM type) in read_params, file modules/ml/src/svm.cpp的相关文章

【转载】Android Gradle Build Error:Some file crunching failed, see logs for details解决办法

错误日志:Error:java.lang.RuntimeException: Some file crunching failed, see logs for details Log: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:mergeDebugResources'. > Error: java.lang.RuntimeException: Crunch

【ST】hw2——find the error in the follow case

public int findLast (int[] x, int y) { //Effects: If x==null throw NullPointerException? // in x that equals y.? // If no such element exists, return -1? for (int i=x.length-1; i > 0; i--) ? { if (x[i] == y) { return i; } }? return -1; }? // test: x

【Tomcat】Unrecognized Windows Sockets error: 10106: Socket creation failed

tomcat8启动过程中报如下错误 30-Nov-2017 22:45:52.892 严重 [main] org.apache.catalina.core.StandardServer.await StandardServer.await: create[localhost:8005]: java.net.SocketException: Unrecognized Windows Sockets error: 10106: create at java.net.ServerSocket.crea

【转载】C++编译出现 error C2664: 不能将参数 2 从“const char [5]”转换为“LPCTSTR”解决办法。

编译程序的时候出现这样的错误,原因是在新建MFC项目的时候,设置字符集Unicode的属性. 解决方法一: 在VC2010的解决方案管理器窗口内,右击你的项目“项目”,然后选“属性”(最后一项),再点“配置属性”,是个“+”号,把它展开,然后选“常规”选项卡,倒数第三项“字符集”,选择“使用多字节字符集”.问题解决. 不过还是建议使用Unicode,否则你的程序将有很大的局限性:要是你的程序只在西方发布还好,但毕竟是适应中国大陆的程序吧,所以建议使用Unicode. 解决方法二: 使用调用CSt

【Web】Django OAuth invalid_grant error

This can happen if the code is expired. They expire pretty quickly by default. You can look up your code in the Django admin under Grants and change the expiration date to far in the future. 原因: Django OAuth Toolkit 默认的Grant过期时间非常短暂. 参考资料: http://sta

【转】ORA-00257:archiver error. 错误的处理方法

出现这个问题的原因一般是日志满了.这里以用户tt为例: 一.用sys用户登录 sqlplus sys/[email protected] as sysdba 二.看看archiv log所在位置 SQL> show parameter log_archive_dest;     NAME                                     TYPE        VALUE     ------------------------------------   --------

【 OJ 】趣味游戏 (runtime error。。。。)

趣味比赛 发布时间: 2017年12月12日 16:36   最后更新: 2017年12月12日 16:44   时间限制: 1000ms   内存限制: 128M   SPJ 描述 小明参加了学校举办的火眼金睛趣味比赛,比赛的规则是这样的:由若干男生和若干女生组成的队伍站成一排,小明要在最短的时间内在队伍中找到一个人,这个人前面的男生的个数等于从他开始的队伍(包含他自己)中女生的个数.小明现在很头疼,比赛方规定小明可以求助好友,作为他的好朋友,请你帮帮他. 输出要求的人的位置,若不存在输出No

解决“cv2.error: OpenCV(3.4.2) C:\projects\opencv-python\opencv\modules\highgui\src\window.cpp:356:...”

主要是图片路径中“文件夹分隔符”使用的错误 将“\”改成“/”就好了 修改后的测试代码如下:x.py #导入cv模块 import cv2 as cv #读取图像,支持 bmp.jpg.png.tiff 等常用格式 img = cv.imread("./xx.png") #创建窗口并显示图像 cv.namedWindow("Image") cv.imshow("Image",img) cv.waitKey(0) #释放窗口 cv.destroyA

【计算机视觉】OpenCV的最近邻开源库FLANN

FLANN介绍 FLANN库全称是Fast Library for Approximate Nearest Neighbors,它是目前最完整的(近似)最近邻开源库.不但实现了一系列查找算法,还包含了一种自动选取最快算法的机制. flann::Index_类 该类模板是最近邻索引类,该类用于抽象不同类型的最近邻搜索的索引. 以下是flann::Index_类的声明: template <typename T> class #ifndef _MSC_VER FLANN_DEPRECATED #e