0

私が持っているこのコードでエラーに直面しています... 以前は、opencv Ptr クラスを使用する際に問題に直面していましたが、それを通常のネイティブ C++ ポインターに変更しました。それから、問題は entryPath.filename().c_str() が無効になるラベル付けにありました...したがって、組み込みのキャストを使用して文字列に変更しました。問題は evalData() にあります。私を助けてください

#include "stdafx.h"
#include <vector>
#include <boost/filesystem.hpp>
#include <opencv2/opencv.hpp>
#include <opencv2/nonfree/features2d.hpp>

using namespace std;
using namespace boost::filesystem;
using namespace cv;

//location of the training data
#define TRAINING_DATA_DIR "data\\train\\"
//location of the evaluation data
#define EVAL_DATA_DIR "dataeval\\"

////See article on BoW model for details
//Ptr<DescriptorMatcher> matcher = DescriptorMatcher::create("FlannBased");
//Ptr<DescriptorExtractor> extractor = DescriptorExtractor::create("SURF");
//Ptr<FeatureDetector> detector = FeatureDetector::create("SURF");

cv::DescriptorExtractor *extractor = new cv::SurfDescriptorExtractor();
cv::FeatureDetector *detector = new cv::SurfFeatureDetector(1000);
cv::DescriptorMatcher *matcher = new cv::FlannBasedMatcher;


//See article on BoW model for details
int dictionarySize = 1000;
TermCriteria tc(CV_TERMCRIT_ITER, 10, 0.001);
int retries = 1;
int flags = KMEANS_PP_CENTERS;

//See article on BoW model for details
BOWKMeansTrainer bowTrainer(dictionarySize, tc, retries, flags);
//See article on BoW model for details
BOWImgDescriptorExtractor bowDE(extractor, matcher);

/**
 * \brief Recursively traverses a folder hierarchy. Extracts features from the training images and adds them to the bowTrainer.
 */
void extractTrainingVocabulary(const path& basepath) {
    for (directory_iterator iter = directory_iterator(basepath); iter
            != directory_iterator(); iter++) {
        directory_entry entry = *iter;

        if (is_directory(entry.path())) {

            cout << "Processing directory " << entry.path().string() << endl;
            extractTrainingVocabulary(entry.path());

        } else {

            path entryPath = entry.path();
            if (entryPath.extension() == ".jpg") {

                cout << "Processing file " << entryPath.string() << endl;
                Mat img = imread(entryPath.string());
                if (!img.empty()) {
                    vector<KeyPoint> keypoints;
                    detector->detect(img, keypoints);
                    if (keypoints.empty()) { 
                        cerr << "Warning: Could not find key points in image: "
                                << entryPath.string() << endl;
                    } else {
                        Mat features;
                        extractor->compute(img, keypoints, features);
                        bowTrainer.add(features);
                    }
                } else {
                    cerr << "Warning: Could not read image: "
                            << entryPath.string() << endl;
                }

            }
        }
    }
}

/**
 * \brief Recursively traverses a folder hierarchy. Creates a BoW descriptor for each image encountered.
 */
void extractBOWDescriptor(const path& basepath, Mat& descriptors, Mat& labels) {
    for (directory_iterator iter = directory_iterator(basepath); iter
            != directory_iterator(); iter++) {
        directory_entry entry = *iter;
        if (is_directory(entry.path())) {
            cout << "Processing directory " << entry.path().string() << endl;
            extractBOWDescriptor(entry.path(), descriptors, labels);
        } else {
            path entryPath = entry.path();
            if (entryPath.extension() == ".jpg") {
                cout << "Processing file " << entryPath.string() << endl;
                Mat img = imread(entryPath.string());
                if (!img.empty()) {
                    vector<KeyPoint> keypoints;
                    detector->detect(img, keypoints);
                    if (keypoints.empty()) {
                        cerr << "Warning: Could not find key points in image: "
                                << entryPath.string() << endl;
                    } else {
                        Mat bowDescriptor;
                        bowDE.compute(img, keypoints, bowDescriptor);
                        descriptors.push_back(bowDescriptor);
                        float label=atof(entryPath.string().c_str());
                        labels.push_back(label);
                    }
                } else {
                    cerr << "Warning: Could not read image: "
                            << entryPath.string() << endl;
                }
            }
        }
    }
}


int main(int argc, char ** argv) {

    cout<<"Creating dictionary..."<<endl;
    extractTrainingVocabulary(path(TRAINING_DATA_DIR));
    vector<Mat> descriptors = bowTrainer.getDescriptors();
    int count=0;
    for(vector<Mat>::iterator iter=descriptors.begin();iter!=descriptors.end();iter++)
    {
        count+=iter->rows;
    }
    cout<<"Clustering "<<count<<" features"<<endl;
    Mat dictionary = bowTrainer.cluster();
    bowDE.setVocabulary(dictionary);
    cout<<"Processing training data..."<<endl;
    Mat trainingData(0, dictionarySize, CV_32FC1);
    Mat labels(0, 1, CV_32FC1);
    extractBOWDescriptor(path(TRAINING_DATA_DIR), trainingData, labels);

    NormalBayesClassifier classifier;
    cout<<"Training classifier..."<<endl;

    classifier.train(trainingData, labels);

    cout<<"Processing evaluation data..."<<endl;
    Mat evalData(0, dictionarySize, CV_32FC1);
    Mat groundTruth(0, 1, CV_32FC1);
    extractBOWDescriptor(path(EVAL_DATA_DIR), evalData, groundTruth);

    cout<<"Evaluating classifier..."<<endl;
    Mat results;
    classifier.predict(evalData, &results);

    double errorRate = (double) countNonZero(groundTruth - results) / evalData.rows;

    cout << "Error rate: " << errorRate << endl;

}

プログラムが evalData になるとエラーが発生します。助けてください

4

1 に答える 1

0

opencv::Ptrrefcounter スマート ポインター クラスです。このようなスマート ポインターの悪い例です。生のポインターを受け取る非明示的なコンストラクターがありますが、そのような変換の所有権を主張するためです。これはあなたがつまずいているものだと思います:

  1. new を使用してオブジェクトを作成します
  2. を受け取る関数にポインタを渡します。cv::Ptr
  3. cv::Ptrインスタンスが作成され、オブジェクトの所有権が取得されます
  4. cv::Ptrインスタンスが破棄され、割り当てられたオブジェクトが破棄されます
  5. あなたは生のポインターを使用していますが、その値はまだ変更されておらず、不思議な失敗が見られます
于 2013-05-05T08:49:32.537 に答える