Caffe学习:build/tools/compute_image_mean

caffe/build/tools/compute_image_mean用于计算训练图片均值,在利用模型进行分类时需要用到

  • 编写命令,实现图片格式转化:
#!bin/sh
# 工具目录
TOOLS_ROOT=caffe/build/tools
# train_db是db文件夹目录,mean.binaryproto是生成的均值文件名
$TOOLS_ROOT/compute_image_mean train_db/ mean.binaryproto
  • 参数详见caffe/tools/compute_image_mean.cpp(好吧只有一个参数):
DEFINE_string(backend, "lmdb", "The backend {leveldb, lmdb} containing the images");

你可能感兴趣的:(caffe)