Beispiel #1
0
 public Person annotateFace(Person person)
 {
     FeatureTracker ft = new FeatureTracker();
     List<ImagePoint> imagePointList = FeatureTracker.GetFeaturePoints(person.Image);
     // annotate and drwa and keep the new image in property person.annotatedFace
     //person.AnnotatedFace =
     return person;
 }
Beispiel #2
0
 public void saveImage(Person person, string destinationPath)
 {
     person.Image.Save(Path.Combine(destinationPath, person.FileName));
 }
Beispiel #3
0
 public void logToTextFile(Person person)
 {
     //person.importantImagePointList is logged to a file
 }