Can I upload OpenCV Mat with curl? Without save on drive?
I have Mat image and want upload him like I sent a picture from drive with C++ curl:
curl_formadd(&formpost,&lastptr,
CURLFORM_COPYNAME, "picture",
CURLFORM_COPYCONTENTS, "sample.jpg"
CURLFORM_END);
↧