Example #1
0
        private void StartPlayback()
        {
            isShowingSavedFrame = true;

            if (playerSource.Status == PointCloudPlayerStatus.NotLoaded)
            {
                playerSource.Load("Recording/", "frame*.mfx", "Recording/kinectaudio.wav");
            }
            playerSource.Play();
        }
Example #2
0
        private void StartPlayback()
        {
            StopSensor();

            if (playerSource.Status == PointCloudPlayerStatus.NotLoaded)
            {
                string filename = System.IO.Path.Combine(Settings.RecordingsDirectory, _currentFilename);
                playerSource.Load(filename);
            }
            txtFileFPS.Text = playerSource.FileFPS.ToString("F2");
            playerSource.Play();
        }