C++ Dlib load_image_dataset 问题
C++ Dlib load_image_dataset issues
当使用 dlibs load_image_dataset 加载一组图像时:
//------------
command_line_parser parser;
parser.parse(argc, argv); //inputs argc, argv as defined by main where argv is an .xml containing all file locations
dlib::array<array2d<rgb_pixel> > images;
std::vector<std::vector<rectangle> > object_locations, ignore;
cout << "Loading image dataset from metadata file " << parser[1] << endl;
ignore = load_image_dataset(images, object_locations, parser[1]);
cout << "Number of images loaded: " << images.size() << endl;
//---------------
我收到以下错误:
"dlib::array2d<T, mem_manager> &dlib::array2d<T, mem_manager>::operator=(dlib::array2d<T, mem_manager> &) [with T=dlib::rgb_pixel, mem_manager=dlib::default_memory_manager]" (declared at line 320 of "C:\..path-to-dlib...\dlib-18.16\dlib\..\dlib/image_processing/../image_processing/../matrix/../array2d/array2d_kernel.h") is inaccessible
如果我尝试这样存储 "images" 中的单个图像:
//--------
array2d<rgb_pixel> img;
img = images[i];
//-----------
但是如果我只是显示它就没有错误:
//------
image_window image_i(images[i], "Image i");
//---------
这是怎么回事,我该如何解决?
array2d 在设计上是不可复制的,因为复制图像很昂贵而且几乎总是不必要的。如果您想移动图像,请使用 swap()。如果您真的需要复制图像,那么您可以使用assign_image() 函数,或者您可以使用矩阵对象(可复制)代替array2d 来表示图像。
但真的,不要不必要地复制图像。
当使用 dlibs load_image_dataset 加载一组图像时:
//------------
command_line_parser parser;
parser.parse(argc, argv); //inputs argc, argv as defined by main where argv is an .xml containing all file locations
dlib::array<array2d<rgb_pixel> > images;
std::vector<std::vector<rectangle> > object_locations, ignore;
cout << "Loading image dataset from metadata file " << parser[1] << endl;
ignore = load_image_dataset(images, object_locations, parser[1]);
cout << "Number of images loaded: " << images.size() << endl;
//---------------
我收到以下错误:
"dlib::array2d<T, mem_manager> &dlib::array2d<T, mem_manager>::operator=(dlib::array2d<T, mem_manager> &) [with T=dlib::rgb_pixel, mem_manager=dlib::default_memory_manager]" (declared at line 320 of "C:\..path-to-dlib...\dlib-18.16\dlib\..\dlib/image_processing/../image_processing/../matrix/../array2d/array2d_kernel.h") is inaccessible
如果我尝试这样存储 "images" 中的单个图像:
//--------
array2d<rgb_pixel> img;
img = images[i];
//-----------
但是如果我只是显示它就没有错误:
//------
image_window image_i(images[i], "Image i");
//---------
这是怎么回事,我该如何解决?
array2d 在设计上是不可复制的,因为复制图像很昂贵而且几乎总是不必要的。如果您想移动图像,请使用 swap()。如果您真的需要复制图像,那么您可以使用assign_image() 函数,或者您可以使用矩阵对象(可复制)代替array2d 来表示图像。
但真的,不要不必要地复制图像。