caffe修改输入resize

OpenCV提供了resize函数来改变图像的大小,函数原型如下:

[cpp]  view plain  copy
  1. void resize(InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation=INTER_LINEAR );  


先解释一下各个参数的意思:

src:输入,原图像,即待改变大小的图像;

dst:输出,改变大小之后的图像,这个图像和原图像具有相同的内容,只是大小和原图像不一样而已;

dsize:输出图像的大小。如果这个参数不为0,那么就代表将原图像缩放到这个Size(width,height)指定的大小;如果这个参数为0,那么原图像缩放之后的大小就要通过下面的公式来计算:

dsize = Size(round(fx*src.cols), round(fy*src.rows))

其中,fx和fy就是下面要说的两个参数,是图像width方向和height方向的缩放比例。

fx:width方向的缩放比例,如果它是0,那么它就会按照(double)dsize.width/src.cols来计算;

fy:height方向的缩放比例,如果它是0,那么它就会按照(double)dsize.height/src.rows来计算;

interpolation:这个是指定插值的方式,图像缩放之后,肯定像素要进行重新计算的,就靠这个参数来指定重新计算像素的方式,有以下几种:

  • INTER_NEAREST - 最邻近插值
  • INTER_LINEAR - 双线性插值,如果最后一个参数你不指定,默认使用这种方法
  • INTER_AREA - resampling using pixel area relation. It may be a preferred method for image decimation, as it gives moire’-free results. But when the image is zoomed, it is similar to the INTER_NEAREST method.
  • INTER_CUBIC - 4x4像素邻域内的双立方插值
  • INTER_LANCZOS4 - 8x8像素邻域内的Lanczos插值


使用注意事项:

1. dsize和fx/fy不能同时为0,要么你就指定好dsize的值,让fx和fy空置直接使用默认值,就像

resize(img, imgDst, Size(30,30));

要么你就让dsize为0,指定好fx和fy的值,比如fx=fy=0.5,那么就相当于把原图两个方向缩小一倍!


2. 至于最后的插值方法,正常情况下使用默认的双线性插值就够用了。

几种常用方法的效率是:最邻近插值>双线性插值>双立方插值>Lanczos插值;

但是效率和效果成反比,所以根据自己的情况酌情使用。


3. 正常情况下,在使用之前dst图像的大小和类型都是不知道的,类型从src图像继承而来,大小也是从原图像根据参数计算出来。但是如果你事先已经指定好dst图像的大小,那么你可以通过下面这种方式来调用函数:

[cpp]  view plain  copy
  1. resize(src, dst, dst.size(), 0, 0, interpolation);  


