error C2872: “Tensor”: 不明确的符号
我使用VS2022以及Eigen3库、libtorch库出现了冲突,可是我也没用using namespace ,为什么会冲突?我该怎么做?
#include"torch/torch.h"
#include <Eigen/Core>
#include<Eigen/Dense>
#include <opencv2/opencv.hpp>
#include <iostream>
#include <opencv2/core/eigen.hpp>
#include <algorithm>
#include <iterator>
#include <vector>
#include<random>
int main() {
torch::Tensor tensor = torch::rand({ 5,3 });
std::cout << tensor << std::endl;
}
报错内容: