init commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System.Drawing;
|
||||
|
||||
namespace AForge.Imaging;
|
||||
|
||||
public class TemplateMatch
|
||||
{
|
||||
private Rectangle rect;
|
||||
|
||||
private float similarity;
|
||||
|
||||
public Rectangle Rectangle => rect;
|
||||
|
||||
public float Similarity => similarity;
|
||||
|
||||
public TemplateMatch(Rectangle rect, float similarity)
|
||||
{
|
||||
this.rect = rect;
|
||||
this.similarity = similarity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user