zoukankan      html  css  js  c++  java
  • error: In function ‘void* opencv_showimg(void*)’:

    今天这个问题折磨了我一下午,终于知道是为什么了,心酸历程。。。。。赶紧来记录一下

    错误:

    /home/wj/workspace/Loitor_VI_Sensor_SDK_V1.3/SDK/src/camtest2.cpp: In function ‘void* opencv_showimg(void*)’:
    /home/wj/workspace/Loitor_VI_Sensor_SDK_V1.3/SDK/src/camtest2.cpp:54:26: error: ‘imshow’ was not declared in this scope
        imshow("left",img_left);
                              ^
    /home/wj/workspace/Loitor_VI_Sensor_SDK_V1.3/SDK/src/camtest2.cpp:66:28: error: ‘imshow’ was not declared in this scope
        imshow("right",img_right);
                                ^
    /home/wj/workspace/Loitor_VI_Sensor_SDK_V1.3/SDK/src/camtest2.cpp:79:26: error: ‘imshow’ was not declared in this scope
        imshow("left",img_left);
                              ^
    make[2]: *** [CMakeFiles/camtest2.dir/src/camtest2.cpp.o] Error 1
    make[1]: *** [CMakeFiles/camtest2.dir/all] Error 2
    make: *** [all] Error 2

    出现这种问题的时候,一般是头文件不对,查一下你库存放的位置,版本不同 #include 后面写的是不同。

    他原来的程序是

    #include <cv.h>
    #include <highgui.h>

    而我的头文件是

    #include <opencv2/core/core.hpp>
    #include <opencv2/highgui/highgui.hpp>

    这样修改就好了。。。所以写成自己的才能调用成功。。。。。

     

  • 相关阅读:
    c# 移动winform窗体
    C# 通过反射动态创建对象的方法
    C# listView用法
    C# PropertyGrid总结
    C# 静态或动态调用C++动态链接库dll
    C# 加载C++创建的动态链接库dll
    C# 动态加载dll(.net)示例
    C# 关于泛型
    C# 中的指针使用
    C/S与B/S的区别
  • 原文地址:https://www.cnblogs.com/Jessica-jie/p/6560850.html
Copyright © 2011-2022 走看看