Exemplo n.º 1
0
        public void StopRecording()
        {
            List <JointType> SMIJ = new List <JointType>();

            SMIJ = MostInformativeJointsSelector.GetJoints(recordedSkeletonCollection, recordedSkeletonCollection.Count, QuaternionsStyles.Absolute);

            foreach (var recordedSkeleton in recordedSkeletonCollection)
            {
                AnglesExportToXML(recordedSkeleton, SMIJ);
            }


            framesCount = 0;
            streamWriterXmlAngles.WriteLine("</action>");
            streamWriterXmlAngles.Close();
        }
Exemplo n.º 2
0
 public ActivityRecord(List <ImportedSkeleton> aFrames)
 {
     Frames = aFrames;
     MostInformativeJoints = MostInformativeJointsSelector.GetJoints(Frames, Frames.Count, QuaternionsStyles.Hierarchical);
 }