├── Harris_Anisotropic scale space ├── AOS.m ├── LSM.m ├── appendimages.m ├── calc_descriptors.m ├── calc_log_polar_descriptor.m ├── calc_sift_descriptor.m ├── calculate_oritation_hist.m ├── compute_k_percentile.m ├── compute_k_percentile_auto.m ├── create_nonlinear_scale_space.m ├── disp_points_distribute.m ├── disp_points_distribute_1.m ├── display_product_image.m ├── find_scale_extreme.m ├── harris_scale.m ├── image_fusion.m ├── main.m ├── match.m ├── mosaic_map.m ├── ransac.m ├── showpoint_detected.m ├── showpoints.m └── thomas_algorith.m ├── PSO-SIFT-matlab-V1.0 ├── FSC.m ├── LSM.m ├── PSO_sift.m ├── S_RMO_RtoS.m ├── S_RMO_StoR.m ├── adjust_local_extream.m ├── appendimages.m ├── build_dog_pyramid.m ├── build_gaussian_pyramid.m ├── calc_descriptors.m ├── calc_log_polar_descriptor.m ├── calculate_oritation_hist.m ├── create_initial_image.m ├── find_scale_space_extream.m ├── image_fusion.m ├── logic_filter.m ├── match.m ├── mosaic_map.m ├── num_octaves.m ├── scale_orien_joint_restriction.m ├── scale_ratio_diff_angle.m ├── showpoint_detected.m └── showpoints.m ├── README.md ├── Remote Sensing Image Registrationwith Modified SIFT and Enhanced Feature Matching.pdf ├── SAR-SIFT-FSC-modified-opencv249 ├── Sar_sift.h ├── main.cpp ├── match.cpp ├── match.h └── sar_sift.cpp ├── SAR-SIFT-matlab-V1.0 ├── FSC.m ├── LSM.m ├── appendimages.m ├── build_scale.m ├── calc_descriptors.m ├── calc_log_polar_descriptor.m ├── calculate_oritation_hist.m ├── find_scale_extreme.m ├── image_fusion.m ├── match.m ├── mosaic_map.m ├── sar_sift.m ├── showpoint_detected.m └── showpoints.m ├── SAR-SIFT-opencv249 ├── Sar_sift.h ├── main.cpp ├── match.cpp ├── match.h └── sar_sift.cpp ├── SIFT-matlab-V1.0 ├── FSC.m ├── LSM.m ├── adjust_local_extream.m ├── appendimages.m ├── build_dog_pyramid.m ├── build_gaussian_pyramid.m ├── calc_descriptors.m ├── calc_log_polar_descriptor.m ├── calc_sift_descriptor.m ├── calculate_oritation_hist.m ├── create_initial_image.m ├── disp_points_distribute.m ├── display_product_image.m ├── find_scale_space_extream.m ├── image_fusion.m ├── match.m ├── mosaic_map.m ├── num_octaves.m ├── showpoint_detected.m ├── showpoints.m └── sift.m ├── SIFT-opencv249 ├── display.cpp ├── display.h ├── main.cpp ├── match.cpp ├── match.h ├── sift.cpp └── sift.h ├── revised of the PSO-SIFT.pdf ├── sift_static.exe ├── sift_static_exe_ readme(sift_static.exe使用说明).txt └── test images ├── PA-1.jpg ├── PA-2.jpg ├── PB-1.jpg ├── PB-2.jpg ├── SAR-SIFT_1.JPG ├── SAR-SIFT_2.JPG ├── perspective_graf_1.ppm ├── perspective_graf_2.ppm ├── perspective_school_1.jpg ├── perspective_school_2.jpg ├── ucsb1.jpg └── ucsb2.jpg /Harris_Anisotropic scale space/AOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/AOS.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/LSM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/LSM.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/appendimages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/appendimages.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/calc_descriptors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/calc_descriptors.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/calc_log_polar_descriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/calc_log_polar_descriptor.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/calc_sift_descriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/calc_sift_descriptor.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/calculate_oritation_hist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/calculate_oritation_hist.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/compute_k_percentile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/compute_k_percentile.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/compute_k_percentile_auto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/compute_k_percentile_auto.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/create_nonlinear_scale_space.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/create_nonlinear_scale_space.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/disp_points_distribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/disp_points_distribute.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/disp_points_distribute_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/disp_points_distribute_1.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/display_product_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/display_product_image.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/find_scale_extreme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/find_scale_extreme.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/harris_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/harris_scale.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/image_fusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/image_fusion.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/main.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/match.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/mosaic_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/mosaic_map.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/ransac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/ransac.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/showpoint_detected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/showpoint_detected.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/showpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/showpoints.m -------------------------------------------------------------------------------- /Harris_Anisotropic scale space/thomas_algorith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Harris_Anisotropic scale space/thomas_algorith.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/FSC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/FSC.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/LSM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/LSM.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/PSO_sift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/PSO_sift.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/S_RMO_RtoS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/S_RMO_RtoS.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/S_RMO_StoR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/S_RMO_StoR.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/adjust_local_extream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/adjust_local_extream.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/appendimages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/appendimages.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/build_dog_pyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/build_dog_pyramid.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/build_gaussian_pyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/build_gaussian_pyramid.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/calc_descriptors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/calc_descriptors.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/calc_log_polar_descriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/calc_log_polar_descriptor.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/calculate_oritation_hist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/calculate_oritation_hist.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/create_initial_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/create_initial_image.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/find_scale_space_extream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/find_scale_space_extream.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/image_fusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/image_fusion.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/logic_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/logic_filter.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/match.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/mosaic_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/mosaic_map.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/num_octaves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/num_octaves.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/scale_orien_joint_restriction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/scale_orien_joint_restriction.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/scale_ratio_diff_angle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/scale_ratio_diff_angle.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/showpoint_detected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/showpoint_detected.m -------------------------------------------------------------------------------- /PSO-SIFT-matlab-V1.0/showpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/PSO-SIFT-matlab-V1.0/showpoints.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/README.md -------------------------------------------------------------------------------- /Remote Sensing Image Registrationwith Modified SIFT and Enhanced Feature Matching.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/Remote Sensing Image Registrationwith Modified SIFT and Enhanced Feature Matching.pdf -------------------------------------------------------------------------------- /SAR-SIFT-FSC-modified-opencv249/Sar_sift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-FSC-modified-opencv249/Sar_sift.h -------------------------------------------------------------------------------- /SAR-SIFT-FSC-modified-opencv249/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-FSC-modified-opencv249/main.cpp -------------------------------------------------------------------------------- /SAR-SIFT-FSC-modified-opencv249/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-FSC-modified-opencv249/match.cpp -------------------------------------------------------------------------------- /SAR-SIFT-FSC-modified-opencv249/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-FSC-modified-opencv249/match.h -------------------------------------------------------------------------------- /SAR-SIFT-FSC-modified-opencv249/sar_sift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-FSC-modified-opencv249/sar_sift.cpp -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/FSC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/FSC.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/LSM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/LSM.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/appendimages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/appendimages.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/build_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/build_scale.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/calc_descriptors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/calc_descriptors.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/calc_log_polar_descriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/calc_log_polar_descriptor.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/calculate_oritation_hist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/calculate_oritation_hist.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/find_scale_extreme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/find_scale_extreme.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/image_fusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/image_fusion.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/match.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/mosaic_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/mosaic_map.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/sar_sift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/sar_sift.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/showpoint_detected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/showpoint_detected.m -------------------------------------------------------------------------------- /SAR-SIFT-matlab-V1.0/showpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-matlab-V1.0/showpoints.m -------------------------------------------------------------------------------- /SAR-SIFT-opencv249/Sar_sift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-opencv249/Sar_sift.h -------------------------------------------------------------------------------- /SAR-SIFT-opencv249/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-opencv249/main.cpp -------------------------------------------------------------------------------- /SAR-SIFT-opencv249/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-opencv249/match.cpp -------------------------------------------------------------------------------- /SAR-SIFT-opencv249/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-opencv249/match.h -------------------------------------------------------------------------------- /SAR-SIFT-opencv249/sar_sift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SAR-SIFT-opencv249/sar_sift.cpp -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/FSC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/FSC.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/LSM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/LSM.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/adjust_local_extream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/adjust_local_extream.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/appendimages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/appendimages.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/build_dog_pyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/build_dog_pyramid.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/build_gaussian_pyramid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/build_gaussian_pyramid.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/calc_descriptors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/calc_descriptors.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/calc_log_polar_descriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/calc_log_polar_descriptor.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/calc_sift_descriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/calc_sift_descriptor.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/calculate_oritation_hist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/calculate_oritation_hist.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/create_initial_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/create_initial_image.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/disp_points_distribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/disp_points_distribute.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/display_product_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/display_product_image.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/find_scale_space_extream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/find_scale_space_extream.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/image_fusion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/image_fusion.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/match.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/mosaic_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/mosaic_map.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/num_octaves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/num_octaves.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/showpoint_detected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/showpoint_detected.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/showpoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/showpoints.m -------------------------------------------------------------------------------- /SIFT-matlab-V1.0/sift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-matlab-V1.0/sift.m -------------------------------------------------------------------------------- /SIFT-opencv249/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/display.cpp -------------------------------------------------------------------------------- /SIFT-opencv249/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/display.h -------------------------------------------------------------------------------- /SIFT-opencv249/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/main.cpp -------------------------------------------------------------------------------- /SIFT-opencv249/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/match.cpp -------------------------------------------------------------------------------- /SIFT-opencv249/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/match.h -------------------------------------------------------------------------------- /SIFT-opencv249/sift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/sift.cpp -------------------------------------------------------------------------------- /SIFT-opencv249/sift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/SIFT-opencv249/sift.h -------------------------------------------------------------------------------- /revised of the PSO-SIFT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/revised of the PSO-SIFT.pdf -------------------------------------------------------------------------------- /sift_static.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/sift_static.exe -------------------------------------------------------------------------------- /sift_static_exe_ readme(sift_static.exe使用说明).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/sift_static_exe_ readme(sift_static.exe使用说明).txt -------------------------------------------------------------------------------- /test images/PA-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/PA-1.jpg -------------------------------------------------------------------------------- /test images/PA-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/PA-2.jpg -------------------------------------------------------------------------------- /test images/PB-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/PB-1.jpg -------------------------------------------------------------------------------- /test images/PB-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/PB-2.jpg -------------------------------------------------------------------------------- /test images/SAR-SIFT_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/SAR-SIFT_1.JPG -------------------------------------------------------------------------------- /test images/SAR-SIFT_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/SAR-SIFT_2.JPG -------------------------------------------------------------------------------- /test images/perspective_graf_1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/perspective_graf_1.ppm -------------------------------------------------------------------------------- /test images/perspective_graf_2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/perspective_graf_2.ppm -------------------------------------------------------------------------------- /test images/perspective_school_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/perspective_school_1.jpg -------------------------------------------------------------------------------- /test images/perspective_school_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/perspective_school_2.jpg -------------------------------------------------------------------------------- /test images/ucsb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/ucsb1.jpg -------------------------------------------------------------------------------- /test images/ucsb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeLianWen/Image-Registration/HEAD/test images/ucsb2.jpg --------------------------------------------------------------------------------