粗大メモ置き場

個人用,たまーに来訪者を意識する雑記メモ

2017-08-15から1日間の記事一覧

How to split string using multiple delimeters / and convert to double array in C++

cpp

GOAL: get double array from "[1.1, 3.3]" Split string into string vector Give it try Convert string vector to vector of double try? Written as a Function GOAL: get double array from "[1.1, 3.3]" Unfortunately std::string do not have split …

ROS publish the camera info in C++ (PerceptIn Camera)

ROS

I'm now using PerceptIn camera to make ROS wrapper. Publish camera image Publish Camera info Initialization and put value Publishing When debugging Publish camera image See the sample code online_feature.cpp to check how to get image from …

Python,c++でyamlファイル読み込み

jsonに引き続きyamlファイルの読み込みをメモ。 Python 以下の通り。 How can I parse a YAML file in Python - Stack Overflow import ruamel.yaml as yaml with open("example.yaml") as stream: try: print(yaml.load(stream)) except yaml.YAMLError as …