我一直在使用Visual Studio,我想我一定搞乱了一些设置。我不能包含<iostream>
等基本内容。我该如何解决这个问题?
#include <iostream> // for standard I/O
#include <string> // for strings
#include <iomanip> // for controlling float print precision
#include <sstream> // string to number conversion
#include <opencv2/imgproc/imgproc.hpp> // Gaussian Blur
#include <opencv2/core/core.hpp> // Basic OpenCV structures (cv::Mat, Scalar)
#include <opencv2/highgui/highgui.hpp> // OpenCV window I/O
using namespace std;
using namespace cv;
以上所有线条均为红色波浪线。我的猜测是在尝试配置Visual Studio以使用OpenCv时,我搞砸了一些设置。
答案 0 :(得分:3)
很可能,你忘记添加'using namespace std',因为没有它,iostream中几乎没有任何内容。如果你“无法找到...”,那么你就遇到了安装问题,应该重新安装Visual Studio,因为标题没有正确放置。
希望这有帮助,随时发布您的代码,我可以告诉您确定问题是什么,但这是他们中最有可能的。