ANSI-C program: mt_lee_filt_cpx.c
NAME
mt_lee_filt_cpx: Multi-temporal Lee directional adaptive filter
for complex data
SYNOPSIS
mt_lee_filt_cpx <im_list> <ref_image>
<width> <winsz> <L> <out_list> [ref_out]
[b_coeff] [filt_num] [msr]
<im_list> | (input) text file with names of co-registered float
format images including path (enter - for none) |
<ref_image> |
(input) reference image
used to generate the filter weights NOTE: the reference scene should have the same dimensions as the data files in the cpx_list |
<width> | number of samples in each line |
<winsz> |
size of the Lee filter
window (valid values: 7, 13, 19) |
<L> |
effective number of looks
of the input image used to calculate the MMSE weighting
factor (float) |
<cthres> | directional contrast threshold to determine if the
directional filter should be applied (0->4)(enter - for
default: 1.500) NOTE: setting cthres=0.0, forces the directional filter to be used at all times, setting cthres=4.0 blocks all directional filtering |
<out_list> | list of filtered output data files, number of entries in the im_list and out_list must match, (enter - for none) |
[ref_out] |
(output) filtered
reference image (float) (enter - for none) |
[b_coeff] | (output) MMSE weighting coefficient calculated from the
mean to sigma ratio and L for each sample (float) (enter -
for none) |
[filt_num] |
(output) selected structural filter number (0-->7)
(byte) (enter - for none) |
[msr] |
(output) mean/sigma ratio
where the mean is the local mean and sigma the local
standard deviation of the intensity image in the
filter window (enter - for none) |
[ctr] | (output) directional contrast estimate used to determine if the directional filter is applied |
mt_lee_filt_cpx cpx_list lh_ave.rmli 600 7 20 1.5 cpx_lee_list lh_lee.mli lh.bcf lh.fn msr lh.ctr
Filter the complex valued scenes listed in the cpx_list using filter coefficients and directional filter number derived from the averaged scene lh_ave.rmli. For each file in the input list there is a corresponding output file for the filtered data listed in the cpx_lee_list. The filtered image of the reference scene is written to the file lh_lee.mli. The filter coefficients are written to the file lh.bcf and the integer valued filter number (0--> 7) is written to the file lh.fn. The mean/sigma ratio for each point in the reference scene is written to the file lh.msr, and the contrast estimate to lh.ctr.
mt_lee_filt_cpx is
derived from an algorithm for speckle reduction described in [1]
by J.S. Lee et al. There are further earlier references give in
[1] going back to 1998. This adaptive filter uses a set of 8 edge
aligned window functions to select the homogeneous area
associated with a particular pixel. The algorithm determines the
window that best describes the region that a particular pixel
belongs to. The deviation of center pixel relative to the average
value over the selected window is used to determine a filter
weighting factor that blends the local signal value with the
average calculated using the window function. If the current
pixel deviates strongly from the average of any edge aligned
window function, very little or no filtering is applied. The
algorithm determines both the best edge aligned filter and the
weighting function. There are 8 edge aligned filters in 4 groups
that are tested. The size of the window is either 7x7, 13x13 or
19x19 samples and the window functions are:
SEE ALSO
temp_filt, mt_lee_filt , multi_stat