0

我正在编写一个简单的程序,它从图像中提取描述符并将它们写入文件。

我将描述符保存在 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); 有什么我做错了吗?

任何帮助将不胜感激,因为我很困惑:)

谢谢,

吉尔。

4

1 回答 1

3

您正在使用 访问描述符矩阵int,因此矩阵的类型必须为CV_32SC1。你确定是那种类型?大多数描述符用float(CV_32F) 或unsigned char(CV_8U) 编码。检查那个desc.type() == CV_32SC1

顺便说一句,你应该使用cv::FileStorage来保存和加载描述符,它比直接访问文件要容易得多。

于 2013-07-14T20:44:26.793 回答