├── .gitignore ├── Affiche_map.m ├── BellfunctionTest.m ├── Detectors ├── AMFFunction.m ├── ANMFFunction.m ├── MahalanobisDistance.m ├── SCM.m ├── Tyler.m ├── computeTestOnImage.m ├── initTargetDetectors.m └── mhygfx.m ├── Hyperimages ├── decomposeFTheta.m └── gbellmfunction.m ├── LICENSE ├── README.md ├── Target Dictionary ├── circle.m ├── computeImagePower.m ├── createTargets.m ├── gaussianTarget.m ├── initTargets.m ├── rectangularTarget.m ├── sincTarget.m ├── spectreToSteeringVector.m └── steeringVectorTarget.m ├── TargetDetection ├── PdSNR.m ├── PdSNR_GaussianTarget_d1d2.m ├── PdSNR_d1d2.m ├── PdSNR_d1d2_steering_vector.m ├── PfaLambda_d1d2.m ├── Pfa_lambda.m ├── SimulationTarget_d1d2.m ├── SimulatonGaussianTargetDetection.m ├── SimulatonSteeringVectorTargetDetection.m └── SimulatonTargetDetectionCloseTargets.m ├── parseArgs.m ├── readSDMS.m ├── readSandia.m ├── subaxis.m └── visualiseDecomposition.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/.gitignore -------------------------------------------------------------------------------- /Affiche_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Affiche_map.m -------------------------------------------------------------------------------- /BellfunctionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/BellfunctionTest.m -------------------------------------------------------------------------------- /Detectors/AMFFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/AMFFunction.m -------------------------------------------------------------------------------- /Detectors/ANMFFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/ANMFFunction.m -------------------------------------------------------------------------------- /Detectors/MahalanobisDistance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/MahalanobisDistance.m -------------------------------------------------------------------------------- /Detectors/SCM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/SCM.m -------------------------------------------------------------------------------- /Detectors/Tyler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/Tyler.m -------------------------------------------------------------------------------- /Detectors/computeTestOnImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/computeTestOnImage.m -------------------------------------------------------------------------------- /Detectors/initTargetDetectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/initTargetDetectors.m -------------------------------------------------------------------------------- /Detectors/mhygfx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Detectors/mhygfx.m -------------------------------------------------------------------------------- /Hyperimages/decomposeFTheta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Hyperimages/decomposeFTheta.m -------------------------------------------------------------------------------- /Hyperimages/gbellmfunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Hyperimages/gbellmfunction.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/README.md -------------------------------------------------------------------------------- /Target Dictionary/circle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/circle.m -------------------------------------------------------------------------------- /Target Dictionary/computeImagePower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/computeImagePower.m -------------------------------------------------------------------------------- /Target Dictionary/createTargets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/createTargets.m -------------------------------------------------------------------------------- /Target Dictionary/gaussianTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/gaussianTarget.m -------------------------------------------------------------------------------- /Target Dictionary/initTargets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/initTargets.m -------------------------------------------------------------------------------- /Target Dictionary/rectangularTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/rectangularTarget.m -------------------------------------------------------------------------------- /Target Dictionary/sincTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/sincTarget.m -------------------------------------------------------------------------------- /Target Dictionary/spectreToSteeringVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/spectreToSteeringVector.m -------------------------------------------------------------------------------- /Target Dictionary/steeringVectorTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/Target Dictionary/steeringVectorTarget.m -------------------------------------------------------------------------------- /TargetDetection/PdSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/PdSNR.m -------------------------------------------------------------------------------- /TargetDetection/PdSNR_GaussianTarget_d1d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/PdSNR_GaussianTarget_d1d2.m -------------------------------------------------------------------------------- /TargetDetection/PdSNR_d1d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/PdSNR_d1d2.m -------------------------------------------------------------------------------- /TargetDetection/PdSNR_d1d2_steering_vector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/PdSNR_d1d2_steering_vector.m -------------------------------------------------------------------------------- /TargetDetection/PfaLambda_d1d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/PfaLambda_d1d2.m -------------------------------------------------------------------------------- /TargetDetection/Pfa_lambda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/Pfa_lambda.m -------------------------------------------------------------------------------- /TargetDetection/SimulationTarget_d1d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/SimulationTarget_d1d2.m -------------------------------------------------------------------------------- /TargetDetection/SimulatonGaussianTargetDetection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/SimulatonGaussianTargetDetection.m -------------------------------------------------------------------------------- /TargetDetection/SimulatonSteeringVectorTargetDetection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/SimulatonSteeringVectorTargetDetection.m -------------------------------------------------------------------------------- /TargetDetection/SimulatonTargetDetectionCloseTargets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/TargetDetection/SimulatonTargetDetectionCloseTargets.m -------------------------------------------------------------------------------- /parseArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/parseArgs.m -------------------------------------------------------------------------------- /readSDMS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/readSDMS.m -------------------------------------------------------------------------------- /readSandia.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/readSandia.m -------------------------------------------------------------------------------- /subaxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/subaxis.m -------------------------------------------------------------------------------- /visualiseDecomposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmarMian/Wavelet-Packets-for-High-Resolution-SAR-images/HEAD/visualiseDecomposition.m --------------------------------------------------------------------------------