Welcome to Synthiam!

The easiest way to program the most powerful robots. Use technologies by leading industry experts. ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.

Get Started
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

Get access to the latest features and updates with ARC Pro edition. You'll have everything that's needed to unleash your robot's potential!

PRO
USA
#1  
this is almost a duplicate question:

http://www.ez-robot.com/Community/Forum/Thread?threadId=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):

Code:


camera.OnNewFrame += CameraOnNewFrame;

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