mirror of
https://github.com/cosyneco/MediaPipe.NET.git
synced 2025-08-24 00:33:52 +08:00
15 lines
408 B
C#
15 lines
408 B
C#
// Copyright (c) homuler and The Vignette Authors
|
|
// This file is part of MediaPipe.NET.
|
|
// MediaPipe.NET is licensed under the MIT License. See LICENSE for details.
|
|
|
|
using CommandLine;
|
|
|
|
namespace Mediapipe.Net.Examples.FaceMeshGpu
|
|
{
|
|
public class Options
|
|
{
|
|
[Option('c', "camera", Default = 0, HelpText = "The index of the camera to use")]
|
|
public int CameraIndex { get; set; }
|
|
}
|
|
}
|