phase_deg phase_deg PhaseDeg PhaseDeg phase_deg (Operator)
Name
phase_deg phase_deg PhaseDeg PhaseDeg phase_deg
— Return the phase of a complex image in degrees.
Signature
Description
phase_deg phase_deg PhaseDeg PhaseDeg phase_deg
computes the phase of a complex image in
degrees. The following formula is used:
Hence, ImagePhase ImagePhase ImagePhase imagePhase image_phase
contains half the phase angle. For
negative phase angles, 180 is added.
Execution Information
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
Multithreading scope: global (may be called from any thread).
Automatically parallelized on tuple level.
Automatically parallelized on channel level.
Automatically parallelized on domain level.
Parameters
ImageComplex ImageComplex ImageComplex imageComplex image_complex
(input_object) (multichannel-)image(-array) →
object HImage HObject HObject Hobject (complex)
Input image in frequency domain.
ImagePhase ImagePhase ImagePhase imagePhase image_phase
(output_object) image(-array) →
object HImage HObject HObject Hobject * (direction)
Phase of the image in degrees.
Example (C)
read_image(&Image,"monkey");
disp_image(Image,WindowHandle);
fft_image(Image,&FFT);
phase_deg(FFT,&Phase);
disp_image(Phase,WindowHandle);
Result
phase_deg phase_deg PhaseDeg PhaseDeg phase_deg
returns 2 (
H_MSG_TRUE )
if the image is of correct
type. If the input is empty the behavior can be set via
set_system(::'no_object_result',<Result>:) set_system("no_object_result",<Result>) SetSystem("no_object_result",<Result>) SetSystem("no_object_result",<Result>) set_system("no_object_result",<Result>)
.
If necessary, an exception is raised.
Possible Predecessors
fft_image fft_image FftImage FftImage fft_image
,
fft_generic fft_generic FftGeneric FftGeneric fft_generic
,
rft_generic rft_generic RftGeneric RftGeneric rft_generic
Possible Successors
disp_image disp_image DispImage DispImage disp_image
Alternatives
phase_rad phase_rad PhaseRad PhaseRad phase_rad
See also
fft_image_inv fft_image_inv FftImageInv FftImageInv fft_image_inv
Module
Foundation