 | DownScalingProcess Method |
Resizes the input amplitude and phase images taking into account phase jumps.
Changes the image size using the super sampling interpolation method.This method only reduces the image size.
Resizes the input phase image taking into account phase jumps.
Be sure that the scaling factor has been set.
GetScaledDimensions method gives the size of the scaled phase image buffer.
Namespace:
LynceeTec.Processing.ComplexProcessing
Assembly:
LynceeTec.InterfaceProcessing (in LynceeTec.InterfaceProcessing.dll) Version: 0.0.0.0
Syntaxpublic void Process(
float[] srcAmplitude,
int srcAmplitudeStep,
float[] srcPhase,
int srcPhaseStep,
float[] dstAmplitude,
int dstAmplitudeStep,
float[] dstPhase,
int dstPhaseStep
)
public:
void Process(
array<float>^ srcAmplitude,
int srcAmplitudeStep,
array<float>^ srcPhase,
int srcPhaseStep,
array<float>^ dstAmplitude,
int dstAmplitudeStep,
array<float>^ dstPhase,
int dstPhaseStep
)
Parameters
- srcAmplitude
- Type: SystemSingle
The source amplitude image.The source amplitude image. - srcAmplitudeStep
- Type: SystemInt32
The source amplitude buffer width in bytes.The source amplitude buffer width in bytes. - srcPhase
- Type: SystemSingle
The source phase image.The source phase image. - srcPhaseStep
- Type: SystemInt32
The source phase buffer width in bytes.The source phase buffer width in bytes. - dstAmplitude
- Type: SystemSingle
The scaled amplitude image.The scaled amplitude image. - dstAmplitudeStep
- Type: SystemInt32
The destination amplitude buffer width in bytes.The destination amplitude buffer width in bytes. - dstPhase
- Type: SystemSingle
The scaled phase image.The scaled phase image. - dstPhaseStep
- Type: SystemInt32
The destination phase buffer width in bytes.The destination phase buffer width in bytes.
See Also