ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.FreqIP Namespace / ImGearFrequencyProcessing Class / ForwardDSTFromImage Method
An ImageGear.Core.ImGearPage class object to be transformed.




In This Topic
    ForwardDSTFromImage Method
    In This Topic
    Computes the forward Discrete Sine Transform (DST) of the input image.
    Syntax
    'Declaration
     
    Public Shared Function ForwardDSTFromImage( _
       ByVal page As ImGearPage _
    ) As ImGearComplexObject
    'Usage
     
    Dim page As ImGearPage
    Dim value As ImGearComplexObject
     
    value = ImGearFrequencyProcessing.ForwardDSTFromImage(page)
    public static ImGearComplexObject ForwardDSTFromImage( 
       ImGearPage page
    )
    public: static ImGearComplexObject* ForwardDSTFromImage( 
       ImGearPage* page
    ) 
    public:
    static ImGearComplexObject^ ForwardDSTFromImage( 
       ImGearPage^ page
    ) 

    Parameters

    page
    An ImageGear.Core.ImGearPage class object to be transformed.

    Return Value

    Remarks
    This method computes the forward Discrete Sine Transform (DST) of the input image. The difference between this method and ForwardDST method is that this one takes an ImageGear.Core.ImGearPage class as the input.
    See Also