add an array with XmlRpc::XmlRpcValue
Hello everybody,
I would like to add an array in a file thanks to XmlRpc::XmlRpcValue. But in the XmlRpc::XmlRpcValue there is no TypeArray in the constructor. So how can I add my array which a cv::Mat.
for example :
void functionForExample(XmlRpc::XmlRpcValue& xmlRV) { cv::Mat tab; ... xmlRV[ "tab" ] = XmlRpc::XmlRpcValue( ?? ); }
thanks for your help.