How I can remove orbital error from ROI-PAC result?

Hello,
I have been using ROI-PAC (Radar processing software)to process my SAR data. I produced unwrapped geocoded images. However I still need to remove orbital fringes which causes some problem for analyzing deformation.
I would be pleased if anyone knows how to remove orbital fringes using Matlab.
Thanks in advance.
Regards, Ruken

 채택된 답변

Brian Neiswander
Brian Neiswander 2015년 8월 20일

0 개 추천

I understand that you would like to remove orbital fringes from unwrapped SAR data. This really depends on the nature of the deformations that you are trying to analyze. Orbital phase error can usually be characterized by its long spatial wavelength. If this wavelength is distinct from the deformations, then it should be relatively easy to remove the orbital error using a linear detrending or high-pass filtering scheme. Note that whatever technique you use, there will always be some residual error.
A more complicated approach is to use the orbital phase information to correct the satellite trajectories, which can then be used to eliminate the error.
You may also want to check with the ROI-PAC team to see if they have any further suggestions.

댓글 수: 4

Ruken
Ruken 2015년 8월 21일
Hi Brian,
Thanks a lot. The thing is I am not very familiar with Matlab. I am using it some simple application. Do you know any scripts for linear detrending or high-pass filtering scheme?
I would be pleased if you help me. Ruken
Hi Ruken,
You can use the "detrend" function to linearly detrend your data, as shown below:
>> y = detrend(x); %x is a MxN array
Using a high-pass filter on 2-D data is a little more complicated. This can be done using the "imfilter" function or "filter2" function. You can find a simple high-pass filter example in this MATLAB Answers post:
You can follow the links below for more information on the "detrend", "imfilter", and "filter2" functions:
Hope this helps.
-Brian
Ruken
Ruken 2015년 8월 25일
Hi Brain,
Thank you very much. I used below detrend function
>> y = detrend(t,'constant');
However, I have not seen any changes. I tried to use below imfilter function
a = fspecial('unsharp'); b = imfilter(t, H);
Not any changes as well.
I was just wondering am I using correctly those function. Would be happy if you just give me a comment about it.
Thanks in advance.
Ruken
Ruken
Ruken 2015년 8월 26일
Hi Brain,
Thanks for your help.
I found a way to do it. However I guess it is not very effective to use detrend.
Ruken

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Earth and Planetary Science에 대해 자세히 알아보기

질문:

2015년 8월 18일

댓글:

2015년 8월 26일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by