[]
        
(Showing Draft Content)

CSJ2K.j2k.wavelet.synthesis.SynWTFilterInt.synthetize_hpf

synthetize_hpf Method

synthetize_hpf(int[], int, int, int, int[], int, int, int, int[], int, int)

A specific version of the synthetize_hpf() method that works on int data. See the general description of the synthetize_hpf() method in the SynWTFilter class for more details.

Declaration
public abstract void synthetize_hpf(int[] lowSig, int lowOff, int lowLen, int lowStep, int[] highSig, int highOff, int highLen, int highStep, int[] outSig, int outOff, int outStep)
Parameters
Type Name Description
int[] lowSig

This is the array that contains the low-pass input signal.

int lowOff

This is the index in lowSig of the first sample to filter.

int lowLen

This is the number of samples in the low-pass input signal to filter.

int lowStep

This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array.

int[] highSig

This is the array that contains the high-pass input signal.

int highOff

This is the index in highSig of the first sample to filter.

int highLen

This is the number of samples in the high-pass input signal to filter.

int highStep

This is the step, or interleave factor, of the high-pass input signal samples in the highSig array.

int[] outSig

This is the array where the output signal is placed. It should be long enough to contain the output signal.

int outOff

This is the index in outSig of the element where to put the first output sample.

int outStep

This is the step, or interleave factor, of the output samples in the outSig array.

See Also

synthetize_hpf(object, int, int, int, object, int, int, int, object, int, int)

The general version of the synthetize_hpf() method, it just calls the specialized version. See the description of the synthetize_hpf() method of the SynWTFilter class for more details.

Declaration
public override void synthetize_hpf(object lowSig, int lowOff, int lowLen, int lowStep, object highSig, int highOff, int highLen, int highStep, object outSig, int outOff, int outStep)
Parameters
Type Name Description
object lowSig

This is the array that contains the low-pass input signal. It must be an int[].

int lowOff

This is the index in lowSig of the first sample to filter.

int lowLen

This is the number of samples in the low-pass input signal to filter.

int lowStep

This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array.

object highSig

This is the array that contains the high-pass input signal. Itmust be an int[].

int highOff

This is the index in highSig of the first sample to filter.

int highLen

This is the number of samples in the high-pass input signal to filter.

int highStep

This is the step, or interleave factor, of the high-pass input signal samples in the highSig array.

object outSig

This is the array where the output signal is placed. It should be and int[] and long enough to contain the output signal.

int outOff

This is the index in outSig of the element where to put the first output sample.

int outStep

This is the step, or interleave factor, of the output samples in the outSig array.

Overrides
See Also