You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I will read frame from a web camera, and then do some image processing. I then send the processed image to browser in real time.
Here are the steps I take:
step 1: read frame(image) from camera
step 2: process the image
step 3: send the processed image to browser
step 4: repeat step 1
my questions are:
I could send each image as xxx.jpg to browser. but image is not encoded, the size of the image might be much big. is this the best solution?
If I use FFMPEG or webrtc to encode the image but not continuous images(all images are separate image but not video stream), how to do this? is the encoding effective?
do you have good solution for my case? Do you have the example code based on your code to solve my case?
The text was updated successfully, but these errors were encountered:
Hi,
I will read frame from a web camera, and then do some image processing. I then send the processed image to browser in real time.
Here are the steps I take:
my questions are:
I could send each image as xxx.jpg to browser. but image is not encoded, the size of the image might be much big. is this the best solution?
If I use FFMPEG or webrtc to encode the image but not continuous images(all images are separate image but not video stream), how to do this? is the encoding effective?
do you have good solution for my case? Do you have the example code based on your code to solve my case?
The text was updated successfully, but these errors were encountered: