Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. SAR is not compensating for the doppler of moving targets. It only compensates for the doppler shift of stationary targets
  2. as it assumes that all targets are stationary on Earth.
  3. SAR has side lobes because of which when those capture doppler, they might not suffice Nyquist criterion.
  4.  
  5. ## GMTI using Symmetric Defocusing
  6.  
  7. ### Abstract
  8. Two filters,which differ only in the signs of the phase responses, are used to defocus the complex image respectively.
  9. In the two defocused images,each stationary target is blurred to the same extent,but each moving target is blurred to different extents.
  10. Therefore, moving targets can be indicated by patch-by-patch sharpness comparison of the two defocused images.
  11. The results of the simulated and real data show that this algorithm is effective and efficient.
  12.  
  13.  
  14. ### Step-By-Step
  15.  
  16. 1. We have an azimuth signal
  17. 2. We take an FFT of it and we focus it with a H(f) filter.
  18. 3. With Filter 1 , defocusing is done on Step2 output, we obtain S1(f)
  19. 4. With Filter 2 , defocusing is done on Step2 output, we obtain S2(f)
  20. 5. Inverse FFT of S1(f) gives s1(t)
  21. 6. Inverse FFT of S2(f) gives s2(t)
  22. * If Stationary targets, then both filters will have same Time Period thus blurring of same extent
  23. * If Moving targets, then both filters will have different Time Periods thus blurring to different extent
  24. 7. We use contrast to find absolute difference between the two images.
  25. 8. The contrast of these two patches are calculated patch-by-patch.
  26. 9. We use Constant False Alarm Method to find a probability density function of the Contrast difference.
  27.  
  28.  
  29.  
  30. ### Typical Range-Doppler Algorithm
  31.  
  32. 1. SAR Raw Data is given.
  33. 2. FFT in range
  34. 3. Range Compression
  35. 4. FFT in Azimuth
  36. 5. RCMC
  37. 6. Azimuth Compression
  38. 7. 2D FFT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement