Esempio n. 1
0
 public bool Equals(HeadPose other)
 {
     return(Landmarks.SequenceEqual(other.Landmarks) &&
            VisiableLandmarks.SequenceEqual(other.VisiableLandmarks) &&
            Landmarks3D.SequenceEqual(other.Landmarks3D) &&
            Position.Equals(other.Position) &&
            Angle.Equals(other.Angle));
 }
Esempio n. 2
0
 public HeadPoseAndGaze(HeadPose headPose, Gaze gaze)
 {
     HeadPose = headPose;
     Gaze     = gaze;
 }