Action_Recognition_2._0.FeatureExtractor2D.SetProperties C# (CSharp) Method

SetProperties() public method

Function to change SpatialSize, TemporalSize, and NumPatches with a single call for the sake of convenience
public SetProperties ( int spSize, int tmpSize, int patches ) : void
spSize int
tmpSize int
patches int
return void
        public void SetProperties(int spSize, int tmpSize, int patches)
        {
            this.SpatialSize = spSize;
            this.TemporalSize = tmpSize;
            this.NumPatches = patches;
        }