facial_recognition_photobooth/CrestronOpenCvSharp/UiHandler.cs
2025-02-23 20:49:56 +01:00

13 lines
No EOL
217 B
C#

using CrestronOpenCvSharp.Capture;
namespace CrestronOpenCvSharp;
public class UiHandler
{
private MjpegCapture _capture;
public UiHandler(MjpegCapture capture)
{
_capture = capture;
}
}