我正在尝试扩展 lexical_cast 以处理 string->cv::Point 转换,代码如下:
#include <iostream>
#include <opencv2/opencv.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
namespace boost {
template<>
cv::Point2f lexical_cast(const std::string &str) {
std::vector<std::string> parts;
boost::split(parts, str, boost::is_any_of(","));
cv::Point2f R;
R.x = boost::lexical_cast<float>(parts[0]);
R.y = boost::lexical_cast<float>(parts[1]);
return R;
}
}
int main(int argc, char **argv) {
auto p = boost::lexical_cast<cv::Point2f>(std::string("1,2"));
std::cout << "p = " << p << std::endl;
return 0;
}
而且效果很好.. 但是,cv::Point2f
实际上cv::Point_<T>
T 可以是 int、float、double 等。无论如何我都找不到将模板化的 arg 暴露给 lexical_cast,这样我就可以拥有一个可以处理所有的 lexical_cast 函数cv::Point_<T>
类型。