嗨,我有一些 boost::multi_array 定义如下:
typedef boost::multi_array<double, 3> region_prior_integral_image
我正在尝试创建一个region_prior_integral_image
类似以下的数组:
unordered_map<string, int> filename_to_hash_key_map = get_filename_to_hash_key_map();
unordered_map<string, region_prior_integral_image> filename_to_region_prior_map = get_region_prior_integral_images();
region_prior_integral_image* image_cache = new region_prior_integral_image[5];
for(unordered_map<string, int>::iterator it = filename_to_hash_key_map.begin(); it != filename_to_hash_key_map.end(); it++){
image_cache[it->second] = filename_to_region_prior_map[it->first];
}
但是程序以以下内容终止:SemanticTextonForest: /home/aly/libs/boost_1_51_0/stage/include/boost/multi_array/multi_array_ref.hpp:488: boost::multi_array_ref<T, NumDims>& boost::multi_array_ref<T, NumDims>::operator=(const ConstMultiArray&) [with ConstMultiArray = boost::multi_array<double, 3ul>, T = double, long unsigned int NumDims = 3ul, boost::multi_array_ref<T, NumDims> = boost::multi_array_ref<double, 3ul>]: Assertion
std::equal(other.shape(),other.shape()+this->num_dimensions(), this->shape())' failed.`
我不知道为什么?
我知道我可以只使用一个向量,但为了论证,可以说我想要一个 region_prior_integral_images 数组
谢谢