Back to Aurora Vision Library website
You are here: Start » Function Reference » Computer Vision » Fourier Analysis » FrequencyDomain_FilterFrequencies
FrequencyDomain_FilterFrequencies
Header: | AVL.h |
---|---|
Namespace: | avl |
Module: | FoundationPro |
Filters the frequencies in a frequency domain image suppressing the elements of too low or too high frequency.
Syntax
C++
C#
void avl::FrequencyDomain_FilterFrequencies ( const avl::Image& inFrequencyDomainImage, const atl::Optional<float>& inMinFrequency, const atl::Optional<float>& inMaxFrequency, avl::Image& outFrequencyDomainImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
inFrequencyDomainImage | const Image& | Input image in frequency domain | |||
inMinFrequency | const Optional<float>& | 0.0 - | NIL | Minimum frequency that will be kept | |
inMaxFrequency | const Optional<float>& | 0.0 - | NIL | Maximum frequency that will be kept | |
outFrequencyDomainImage | Image& | Filtered image in frequency domain |
Requirements
For input inFrequencyDomainImage only pixel formats are supported: 2⨯real.
Read more about pixel formats in Image documentation.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Not supported inFrequencyDomainImage pixel format in FrequencyDomain_FilterFrequencies. Supported formats: 2xReal. |