├── .gitignore ├── docs ├── README.md ├── _config.yml └── book_cover_small.png ├── matlab ├── Chapter1 │ └── interpolation_example.mlx ├── Chapter2 │ ├── spotlight_doppler_bandwidth_example.mlx │ ├── spotlight_prf_example.mlx │ ├── spotlight_psf_example.mlx │ ├── spotlight_resolution_example.mlx │ ├── spotlight_snr_example.mlx │ ├── stripmap_clutter_to_noise_example.mlx │ ├── stripmap_doppler_bandwidth_example.mlx │ ├── stripmap_nesz_example.mlx │ ├── stripmap_prf_example.mlx │ ├── stripmap_psf_example.mlx │ ├── stripmap_range_resolution_example.mlx │ ├── stripmap_signal_to_noise_example.mlx │ └── stripmap_support_band_example.mlx ├── Chapter3 │ ├── LoadMonostaticSignatureFile.m │ ├── backprojection_example.mlx │ ├── backprojection_point_targets_example.mlx │ ├── polar_format_example.mlx │ ├── polar_format_point_targets_example.mlx │ ├── range_doppler_point_target_example.mlx │ ├── range_profile_backhoe_example.mlx │ └── range_profile_point_target_example.mlx ├── Chapter4 │ ├── backprojection_example.mlx │ └── polar_format_point_targets_example.mlx ├── Chapter5 │ ├── inverse_filtering_example.mlx │ ├── map_drift_example.mlx │ ├── minimum_entropy_example.mlx │ └── phase_gradient_example.mlx ├── Chapter7 │ ├── extended_range_example.mlx │ ├── nesz_example.mlx │ ├── rain_attenuation_example.mlx │ ├── rgiqe_example.mlx │ ├── spatial_resolution_example.mlx │ └── windowing_example.mlx └── Libs │ ├── Chapter 2 │ ├── range_resolution_ground_plane.m │ ├── range_resolution_slant_plane.m │ ├── spotlight_doppler_bandwidth.m │ ├── spotlight_snr.m │ ├── spotlight_snr_image.m │ ├── stripmap_cnr.m │ ├── stripmap_doppler_bandwidth.m │ ├── stripmap_nesz.m │ ├── stripmap_snr.m │ └── stripmap_support_band.m │ ├── Chapter 3 │ ├── backprojection.m │ └── backprojection_cv.m │ ├── Chapter 4 │ ├── backprojection_3d.m │ └── plot_iso.m │ ├── Chapter 5 │ └── pga.m │ ├── Chapter 7 │ └── rain_attenuation.m │ ├── db.m │ ├── lin.m │ └── sinc.m └── python ├── Chapter1 └── interpolation_example.ipynb ├── Chapter2 ├── spotlight_doppler_bandwidth.ipynb ├── spotlight_prf_example.ipynb ├── spotlight_psf_example.ipynb ├── spotlight_resolution_example.ipynb ├── spotlight_snr_example.ipynb ├── stripmap_clutter_to_noise_example.ipynb ├── stripmap_doppler_bandwidth_example.ipynb ├── stripmap_nesz_example.ipynb ├── stripmap_prf_example.ipynb ├── stripmap_psf_example.ipynb ├── stripmap_range_resolution_example.ipynb ├── stripmap_signal_to_noise_example.ipynb └── stripmap_support_band_example.ipynb ├── Chapter3 ├── backprojection.py ├── backprojection_example.ipynb ├── backprojection_point_targets_example.ipynb ├── polar_format_example.ipynb ├── polar_format_point_targets_example.ipynb ├── range_doppler_point_target_example.ipynb ├── range_profile_backhoe_example.ipynb ├── range_profile_point_target_example.ipynb └── signal.mat ├── Chapter4 ├── backprojection.py ├── backprojection_example.ipynb └── polar_format_point_targets_example.ipynb ├── Chapter5 ├── inverse_filtering_example.ipynb ├── map_drift_example.ipynb ├── minimum_entropy_example.ipynb ├── phase_gradient.py └── phase_gradient_example.ipynb ├── Chapter6 ├── ICEYE_Harris_1.jpg ├── ICEYE_Harris_2.jpg ├── ICEYE_ORB.jpg ├── ICEYE_Phase_Correlation.jpg ├── ICEYE_SIFT.jpg ├── harris_corner_example.ipynb ├── orb_example.ipynb ├── phase_correlation_example.ipynb └── sift_example.ipynb └── Chapter7 ├── extended_range_example.ipynb ├── nesz_example.ipynb ├── rain.py ├── rain_attenuation_example.ipynb ├── rgiqe_example.ipynb ├── spatial_resolution_example.ipynb └── windowing_example.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | *.mat 2 | *.sig 3 | *checkpoint* 4 | *_pycache_* 5 | LoadMonostaticSignatureFile.m 6 | *.h5 7 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/book_cover_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/docs/book_cover_small.png -------------------------------------------------------------------------------- /matlab/Chapter1/interpolation_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter1/interpolation_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/spotlight_doppler_bandwidth_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/spotlight_doppler_bandwidth_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/spotlight_prf_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/spotlight_prf_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/spotlight_psf_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/spotlight_psf_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/spotlight_resolution_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/spotlight_resolution_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/spotlight_snr_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/spotlight_snr_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_clutter_to_noise_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_clutter_to_noise_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_doppler_bandwidth_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_doppler_bandwidth_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_nesz_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_nesz_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_prf_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_prf_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_psf_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_psf_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_range_resolution_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_range_resolution_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_signal_to_noise_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_signal_to_noise_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter2/stripmap_support_band_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter2/stripmap_support_band_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/LoadMonostaticSignatureFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/LoadMonostaticSignatureFile.m -------------------------------------------------------------------------------- /matlab/Chapter3/backprojection_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/backprojection_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/backprojection_point_targets_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/backprojection_point_targets_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/polar_format_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/polar_format_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/polar_format_point_targets_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/polar_format_point_targets_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/range_doppler_point_target_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/range_doppler_point_target_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/range_profile_backhoe_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/range_profile_backhoe_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter3/range_profile_point_target_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter3/range_profile_point_target_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter4/backprojection_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter4/backprojection_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter4/polar_format_point_targets_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter4/polar_format_point_targets_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter5/inverse_filtering_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter5/inverse_filtering_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter5/map_drift_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter5/map_drift_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter5/minimum_entropy_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter5/minimum_entropy_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter5/phase_gradient_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter5/phase_gradient_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter7/extended_range_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter7/extended_range_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter7/nesz_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter7/nesz_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter7/rain_attenuation_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter7/rain_attenuation_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter7/rgiqe_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter7/rgiqe_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter7/spatial_resolution_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter7/spatial_resolution_example.mlx -------------------------------------------------------------------------------- /matlab/Chapter7/windowing_example.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Chapter7/windowing_example.mlx -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/range_resolution_ground_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/range_resolution_ground_plane.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/range_resolution_slant_plane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/range_resolution_slant_plane.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/spotlight_doppler_bandwidth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/spotlight_doppler_bandwidth.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/spotlight_snr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/spotlight_snr.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/spotlight_snr_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/spotlight_snr_image.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/stripmap_cnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/stripmap_cnr.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/stripmap_doppler_bandwidth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/stripmap_doppler_bandwidth.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/stripmap_nesz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/stripmap_nesz.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/stripmap_snr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/stripmap_snr.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 2/stripmap_support_band.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 2/stripmap_support_band.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 3/backprojection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 3/backprojection.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 3/backprojection_cv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 3/backprojection_cv.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 4/backprojection_3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 4/backprojection_3d.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 4/plot_iso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 4/plot_iso.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 5/pga.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 5/pga.m -------------------------------------------------------------------------------- /matlab/Libs/Chapter 7/rain_attenuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/Chapter 7/rain_attenuation.m -------------------------------------------------------------------------------- /matlab/Libs/db.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/db.m -------------------------------------------------------------------------------- /matlab/Libs/lin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/lin.m -------------------------------------------------------------------------------- /matlab/Libs/sinc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/matlab/Libs/sinc.m -------------------------------------------------------------------------------- /python/Chapter1/interpolation_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter1/interpolation_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/spotlight_doppler_bandwidth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/spotlight_doppler_bandwidth.ipynb -------------------------------------------------------------------------------- /python/Chapter2/spotlight_prf_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/spotlight_prf_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/spotlight_psf_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/spotlight_psf_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/spotlight_resolution_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/spotlight_resolution_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/spotlight_snr_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/spotlight_snr_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_clutter_to_noise_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_clutter_to_noise_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_doppler_bandwidth_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_doppler_bandwidth_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_nesz_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_nesz_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_prf_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_prf_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_psf_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_psf_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_range_resolution_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_range_resolution_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_signal_to_noise_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_signal_to_noise_example.ipynb -------------------------------------------------------------------------------- /python/Chapter2/stripmap_support_band_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter2/stripmap_support_band_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/backprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/backprojection.py -------------------------------------------------------------------------------- /python/Chapter3/backprojection_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/backprojection_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/backprojection_point_targets_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/backprojection_point_targets_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/polar_format_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/polar_format_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/polar_format_point_targets_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/polar_format_point_targets_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/range_doppler_point_target_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/range_doppler_point_target_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/range_profile_backhoe_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/range_profile_backhoe_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/range_profile_point_target_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/range_profile_point_target_example.ipynb -------------------------------------------------------------------------------- /python/Chapter3/signal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter3/signal.mat -------------------------------------------------------------------------------- /python/Chapter4/backprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter4/backprojection.py -------------------------------------------------------------------------------- /python/Chapter4/backprojection_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter4/backprojection_example.ipynb -------------------------------------------------------------------------------- /python/Chapter4/polar_format_point_targets_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter4/polar_format_point_targets_example.ipynb -------------------------------------------------------------------------------- /python/Chapter5/inverse_filtering_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter5/inverse_filtering_example.ipynb -------------------------------------------------------------------------------- /python/Chapter5/map_drift_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter5/map_drift_example.ipynb -------------------------------------------------------------------------------- /python/Chapter5/minimum_entropy_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter5/minimum_entropy_example.ipynb -------------------------------------------------------------------------------- /python/Chapter5/phase_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter5/phase_gradient.py -------------------------------------------------------------------------------- /python/Chapter5/phase_gradient_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter5/phase_gradient_example.ipynb -------------------------------------------------------------------------------- /python/Chapter6/ICEYE_Harris_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/ICEYE_Harris_1.jpg -------------------------------------------------------------------------------- /python/Chapter6/ICEYE_Harris_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/ICEYE_Harris_2.jpg -------------------------------------------------------------------------------- /python/Chapter6/ICEYE_ORB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/ICEYE_ORB.jpg -------------------------------------------------------------------------------- /python/Chapter6/ICEYE_Phase_Correlation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/ICEYE_Phase_Correlation.jpg -------------------------------------------------------------------------------- /python/Chapter6/ICEYE_SIFT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/ICEYE_SIFT.jpg -------------------------------------------------------------------------------- /python/Chapter6/harris_corner_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/harris_corner_example.ipynb -------------------------------------------------------------------------------- /python/Chapter6/orb_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/orb_example.ipynb -------------------------------------------------------------------------------- /python/Chapter6/phase_correlation_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/phase_correlation_example.ipynb -------------------------------------------------------------------------------- /python/Chapter6/sift_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter6/sift_example.ipynb -------------------------------------------------------------------------------- /python/Chapter7/extended_range_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/extended_range_example.ipynb -------------------------------------------------------------------------------- /python/Chapter7/nesz_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/nesz_example.ipynb -------------------------------------------------------------------------------- /python/Chapter7/rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/rain.py -------------------------------------------------------------------------------- /python/Chapter7/rain_attenuation_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/rain_attenuation_example.ipynb -------------------------------------------------------------------------------- /python/Chapter7/rgiqe_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/rgiqe_example.ipynb -------------------------------------------------------------------------------- /python/Chapter7/spatial_resolution_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/spatial_resolution_example.ipynb -------------------------------------------------------------------------------- /python/Chapter7/windowing_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SARBook/software/HEAD/python/Chapter7/windowing_example.ipynb --------------------------------------------------------------------------------