I have a system where I use opencv and c ++ for vehicle counting. Capturing the image from a video for example
VideoCapture cap(video.pm4);
works fine, but when you want to capture the image from an ip camera
VideoCapture cap("http://ip_address:port/");
does not receive anything. I do not know if the syntax is correct, or do I need some kind of complement ???
Thanks