caffe,将数据转换为lmdb/leveldb的convert_imageset.cpp源码可见

  1. // This program converts a set of images to a lmdb/leveldb by storing them  
  2. // as Datum proto buffers.  
  3. // Usage:  
  4. //   convert_imageset [FLAGS] ROOTFOLDER/ LISTFILE DB_NAME  
  5. //  
  6. // where ROOTFOLDER is the root folder that holds all the images, and LISTFILE  
  7. // should be a list of files as well as their labels, in the format as  
  8. //   subfolder1/file1.JPEG 7  
  9. //   ....  
  10.   
  11. //这份代码是caffe提供的,在caffe里的tools文件目录里,用于将图像数据转换为lmdb或者leveldb格式。  
  12. //使用方法: 在shell 脚本里写入以下代码  
  13. //     convert_imageset [参数设置] [图像存放路径] [图像的LISTFILE文件] [转换后数据存储位置]   
  14. //例子:  
  15. //   $TOOLS/convert_imageset \  
  16. //   --resize_height=$RESIZE_HEIGHT \  
  17. //   --resize_width=$RESIZE_WIDTH \  
  18. //   --shuffle \  
  19. //   $VAL_DATA_ROOT \  
  20. //   $IMAGE_LIST_ROOT/val_2.list \  
  21. //   $ROOT_LMDB/val  
  22.   
  23. #include  //输出数组的内容,对数组进行升幂排序,反转数组内容等操作  
  24. #include   // NOLINT(readability/streams)  
  25. #include   
  26. #include  //定义了一个pair类型,pair类型用于存储一对数据  
  27. #include   
  28.   
  29. #include "boost/scoped_ptr.hpp"  //智能指针头文件  
  30. #include "gflags/gflags.h"  
  31. #include "glog/logging.h" //glog头文件,google的开源日志系统  
  32.   
  33. #include "caffe/proto/caffe.pb.h"  
  34. #include "caffe/util/db.hpp"  
  35. #include "caffe/util/format.hpp"  
  36. #include "caffe/util/io.hpp"  
  37. #include "caffe/util/rng.hpp"  
  38.   
  39. using namespace caffe;  // NOLINT(build/namespaces)  
  40. using std::pair;  
  41. using boost::scoped_ptr;  
  42.   
  43. //参数选择  
  44. DEFINE_bool(gray, false,    //将图像作为灰度图处理,处理后为单通道的  
  45.     "When this option is on, treat images as grayscale ones");  
  46. DEFINE_bool(shuffle, false,  //随机乱序处理图像及其标注  
  47.     "Randomly shuffle the order of images and their labels");  
  48. DEFINE_string(backend, "lmdb",  //数据存储格式,默认lmdb  
  49.         "The backend {lmdb, leveldb} for storing the result");  
  50. DEFINE_int32(resize_width, 0, "Width images are resized to");  //图像宽度重置  
  51. DEFINE_int32(resize_height, 0, "Height images are resized to");//图像高度重置  
  52. DEFINE_bool(check_size, false,   //检查所有数据大小一致  
  53.     "When this option is on, check that all the datum have the same size");  
  54. DEFINE_bool(encoded, false,   //是否将处理的图像保存  
  55.     "When this option is on, the encoded image will be save in datum");  
  56. DEFINE_string(encode_type, "",  //处理得到的图像保存的格式  
  57.     "Optional: What type should we encode the image as ('png','jpg',...).");  
  58.   
  59. int main(int argc, char** argv) {  
  60. #ifdef USE_OPENCV  
  61.   ::google::InitGoogleLogging(argv[0]);   //初始化日志  
  62.   // Print output to stderr (while still logging)  
  63.   FLAGS_alsologtostderr = 1;  
  64.   
  65. #ifndef GFLAGS_GFLAGS_H_  
  66.   namespace gflags = google;  
  67. #endif  
  68.   
  69.   gflags::SetUsageMessage("Convert a set of images to the leveldb/lmdb\n"  //设置使用信息  
  70.         "format used as input for Caffe.\n"  
  71.         "Usage:\n"  
  72.         "    convert_imageset [FLAGS] ROOTFOLDER/ LISTFILE DB_NAME\n"  
  73.         "The ImageNet dataset for the training demo is at\n"  
  74.         "    http://www.image-net.org/download-images\n");  
  75.   gflags::ParseCommandLineFlags(&argc, &argv, true);  //调用解析命令行函数  
  76.   //argc,传给main()的命令行参数个数  
  77.   //argv:字符串数组  
  78.   //argc,argv就是main函数的入口参数,因为这个函数会改变他们的值,所以都是以指针传入  
  79.   //第三个参数被称为remove_flags,若为true,ParseCommandLineFlags会从argv中移除标识和它们的参数,相应减少argc的值。然后 argv 只保留命令行参数;若为false,ParseCommandLineFlags会保留argc不变,但将会重新调整它们的顺序,使得标识在前面  
  80.   
  81.   if (argc < 4) {  
  82.     gflags::ShowUsageWithFlagsRestrict(argv[0], "tools/convert_imageset");  
  83.     return 1;  
  84.   }  
  85.   
  86.   const bool is_color = !FLAGS_gray;  
  87.   const bool check_size = FLAGS_check_size;  
  88.   const bool encoded = FLAGS_encoded;  
  89.   const string encode_type = FLAGS_encode_type;  
  90.   //argv第二个参数为图像的LISTFILE  
  91.   std::ifstream infile(argv[2]);  
  92.   std::vectorint> > lines;  
  93.   std::string filename;  
  94.   int label;  
  95.   //存储文件名和标注  
  96.   while (infile >> filename >> label) {  
  97.     lines.push_back(std::make_pair(filename, label));  
  98.   }  
  99.   //乱序存储  
  100.   if (FLAGS_shuffle) {  
  101.     // randomly shuffle data  
  102.     LOG(INFO) << "Shuffling data";  //打印,类似于C++的stream  
  103.     shuffle(lines.begin(), lines.end());  
  104.   }  
  105.   LOG(INFO) << "A total of " << lines.size() << " images.";  
  106.   
  107.   if (encode_type.size() && !encoded)  
  108.     LOG(INFO) << "encode_type specified, assuming encoded=true.";  
  109.   //设置图像的长度,宽度  
  110.   int resize_height = std::max<int>(0, FLAGS_resize_height);  
  111.   int resize_width = std::max<int>(0, FLAGS_resize_width);  
  112.   
  113.   // Create new DB  
  114.   scoped_ptr db(db::GetDB(FLAGS_backend));  
  115.   db->Open(argv[3], db::NEW); //argv第三个参数为db存储位置  
  116.   scoped_ptr txn(db->NewTransaction());  
  117.   
  118.   // Storing to db  
  119.   std::string root_folder(argv[1]);  //argv第一个参数为图像路径  
  120.   Datum datum;  
  121.   int count = 0;  
  122.   int data_size = 0;  
  123.   bool data_size_initialized = false;  
  124.   //将LISTFILE里的记录,逐条转换为lmdb/leveldb格式  
  125.   for (int line_id = 0; line_id < lines.size(); ++line_id) {  
  126.     bool status;  
  127.     std::string enc = encode_type;  
  128.     //保存图像处理  
  129.     if (encoded && !enc.size()) {  
  130.       // Guess the encoding type from the file name  
  131.       string fn = lines[line_id].first;  //list 里的第一个参数,即为文件的路径名  
  132.       size_t p = fn.rfind('.');  
  133.       if ( p == fn.npos )  
  134.         LOG(WARNING) << "Failed to guess the encoding of '" << fn << "'";  
  135.       enc = fn.substr(p);  
  136.       std::transform(enc.begin(), enc.end(), enc.begin(), ::tolower);  
  137.     }  
  138.     status = ReadImageToDatum(root_folder + lines[line_id].first,  
  139.         lines[line_id].second, resize_height, resize_width, is_color,  
  140.         enc, &datum);  
  141.     if (status == falsecontinue;  
  142.     //检查图像尺寸  
  143.     if (check_size) {  
  144.       if (!data_size_initialized) {  
  145.         data_size = datum.channels() * datum.height() * datum.width();  
  146.         data_size_initialized = true;  
  147.       } else {  
  148.         const std::string& data = datum.data();  
  149.         CHECK_EQ(data.size(), data_size) << "Incorrect data field size "  
  150.             << data.size();  
  151.       }  
  152.     }  
  153.     // sequential  
  154.     string key_str = caffe::format_int(line_id, 8) + "_" + lines[line_id].first;  
  155.   
  156.     // Put in db  
  157.     string out;  
  158.     CHECK(datum.SerializeToString(&out));  
  159.     txn->Put(key_str, out);  
  160.   
  161.     if (++count % 1000 == 0) {  
  162.       // Commit db  
  163.       txn->Commit();  
  164.       txn.reset(db->NewTransaction());  
  165.       LOG(INFO) << "Processed " << count << " files.";  
  166.     }  
  167.   }  
  168.   // write the last batch  
  169.   if (count % 1000 != 0) {  
  170.     txn->Commit();  
  171.     LOG(INFO) << "Processed " << count << " files.";  
  172.   }  
  173. #else  
  174.   LOG(FATAL) << "This tool requires OpenCV; compile with USE_OPENCV.";  
  175. #endif  // USE_OPENCV  
  176.   return 0;  

是使用 ReadImageToDatum函数读入图片,根据输入参数可知,输出为resize后的图像

ReadImageToDatum 函数:

读入图像到Datum

bool ReadImageToDatum(const string& filename, const int label,
    const int height, const int width, const bool is_color,
    const std::string & encoding, Datum* datum) {
  cv::Mat cv_img = ReadImageToCVMat(filename, height, width, is_color);
  if (cv_img.data) {
    if (encoding.size()) {
      if ( (cv_img.channels() == 3) == is_color && !height && !width &&
          matchExt(filename, encoding) )
        return ReadFileToDatum(filename, label, datum);
      std::vector buf;
      cv::imencode("."+encoding, cv_img, buf);
      datum->set_data(std::string(reinterpret_cast<char*>(&buf[0]),
                      buf.size()));
      datum->set_label(label);
      datum->set_encoded(true);
      return true;
    }
    CVMatToDatum(cv_img, datum);//cvmat转为Datum格式
    datum->set_label(label);
    return true;
  } else {
    return false;
  }
}

ReadImageToDatum函数又是调用ReadImageToCVMat函数读入图像和resize的宽高进行缩放的

ReadImageToCVMat 函数:

以cvMat格式读入图像

cv::Mat ReadImageToCVMat(const string& filename,//is_color 为1读入彩色图像,0灰度图
    const int height, const int width, const bool is_color) {
    //height,width都不为0则把图像resize 到height*width
  cv::Mat cv_img;
  int cv_read_flag = (is_color ? CV_LOAD_IMAGE_COLOR :
    CV_LOAD_IMAGE_GRAYSCALE);
  cv::Mat cv_img_origin = cv::imread(filename, cv_read_flag);//读入图像
  if (!cv_img_origin.data) {
    LOG(ERROR) << "Could not open or find file " << filename;
    return cv_img_origin;
  }
  if (height > 0 && width > 0) {
    cv::resize(cv_img_origin, cv_img, cv::Size(width, height));
  } else {
    cv_img = cv_img_origin;
  }
  return cv_img;
}
可以看出caffe底层是使用opencv的默认双线性差值的resize方法,通过比较可知opencv的resize属性只有area后的图像质量较好,保存信息较为
丰富,不会失去边缘信息,因此改resize方式,重新make,使用area属性的caffe。

 










你可能感兴趣的:(opencv,图像处理,caffe)