t0tott 2019-10-23 11:11 采纳率: 0%
浏览 920

C++导入*.h头文件后 出现LNK2001无法解析的外部符号 含有opencv库

seg.h 头文件导入至 Cpig.cpp文件后出现如下错误:

1>------ 已启动生成: 项目: AnimalsFatMeasure, 配置: Release x64 ------
1>Cpig.cpp
1>seg.cpp
1>Cpig.obj : error LNK2001: 无法解析的外部符号 "class cv::Mat g_srcImage" (?g_srcImage@@3VMat@cv@@A)
1>Cpig.obj : error LNK2001: 无法解析的外部符号 "class cv::Mat g_grayImage" (?g_grayImage@@3VMat@cv@@A)
1>D:\AnimalsFatMeasure\AnimalsFatMeasure\x64\Release\AnimalsFatMeasure.exe : fatal error LNK1120: 2 个无法解析的外部命令
//seg.h
#ifndef __SEG_H__
#define __SEG_H__

#include"stdafx.h"
#include <iostream>
#include<opencv2\opencv.hpp>
#include<opencv2/imgproc/imgproc.hpp>
#include<vector>
#include<math.h>
#include<algorithm>
#include<time.h>
#include<io.h>
#include<stdio.h>
#include<string>

using namespace cv;
using namespace std;

extern Mat g_srcImage;
extern Mat g_grayImage;

inline void ImageLoad(string imagefile) {

    Mat ori_image = imread(imagefile, 0);
    Rect rect(100, 100, 540, 400);
    ori_image = ori_image(rect);//截取图像
    threshold(ori_image, ori_image, 1, 255, CV_THRESH_BINARY);//二值化
    //threshold(ori_image, ori_image, g_nThresh, g_nMaxThresh, CV_THRESH_BINARY);//二值化
    //waitKey(0);
    imwrite("binaryimg.jpg", ori_image);

    g_srcImage = imread("binaryimg.jpg", 1);
    if (!g_srcImage.data)
    {
        printf("读取错误,图片不存在");
    }
    //得到原图的灰度图并进行平滑
    //Point point;
    cvtColor(g_srcImage, g_grayImage, COLOR_BGR2GRAY);
    blur(g_grayImage, g_grayImage, Size(3, 3));
    on_ContourChange(0, 0);
}

// Cpig.cpp: 实现文件

#include <opencv2/opencv.hpp>
#include "stdafx.h"
#include "Cpig.h"
#include "afxdialogex.h"
#include "resource.h"
#include <algorithm>
#include <fstream>
#include <string>
#include <windows.h> 
#include <iostream>
#include "INFOR.h"
#include "seg.h"

  • 写回答

2条回答 默认 最新

  • luiio 2019-11-05 14:30
    关注

    1.链接器-输入 里边确认引用了相应的.lib文件吗?
    2.64位release的输出exe的文件下,确认有opencv的dll吗?如果配置的的是环境变量的形式,确认环境变量是不是对的,以及环境变量是否引用了。
    3.还有就是64release,64debug,32debug,32release是否配置错地方了。
    4.opencv的版本是不是64位的。

    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