mirror of
https://github.com/cosyneco/MediaPipe.NET.git
synced 2025-08-23 08:01:13 +08:00

This is based from our test case, could add an actual image later Signed-off-by: Ayase Minori <ayane@vignetteapp.org>
22 lines
565 B
C#
22 lines
565 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 BenchmarkDotNet.Running;
|
|
|
|
namespace Mediapipe.Net.Benchmarks
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var switcher = new BenchmarkSwitcher(new[]
|
|
{
|
|
typeof(FloatPacketPerformanceBenchmark), typeof(ImageFramePacketPerformanceBenchmark)
|
|
});
|
|
|
|
switcher.Run(args);
|
|
}
|
|
}
|
|
}
|