今天在vs2010里读取相对路径下的图片文件出了点问题,于是查了一下相对路径的编程知识,记录下来分享给大家:
问题描述:path=".\\TrainData\\"+img_path[i]; 例如为path=.\TrainData\1.jpg的时候,此图片究竟在哪呢?
问题解决:此时.vcxproj 和当前运行的.cpp文件所在目录E:\vehicle\SVM_Train_Predict_HOG_vehicle
train 64\SVM_Train_Predict_HOG,.sln文件所在目录E:\vehicle\SVM_Train_Predict_HOG_vehicle train 64,在此网页http://blog.csdn.net/sszgg2006/article/details/8447176 中查到:
"./" 加不加都一样,就是指当前目录,"../" 表示当前目录的上级目录,即当前的父目录。这里的当前目录就是指.vcxproj
和当前运行的.cpp文件所在目录E:\vehicle\SVM_Train_Predict_HOG_vehicle train 64\SVM_Train_Predict_HOG,而不是.sln文件所在目录,很明显path=.\TrainData\1.jpg的时候,此图片所在目录为E:\vehicle\SVM_Train_Predict_HOG_vehicle
train 64\SVM_Train_Predict_HOG\TrainData\1.jpg
时间: 2024-10-10 11:15:36