我正在编写一个简单的程序,从图像中提取描述符并将它们写入文件。
我将描述符保存在Mat变量中,但在尝试访问它时我得到了错误的值。
以下是代码:
string s = format("%s\\%s\\img%d.ppm", dataset_dir.c_str(), dsname, k);
Mat imgK = imread(s, 0);
if( imgK.empty() )
break;
detector->detect(imgK, kp);
descriptor->compute(imgK, kp, desc);
//writing the descriptors to a file
char fileName[512];
sprintf(fileName,"C:\\BinaryDescriptors\\OpenCVRes\\%s\\%s\\Descriptors%d.txt",descriptor_name,dsname,k);
FILE * fid;
fid=fopen(fileName,"a+");
for (int ix=0; ix< kp.size(); ix++){
fprintf(fid,"%f \t%f", kp[ix].pt.x,kp[ix].pt.y);
fprintf(fid, "\t1 \t0 \t1");
fflush(fid);
//writing the descriptor
for (int jx=0;jx<desc.cols;jx++){
int gil = desc.at<int>(ix,jx);
printf("AAAA %d", gil);
fprintf(fid,"\t%d",desc.at<int>(ix,jx));
fflush(fid);
}
}
fprintf(fid,"\n");
fclose(fid);
我正在访问描述符矩阵的行是int gil = desc.at int(ix,jx);有什么我做错了吗?
任何帮助将不胜感激,因为我很困惑:)
谢谢,
吉尔。
答案 0 :(得分:3)
您正在使用int
访问描述符矩阵,因此矩阵必须是CV_32SC1
类型。你确定它是那种类型吗?大多数描述符都使用float
(CV_32F)或unsigned char
(CV_8U)进行编码。检查desc.type() == CV_32SC1
。
顺便说一句,您应该使用cv::FileStorage
来保存和加载描述符,这比直接访问文件容易得多。