Accord.Imaging.SpeededUpRobustFeaturesDescriptor.Clone C# (CSharp) Méthode

Clone() public méthode

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
Résultat object
        public object Clone()
        {
            var clone = new SpeededUpRobustFeaturesDescriptor(integral);
            clone.extended = extended;
            clone.invariant = invariant;

            return clone;
        }