ArtofKinect.Common.PointCloudStreamDescription.Save C# (CSharp) Méthode

Save() public static méthode

public static Save ( Stream stream, PointCloudStreamDescription desc ) : void
stream Stream
desc PointCloudStreamDescription
Résultat void
        public static void Save(Stream stream, PointCloudStreamDescription desc)
        {
            XamlServices.Save(stream, desc);
        }

Same methods

PointCloudStreamDescription::Save ( string filename, PointCloudStreamDescription desc ) : void

Usage Example

Exemple #1
0
        private void SaveDescription()
        {
            string filename = Path.Combine(_scratchDirectory, _descriptionFilename);

            lock (_descriptionLock)
            {
                PointCloudStreamDescription.Save(filename, _description);
            }
        }
PointCloudStreamDescription