Asked — Edited
Resolved Resolved by ptp!

Roli Camera Projection

I have the Roli Robot, and I am trying to figure out what are the other ways of displaying a live stream of the camera rather than using System.Windows.Forms.Panel.

I was trying to attach the panel to a material in Unity, however, Unity does not like working with Windows.Forms.


ARC Pro

Upgrade to ARC Pro

Unleash your creativity with the power of easy robot programming using Synthiam ARC Pro

PRO
USA
#1  

this is almost a duplicate question:

https://synthiam.com/Community/Questions/9259

if the basic idea is to capture the video frame, you can have a console, form, wpf or service .net application, is not relevant.

check my #3 post (console application)

basically you capture the video frame (bitmap):


camera.OnNewFrame += CameraOnNewFrame;

private static void CameraOnNewFrame()
{
    var bitmap =  this.camera.GetCurrentBitmap;
}