zoukankan      html  css  js  c++  java
  • OpenCv error :unresolved external symbol(链接库没有加上)

    Error 如下:
    Linking...
    : error LNK2001: unresolved external symbol _cvDestroyWindow
    : error LNK2001: unresolved external symbol _cvLoadImage
    : error LNK2001: unresolved external symbol _cvReleaseCapture
    : error LNK2001: unresolved external symbol _cvReleaseImage
    : error LNK2001: unresolved external symbol _cvWaitKey
    : error LNK2001: unresolved external symbol _cvFlip
    : error LNK2001: unresolved external symbol _cvCopy
    : error LNK2001: unresolved external symbol _cvCreateImage
    : error LNK2001: unresolved external symbol _cvRetrieveFrame
    : error LNK2001: unresolved external symbol _cvGrabFrame
    : error LNK2001: unresolved external symbol _cvNamedWindow
    : error LNK2001: unresolved external symbol _cvCreateFileCapture
    : error LNK2001: unresolved external symbol _cvCreateCameraCapture
    : error LNK2001: unresolved external symbol _cvCreateMemStorage
    : error LNK2001: unresolved external symbol _cvLoad
    : error LNK2001: unresolved external symbol _cvShowImage
    : error LNK2001: unresolved external symbol _cvCircle
    : error LNK2001: unresolved external symbol _cvGetSeqElem
    : error LNK2001: unresolved external symbol _cvGetTickFrequency
    : error LNK2001: unresolved external symbol _cvHaarDetectObjects
    : error LNK2001: unresolved external symbol _cvGetTickCount
    : error LNK2001: unresolved external symbol _cvClearMemStorage
    : error LNK2001: unresolved external symbol _cvEqualizeHist
    : error LNK2001: unresolved external symbol _cvResize
    : error LNK2001: unresolved external symbol _cvCvtColor
    : fatal error LNK1120: 25 unresolved externals
    Error executing link.exe.
    - 26 error(s), 0 warning(s)
     
    Solution如下: 
    Menu:Project->Settings,选择右边的link标签,在Object/library modules附加上 cxcore.lib cv.lib ml.lib cvaux.lib highgui.lib cvcam.lib,然后确定,重新编译、链接即可!

    From:http://blog.csdn.net/abcjennifer/article/details/7562719

  • 相关阅读:
    一个高级的makefile文件
    poj3616题(动态规划),看了别人的提示,自己又写了一遍
    浅谈C++ IO标准库(1)
    https证书安装踩坑
    一个简单通知服务的开发和搭建
    WCF学习笔记
    线程(Thread)、线程池(ThreadPool)技术
    BackgroundWorker与线程使用
    使用ITextSharp生成PDF文件心得
    值类型与引用类型
  • 原文地址:https://www.cnblogs.com/asmer-stone/p/3995617.html
Copyright © 2011-2022 走看看