// // MPT_FaceView.h // AUCoderDemo // // Created by Andrew Salamon on 5/19/06. // Copyright (c) 2006 Machine Perception Laboratory // University of California San Diego.// #import @interface MPT_FaceView : NSImageView { NSRect lastFace; NSPoint lastLeftEye; NSPoint lastRightEye; NSArray *faces; NSString *lastDropPath; } - (void)resetFaceAndEyes; - (NSRect)lastFace; - (void)setLastFace:(NSRect)value; - (NSPoint)lastLeftEye; - (void)setLastLeftEye:(NSPoint)value; - (NSPoint)lastRightEye; - (void)setLastRightEye:(NSPoint)value; - (NSArray *)faces; - (void)setFaces:(NSArray *)value; - (NSString *)lastDropPath; - (void)setLastDropPath:(NSString *)value; @end