Initial project commit
This commit is contained in:
17
PornocopiaVisionMetadataExtractor/Data/DetectedFace.cs
Normal file
17
PornocopiaVisionMetadataExtractor/Data/DetectedFace.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user