Files
PVisionMetadataExtractor/PornocopiaVisionMetadataExtractor/Data/DetectedFace.cs
2021-02-15 11:38:37 -08:00

18 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PornocopiaVisionMetadataExtractor.Data
{
public class DetectedFace
{
public Int32 Top { get; set; }
public Int32 Bottom { get; set; }
public Int32 Left { get; set; }
public Int32 Right { get; set; }
public Int32 Size { get; set; }
public Decimal SizePercentage { get; set; }
}
}