├── Demo.m ├── README.md ├── functions ├── gen_patch_ten.m ├── prox_l1.m ├── prox_pstnn.m ├── res_patch_ten_mean.m ├── structure_tensor_lambda.m └── trpca_pstnn.m ├── images ├── 1.bmp └── 2.bmp ├── results ├── background │ ├── 1.bmp │ ├── 2.bmp │ └── 3.bmp └── target │ ├── 1.bmp │ ├── 2.bmp │ └── 3.bmp └── tools └── Unfold.m /Demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/Demo.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/README.md -------------------------------------------------------------------------------- /functions/gen_patch_ten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/functions/gen_patch_ten.m -------------------------------------------------------------------------------- /functions/prox_l1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/functions/prox_l1.m -------------------------------------------------------------------------------- /functions/prox_pstnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/functions/prox_pstnn.m -------------------------------------------------------------------------------- /functions/res_patch_ten_mean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/functions/res_patch_ten_mean.m -------------------------------------------------------------------------------- /functions/structure_tensor_lambda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/functions/structure_tensor_lambda.m -------------------------------------------------------------------------------- /functions/trpca_pstnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/functions/trpca_pstnn.m -------------------------------------------------------------------------------- /images/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/images/1.bmp -------------------------------------------------------------------------------- /images/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/images/2.bmp -------------------------------------------------------------------------------- /results/background/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/results/background/1.bmp -------------------------------------------------------------------------------- /results/background/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/results/background/2.bmp -------------------------------------------------------------------------------- /results/background/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/results/background/3.bmp -------------------------------------------------------------------------------- /results/target/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/results/target/1.bmp -------------------------------------------------------------------------------- /results/target/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/results/target/2.bmp -------------------------------------------------------------------------------- /results/target/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/results/target/3.bmp -------------------------------------------------------------------------------- /tools/Unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanneeee/Infrared-Small-Target-Detection-based-on-PSTNN/HEAD/tools/Unfold.m --------------------------------------------------------------------------------