-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Image API #186
Comments
Transferring the images, raw, requires a pretty high data rate - around 17Mbyte/sec. Initial tests with sending data over the websocket were prohibitively slow. WebRTC data streaming (over SCTP, maybe even with jumbo frames) might be worth exploring as well, but we don't yet know how that would perform. I'd still really like to see it happen though, and will be exploring options and open to ideas. |
WebRTC sounds like a good bet. Alternatively, given the data rate, maybe a poll/request approach is an option to push? Sent from my iPhone
|
@pehrlich any updates on Image API in JS? IR/RGB passthrough in the browser would be fantastic, even if it requires ugly hacks on my part |
Chrome extensions have raw TCP sockets (chrome.sockets.tcp). I'm thinking of writing a helper app that uses the ObjectiveC Image API to get image frames, correct distortion, and stream over TCP to the browser. This should get around throughput issues and have little-to-no discernible latency. I should have some downtime this weekend to work on this. It's an ugly hack but it might work. |
Would be excited to see this! Keep us posted |
Hi
Is there any plans to implement the Image API through WS?
BR,
Victor
The text was updated successfully, but these errors were encountered: