Yes, our Visionboxes don't care where the image is coming from.
most IP Cameras allow you to grab a snapshot with an http call, if that's not possible you can use opencv to open an rtsp streaming and process it, ex:
import cv2
cap = cv2.VideoCapture('rtsp_url')
while True:
_, frame = cap.read()
img_as_jpeg_string = string = base64.b64encode(cv2.imencode('.jpg', frame)[1]).decode()
post_to_visionbox(img_as_jpeg_string)
1 Comment
N
Nezare Chafni
said
over 2 years ago
Answer
Yes, our Visionboxes don't care where the image is coming from.
most IP Cameras allow you to grab a snapshot with an http call, if that's not possible you can use opencv to open an rtsp streaming and process it, ex:
import cv2
cap = cv2.VideoCapture('rtsp_url')
while True:
_, frame = cap.read()
img_as_jpeg_string = string = base64.b64encode(cv2.imencode('.jpg', frame)[1]).decode()
post_to_visionbox(img_as_jpeg_string)
Daniel Paul
Hello, can i use ALPR on a live camera feed ?
Yes, our Visionboxes don't care where the image is coming from.
most IP Cameras allow you to grab a snapshot with an http call, if that's not possible you can use opencv to open an rtsp streaming and process it, ex:
Nezare Chafni
Yes, our Visionboxes don't care where the image is coming from.
most IP Cameras allow you to grab a snapshot with an http call, if that's not possible you can use opencv to open an rtsp streaming and process it, ex:
-
Do you support running on ARM?
-
Difference Between Lite and Full models? And do you have a Windows SDK?
-
How to get your sample apps
-
System requirements
-
Latest VisionBox image
-
Face recognition implementation
-
FR with mask and other accessories
-
Face recognition in different conditions
-
Mask detection working scenarios
-
Age detection & FRBox
See all 27 topics