mirror of
https://github.com/cosyneco/MediaPipe.NET.git
synced 2025-05-19 08:27:12 +08:00

* Make ImageFrame nullable, because BlazePose can return empty frames * Add BlazePose example Co-authored-by: Darren <darren@velogicfit.com>
106 lines
3.8 KiB
C#
106 lines
3.8 KiB
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 System;
|
|
using System.Collections.Generic;
|
|
using CommandLine;
|
|
using FFmpeg.AutoGen;
|
|
using Mediapipe.Net.Calculators;
|
|
using Mediapipe.Net.External;
|
|
using Mediapipe.Net.Framework.Format;
|
|
using Mediapipe.Net.Framework.Protobuf;
|
|
using Mediapipe.Net.Util;
|
|
using SeeShark;
|
|
using SeeShark.Device;
|
|
using SeeShark.FFmpeg;
|
|
|
|
namespace Mediapipe.Net.Examples.FaceMesh
|
|
{
|
|
public static class Program
|
|
{
|
|
private static Camera? camera;
|
|
private static FrameConverter? converter;
|
|
private static FaceMeshCpuCalculator? calculator;
|
|
private static ResourceManager? resourceManager;
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
// Get and parse command line arguments
|
|
Options parsed = Parser.Default.ParseArguments<Options>(args).Value;
|
|
|
|
(int, int)? videoSize = null;
|
|
if (parsed.Width != null && parsed.Height != null)
|
|
videoSize = ((int)parsed.Width, (int)parsed.Height);
|
|
else if (parsed.Width != null && parsed.Height == null)
|
|
Console.Error.WriteLine("Specifying width requires to specify height");
|
|
else if (parsed.Width == null && parsed.Height != null)
|
|
Console.Error.WriteLine("Specifying height requires to specify width");
|
|
|
|
FFmpegManager.SetupFFmpeg(@"C:\ffmpeg\v5.0_x64\");
|
|
// FFmpegManager.SetupFFmpeg("/usr/lib");
|
|
Glog.Initialize("stuff");
|
|
if (parsed.UseResourceManager)
|
|
resourceManager = new DummyResourceManager();
|
|
|
|
// Get a camera device
|
|
using (CameraManager manager = new CameraManager())
|
|
{
|
|
try
|
|
{
|
|
camera = manager.GetDevice(parsed.CameraIndex,
|
|
new VideoInputOptions
|
|
{
|
|
InputFormat = parsed.InputFormat,
|
|
Framerate = parsed.Framerate == null ? null : new AVRational
|
|
{
|
|
num = (int)parsed.Framerate,
|
|
den = 1,
|
|
},
|
|
VideoSize = videoSize,
|
|
});
|
|
Console.WriteLine($"Using camera {camera.Info}");
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Console.Error.WriteLine($"No camera exists at index {parsed.CameraIndex}.");
|
|
return;
|
|
}
|
|
}
|
|
|
|
calculator = new FaceMeshCpuCalculator();
|
|
calculator.OnResult += handleLandmarks;
|
|
calculator.Run();
|
|
|
|
Console.CancelKeyPress += (sender, eventArgs) => exit();
|
|
while (true)
|
|
{
|
|
var frame = camera.GetFrame();
|
|
|
|
converter ??= new FrameConverter(frame, PixelFormat.Rgba);
|
|
|
|
Frame cFrame = converter.Convert(frame);
|
|
|
|
using ImageFrame imgframe = new ImageFrame(ImageFormat.Srgba,
|
|
cFrame.Width, cFrame.Height, cFrame.WidthStep, cFrame.RawData);
|
|
|
|
using ImageFrame? img = calculator.Send(imgframe);
|
|
}
|
|
}
|
|
|
|
private static void handleLandmarks(object? sender, List<NormalizedLandmarkList> landmarks)
|
|
{
|
|
Console.WriteLine($"Got a list of {landmarks[0].Landmark.Count} landmarks at frame {calculator?.CurrentFrame}");
|
|
}
|
|
|
|
// Dispose everything on exit
|
|
private static void exit()
|
|
{
|
|
Console.WriteLine("Exiting...");
|
|
camera?.Dispose();
|
|
converter?.Dispose();
|
|
calculator?.Dispose();
|
|
}
|
|
}
|
|
}
|