当我在C ++中推回一对时出错

杰克·辛普森

我一直在尝试编译我的程序,该程序应该将一个字符串和一个浮点对推回向量上:

typedef std::pair<string, float> Prediction;

std::vector<Prediction> predictions;
  for ( int i = 0 ; i < output.size(); i++ ) {
    std::vector<int> maxN = Argmax(output[i], 1);
    int idx = maxN[0];
    predictions.push_back(std::make_pair(labels_[idx], output[idx]));
  }
  return predictions;

但是,每次尝试编译时,都会出现此错误:

错误:没有匹配的成员函数可调用“ push_back”预测。push_back(std :: make_pair(labels_ [idx],output [idx]));

我也收到其他一些警告,例如

候选函数不可行:对于第一个参数_LIBCPP_INLINE_VISIBILITY,没有已知的从'pair <[...],类型名__make_pair_return>&> :: type>'到'const pair <[...],float>'的已知转换,无效push_back(const_reference __X);

候选函数不可行:对于第一个参数_LIBCPP_INLINE_VISIBILITY void push_back(value_type && __x,没有从'pair <[...],类型名__make_pair_return>&> :: type>'到'pair <[...],float>'的已知转换);

我一直在尝试重写内容并修改我的函数,但是我无法弄清楚为什么仍然存在此错误,有人知道我可以做些什么来解决此问题吗?

这是上下文文件中的代码(如果有帮助的话),头文件:

/**
 * Classification System
 */

#ifndef __CLASSIFIER_H__
#define __CLASSIFIER_H__

#include <caffe/caffe.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <algorithm>
#include <iosfwd>
#include <memory>
#include <string>
#include <utility>
#include <vector>


using namespace caffe;  // NOLINT(build/namespaces)
using std::string;

/* Pair (label, confidence) representing a prediction. */
typedef std::pair<string, float> Prediction;

class Classifier {
 public:
  Classifier(const string& model_file,
             const string& trained_file,
             const string& label_file);

  std::vector< Prediction > Classify(const std::vector<cv::Mat>& img);

 private:

  std::vector< std::vector<float> > Predict(const std::vector<cv::Mat>& img, int nImages);

  void WrapInputLayer(std::vector<cv::Mat>* input_channels, int nImages);

  void Preprocess(const std::vector<cv::Mat>& img,
                  std::vector<cv::Mat>* input_channels, int nImages);

 private:
  shared_ptr<Net<float> > net_;
  cv::Size input_geometry_;
  int num_channels_;
  std::vector<string> labels_;
};

#endif /* __CLASSIFIER_H__ */

类文件:

#define CPU_ONLY
#include "Classifier.h"

using namespace caffe;  // NOLINT(build/namespaces)
using std::string;

Classifier::Classifier(const string& model_file,
                       const string& trained_file,
                       const string& label_file) {
#ifdef CPU_ONLY
  Caffe::set_mode(Caffe::CPU);
#else
  Caffe::set_mode(Caffe::GPU);
#endif

  /* Load the network. */
  net_.reset(new Net<float>(model_file, TEST));
  net_->CopyTrainedLayersFrom(trained_file);

  CHECK_EQ(net_->num_inputs(), 1) << "Network should have exactly one input.";
  CHECK_EQ(net_->num_outputs(), 1) << "Network should have exactly one output.";

  Blob<float>* input_layer = net_->input_blobs()[0];
  num_channels_ = input_layer->channels();
  CHECK(num_channels_ == 3 || num_channels_ == 1)
    << "Input layer should have 1 or 3 channels.";
  input_geometry_ = cv::Size(input_layer->width(), input_layer->height());

  /* Load labels. */
  std::ifstream labels(label_file.c_str());
  CHECK(labels) << "Unable to open labels file " << label_file;
  string line;
  while (std::getline(labels, line))
    labels_.push_back(string(line));

  Blob<float>* output_layer = net_->output_blobs()[0];
  CHECK_EQ(labels_.size(), output_layer->channels())
    << "Number of labels is different from the output layer dimension.";
}

static bool PairCompare(const std::pair<float, int>& lhs,
                        const std::pair<float, int>& rhs) {
  return lhs.first > rhs.first;
}

/* Return the indices of the top N values of vector v. */
static std::vector<int> Argmax(const std::vector<float>& v, int N) {
  std::vector<std::pair<float, int> > pairs;
  for (size_t i = 0; i < v.size(); ++i)
    pairs.push_back(std::make_pair(v[i], i));
  std::partial_sort(pairs.begin(), pairs.begin() + N, pairs.end(), PairCompare);

  std::vector<int> result;
  for (int i = 0; i < N; ++i)
    result.push_back(pairs[i].second);
  return result;
}

