Sending Mat over the web
I need to send a Mat over the web (to ASP .net c# backend) Any ideas or ready examples?
I need to send a Mat over the web (to ASP .net c# backend) Any ideas or ready examples?
your webserver won't know, what a cv::Mat is, also you should probably encode / compress it, before sending it over the wire.
use imencode() or imwrite(), to save it as an image (to memory or disc), say as .png or .jpg, - then libcurl to send it to the server.
Asked: 2017-06-12 05:56:35 -0600
Seen: 612 times
Last updated: Jun 12 '17
OpenCV DescriptorMatcher matches
Conversion between IplImage and MxArray
Video On Label OpenCV Qt :: hide cvNamedWindows
Problems using the math.h class with OpenCV (c++, VS2012)
How to reduce false positives for face detection
Area of a single pixel object in OpenCV
build problems for android_binary_package - Eclipse Indigo, Ubuntu 12.04
Can't compile .cu file when including opencv.hpp
Using OpenCV's stitching module, strange error when compositing images
what is there, exactly, on the other end ? some kind of REST api ?
Yes. I'll be sending it with an HttpClient "POST".