power_bytepower_bytePowerBytePowerBytepower_byte (Operator)

Name

power_bytepower_bytePowerBytePowerBytepower_byte — Return the power spectrum of a complex image.

Signature

power_byte(Image : PowerByte : : )

Herror power_byte(const Hobject Image, Hobject* PowerByte)

Herror T_power_byte(const Hobject Image, Hobject* PowerByte)

void PowerByte(const HObject& Image, HObject* PowerByte)

HImage HImage::PowerByte() const

static void HOperatorSet.PowerByte(HObject image, out HObject powerByte)

HImage HImage.PowerByte()

def power_byte(image: HObject) -> HObject

Description

power_bytepower_bytePowerBytePowerBytePowerBytepower_byte computes the power spectrum from the real and imaginary parts of a Fourier-transformed image (see fft_imagefft_imageFftImageFftImageFftImagefft_image), i.e., the modulus of the frequencies. The result image is of type 'byte'"byte""byte""byte""byte""byte". The following formula is used:

Please note, that resulting gray values that exceed the value of 255 are clipped at 255 because of the resulting image type 'byte'"byte""byte""byte""byte""byte".

Execution Information

Parameters

ImageImageImageImageimageimage (input_object)  (multichannel-)image(-array) objectHImageHObjectHImageHobject (complex)

Input image in frequency domain.

PowerBytePowerBytePowerBytePowerBytepowerBytepower_byte (output_object)  image(-array) objectHImageHObjectHImageHobject * (byte)

Power spectrum of the input image.

Example (C)

read_image(&Image,"monkey");
disp_image(Image,WindowHandle);
fft_image(Image,&FFT);
power_byte(FFT,&Power);
disp_image(Power,WindowHandle);

Result

power_bytepower_bytePowerBytePowerBytePowerBytepower_byte returns 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>)SetSystem("no_object_result",<Result>)set_system("no_object_result",<Result>). If necessary, an exception is raised.

Possible Predecessors

fft_imagefft_imageFftImageFftImageFftImagefft_image, fft_genericfft_genericFftGenericFftGenericFftGenericfft_generic, rft_genericrft_genericRftGenericRftGenericRftGenericrft_generic, convol_fftconvol_fftConvolFftConvolFftConvolFftconvol_fft, convol_gaborconvol_gaborConvolGaborConvolGaborConvolGaborconvol_gabor

Possible Successors

disp_imagedisp_imageDispImageDispImageDispImagedisp_image

Alternatives

abs_imageabs_imageAbsImageAbsImageAbsImageabs_image, convert_image_typeconvert_image_typeConvertImageTypeConvertImageTypeConvertImageTypeconvert_image_type, power_realpower_realPowerRealPowerRealPowerRealpower_real, power_lnpower_lnPowerLnPowerLnPowerLnpower_ln

See also

fft_imagefft_imageFftImageFftImageFftImagefft_image, fft_genericfft_genericFftGenericFftGenericFftGenericfft_generic, rft_genericrft_genericRftGenericRftGenericRftGenericrft_generic

Module

Foundation