std::vector<Prediction> Classifier::Classify(const std::vector<cv::Mat>& img) {
  std::vector< std::vector<float> > output = Predict(img, img.size());

  std::vector<Prediction> predictions;
  for ( int i = 0 ; i < output.size(); i++ ) {
    std::vector<int> maxN = Argmax(output[i], 1);
    int idx = maxN[0];
    predictions.push_back(std::make_pair(labels_[idx], output[idx]));
  }
  return predictions;
}

std::vector< std::vector<float> > Classifier::Predict(const std::vector<cv::Mat>& img, int nImages) {
  Blob<float>* input_layer = net_->input_blobs()[0];
  input_layer->Reshape(nImages, num_channels_,
                       input_geometry_.height, input_geometry_.width);
  /* Forward dimension change to all layers. */
  net_->Reshape();

  std::vector<cv::Mat> input_channels;
  WrapInputLayer(&input_channels, nImages);

  Preprocess(img, &input_channels, nImages);

  net_->ForwardPrefilled();

  /* Copy the output layer to a std::vector */

  Blob<float>* output_layer = net_->output_blobs()[0];
  std::vector <std::vector<float> > ret;
  for (int i = 0; i < nImages; i++) {
    const float* begin = output_layer->cpu_data() + i*output_layer->channels();
    const float* end = begin + output_layer->channels();
    ret.push_back( std::vector<float>(begin, end) );
  }
  return ret;
}

/* Wrap the input layer of the network in separate cv::Mat objects
 * (one per channel). This way we save one memcpy operation and we
 * don't need to rely on cudaMemcpy2D. The last preprocessing
 * operation will write the separate channels directly to the input
 * layer. */
void Classifier::WrapInputLayer(std::vector<cv::Mat>* input_channels, int nImages) {
  Blob<float>* input_layer = net_->input_blobs()[0];

  int width = input_layer->width();
  int height = input_layer->height();
  float* input_data = input_layer->mutable_cpu_data();
  for (int i = 0; i < input_layer->channels()* nImages; ++i) {
    cv::Mat channel(height, width, CV_32FC1, input_data);
    input_channels->push_back(channel);
    input_data += width * height;
  }
}

void Classifier::Preprocess(const std::vector<cv::Mat>& img,
                            std::vector<cv::Mat>* input_channels, int nImages) {
  for (int i = 0; i < nImages; i++) {
      vector<cv::Mat> channels;
      cv::split(img[i], channels);
      for (int j = 0; j < channels.size(); j++){
           channels[j].copyTo((*input_channels)[i*num_channels_[0]+j]);
      }
  }
}

非常感谢!

ArchHaskeller
typedef std::pair<string, float> Prediction;
std::vector<Prediction> predictions;
std::vector< std::vector<float> > output = Predict(img, img.size());

make_pair需要一个字符串和一个float值output [idx]给出float向量因此,您仅需要float的output [i] [idx]即可

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

在C ++中返回一对时避免两次移动

C ++双重释放或损坏,当我认为我只释放一次时出错

在地图中插入一对时,C ++是否需要附加代码?

当我使用free()时,C中的程序随机崩溃

当我在 C 中输入操作(+、-、*、/等)时,scanf 失败

当我在 c 中调用函数时出现问题

当我键入^ C中止命令时显示“ ^ C”

当我在python中写“ a,b,c = [[],] * 3”时会发生什么?看来a,b,c是同一对象

当我运行/ bin / sh -c时,不同的ulimit

当我使用C ++库的函数时失败

当我添加C ++代码时,Xcode iOS项目失败

在C#中执行SQL查询时出错,当我手动输入它时没有错误

当我来自C中的另一个函数时,无需memset即可工作

C# HttpWebResponse.GetResponse() 当我把它放在一个方法中时挂起

当我在 C 中写入文件时,它会以不同的行写入。怎么写成一行?

当我声明一个ajax函数时出错

当我使用 Xpath 在 Selenium C# 中搜索元素时,我的测试总是失败

当我按C重新加载/重新执行代码时出错?

当我尝试在构建器中显示SnackBar时出错

当我尝试删除元素时出错

当我尝试打开目录时出错

当我在C / C ++中调用recvfrom()函数时,读取逻辑是什么?

当我在 C# 中使用“While”时,我不想打印最后的计算

当我运行此函数时,为什么我的iex返回“ -C”或“ -A”

当我有多个 if 语句时,为什么我的返回值会加起来?C

当我只分配[30]时,我可以访问数组元素[32]。(C)

当我将一个类对象推回到一个初始化的类向量时,我得到了一个很长的、奇怪的错误

当我从 C 中的文件中读取单词时出现 while 循环问题

当我有一个按钮时,C#键按下不起作用