Crater-MASN: A Multi-Scale Adaptive Semantic Network for Efficient Crater Detection
Abstract
Highlights
- A lightweight multi-scale framework, Crater-MASN, is proposed to balance high accuracy with computational efficiency.
- A novel training and post-processing pipeline enables robust detection in dense, nested regions and demonstrates an exceptional capability for discovering previously uncatalogued craters.
- Crater-MASN provides a scalable and efficient tool for planetary scientists to perform large-scale, high-precision crater cataloging and planetary surface analysis.
- The model’s proven ability to identify uncatalogued craters demonstrates its significant potential for scientific discovery and the completion of existing lunar databases.
Abstract
1. Introduction
- 1.
- To address the tradeoff between efficiency and accuracy, we design and validate a lightweight architecture combining a GhostNet backbone with a BIFM neck, significantly reducing model parameters while enhancing multi-scale feature representation.
- 2.
- To overcome the detrimental effects of incomplete annotations, we propose a novel Adaptive Semantic Contrast Sampling (ASCS) training strategy that intelligently mines unlabeled craters, substantially improving model recall and generalization.
- 3.
- To resolve ambiguous detections in dense and nested regions, we design a H-SoftNMS algorithm. In conjunction with our proposed New Discovery Rate () metric, this provides a robust solution for scientific catalog completion by correctly handling complex spatial relationships and quantifying the value of new discoveries.
2. Materials and Methods
2.1. Data Sources and Preprocessing
2.2. Overall Network Architecture
2.3. Lightweight Backbone Network
2.4. The Bidirectional Integration and Fusion Module
Spatially-Aware Attention and Semantic Diffusion
2.5. Adaptive Semantic Contrast Sampling
2.5.1. Adaptive Candidate Filtering
2.5.2. Multi-Prototype Semantic Contrast and Validation
2.5.3. Efficient Implementation and Loss Masking
2.6. Hierarchical Soft-NMS (H-SoftNMS)
2.6.1. Geometric Representation and Hierarchical Relationship Judgment
2.6.2. The H-SoftNMS Algorithm
Algorithm 1 Hierarchical Soft-NMS (H-SoftNMS) Procedure. | ||
1: | Input: | |
2: | : a set of predicted bounding boxes | |
3: | : corresponding confidence scores | |
4: | : final confidence threshold | |
5: | : IoU threshold for overlap check | |
6: | : sigma for Gaussian penalty function | |
7: | Output: | |
8: | : a set of final, filtered detections | |
9: | ||
10: | begin | |
11: | ▹ Initial filtering by score | |
12: | ▹ Convert boxes to circular representations | |
13: | ▹ Initialize final set of kept detections | |
14: | ||
15: | while do | |
16: | ▹ Select index of max score detection | |
17: | ; | |
18: | ||
19: | Remove , , from their respective sets | |
20: | ||
21: | for each detection in do | |
22: | if then | |
23: | if not ( or ) then | |
24: | ||
25: | end if | |
26: | end if | |
27: | end for | |
28: | ▹ Remove detections where | |
29: | end while | |
30: | ||
31: | return | |
32: | end |
- 1.
- Nested Relationship: If one detection is contained within another, regardless of which is larger, their confidence scores remain unaffected. This critical mechanism protects “crater-in-crater” structures, ensuring that smaller craters inside larger ones are not suppressed.
- 2.
- Adjacent Overlap Relationship: If two detections merely overlap without being nested, a standard Gaussian soft-suppression penalty is applied. This gracefully resolves redundancy for neighboring independent craters by decaying scores rather than eliminating detections.
2.7. Postprocessing
2.8. Model Evaluation
3. Results
3.1. Implementation Details
3.2. Ablation Study
- (1)
- Baseline: To establish a reliable performance benchmark, we first constructed a model based on a mature architecture. It leverages the DarkNet53 network to generate multi-scale feature maps from the input images, which are subsequently fused by a feature pyramid network (FPN) to produce semantically rich feature representations for detection. A consistent set of hyperparameters was maintained throughout all experiments to provide a fair basis of comparison for all subsequent methods. Ultimately, this baseline model achieved a precision of 84.1% and a recall of 78.8% on our validation set.
- (2)
- Effect of the Lightweight Backbone: The GhostNet module is designed to create a more efficient backbone by generating more feature maps from cheaper operations. When integrated into our baseline, it leads to a significant improvement in model efficiency, reducing the parameter count by 40% from 3.0M to 1.8M. However, this reduction in complexity comes at a slight cost to performance, with mAP50 and mAP95 decreasing by 0.9% and 0.4%, respectively. This highlights the classic tradeoff between model size and accuracy.
- (3)
- Effect of BIFM: In Experiment 3, the addition of BIFM to the GhostNet backbone resulted in a comprehensive performance leap over Experiment 2, with mAP50 increasing significantly from 85.9% to 89.7% and mAP95 from 68.1% to 73.8%. This demonstrates its superior cross-scale weighted feature fusion capabilities, which provide higher-quality feature maps for subsequent processing compared to the standard neck.
- (4)
- Synergistic Effect of BIFM and ASCS: A critical observation arises from comparing Experiments 4 and 6. When the ASCS strategy is applied directly to the GhostNet backbone in Experiment 4, the performance improvement is modest, with mAP50 increasing by only 1.3%. In contrast, Experiment 6 shows that applying ASCS to the model already enhanced by BIFM yields substantial performance gains, boosting mAP50 by 5.1% and mAP95 by 7.0%. This significant difference in performance uplift reveals a powerful synergistic effect between BIFM and ASCS. The underlying reason for this is that the ASCS strategy is not a standalone improvement; rather, its efficacy is fundamentally dependent on the quality of the features it receives. The BIFM module acts as an essential enabler. By enriching the multi-scale features, the BIFM creates a feature space in which crater representations are more semantically consistent and discriminative. This provides the ideal conditions for ASCS to accurately compute representative centroids and distinguish true unlabeled craters from hard negatives, thereby unlocking its full potential. In this way, the significant performance increase seen in Experiment 6 is not merely an additive effect of two independent components but a synergistic improvement born from their powerful interaction.
- (5)
- Effect of H-SoftNMS: Experiments 5 and 7 clearly demonstrate the characteristics of H-SoftNMS. Applying this postprocessing algorithm to two different model bases consistently resulted in a dramatic increase in recall, rising by 9.9 and 12 percentage points, respectively, at the cost of a significant drop in precision. This validates that H-SoftNMS, as an independent postprocessing module, has a stable and predictable effect: it minimizes false negatives by protecting nested and adjacent objects at the expense of potentially retaining more false positives. This highlights the inherent tradeoff between recall and precision for applications with different priorities.
- (6)
- Synergistic Effects and Final Model Performance: Experiment 6 demonstrates our optimal configuration, combining GhostNet, BIFM, and ASCS, which achieved the best results in precision, mAP50, and mAP95. This confirms the positive and progressive synergy among these three components. In turn, Experiment 7 provides a high-recall alternative by applying H-SoftNMS, which is suitable for specific applications where minimizing false negatives is the primary objective.
3.3. Performance Comparison of Crater Detection Models
- (1)
- Overall Performance Analysis: Our Crater-MASN model demonstrates exceptional overall performance while maintaining high efficiency. Compared to the YOLOv8n [41], our model achieves substantial improvements of 3.1% in precision and 4.2% in recall, reaching 87.2% and 83.0%, respectively. This result provides strong evidence for the synergistic effectiveness of our integrated GhostNet, BIFM, and ASCS strategies. Notably, this performance enhancement is achieved alongside a significant reduction in model parameters from 3.0M to 2.1M, amounting to a 30% decrease.When compared with existing crater detection models, Crater-MASN exhibits distinct advantages. Although YOLOLens5x achieves the highest scores in precision (89.9%) and recall (87.2%), it does so at the cost of an extremely large model size (101.2M parameters), making it impractical for deployment on resource-constrained edge devices. In contrast, our Crater-MASN model achieves highly competitive precision and recall with a parameter count that is merely one-fiftieth of YOLOLens5x. Furthermore, while segmentation-based methods like SqUNet attain high precision (87.5%), their recall (80.7%) is notably lower than that of our model.
- (2)
- Error Analysis: The conversion of model predictions from pixel space to a scientifically viable geographic catalog inevitably introduces errors. These discrepancies primarily stem from two sources: first, quantization errors arise from the transformation of discrete pixel coordinates into continuous geographic coordinates; second, map projections, such as the orthographic projection used in our work, can cause geometric distortions at the peripheries of the images, potentially affecting the precise measurement of crater size and morphology. Consequently, evaluating the accuracy of the prediction results generated by different methods is crucial. As presented in Table 2, we report the average errors between the predicted geographic coordinates of TP results and the corresponding entries in the manual crater catalog for various detection methods on the validation set. It is noteworthy that among the methods compared, our proposed Crater-MASN achieves the lowest fractional errors across all three metrics: longitude (8.0%), latitude (7.3%), and radius (3.1%). The radius error (Errorr) is particularly significant, as the 3.1% value achieved by our model is substantially lower than the 3.6% from the baseline as well as the values (typically exceeding 6%) from most other approaches. This superior localization accuracy can be primarily attributed to the advanced BIFM feature fusion neck used in our architecture, which works in concert with the GhostNet backbone and the ASCS training strategy to enhance the precision of bounding box regression. Overall, the predictions from Crater-MASN exhibit strong consistency with the ground truth recorded in the manual catalog, affirming its reliability as a tool for scientific analysis.
Model | Precision (%) | Recall (%) | Errorlo (%) | Errorla (%) | Errorr (%) | Params (M) |
---|---|---|---|---|---|---|
DeepMoon [16] | 81.0 | 56.0 | 9.3 | 7.5 | 6.6 | 10.3 |
ERU-Net [42] | 72.9 | 81.2 | 8.9 | 8.7 | 7.8 | 23.7 |
D-LinkNet [43] | 71.7 | 68.2 | 11.0 | 9.2 | 9.2 | 21.0 |
SqUNet [44] | 87.5 | 80.7 | 8.9 | 8.4 | 6.8 | 11.8 |
ELCD [4] | 80.6 | 81.9 | 12.0 | 9.8 | 6.6 | 21.8 |
Faster R-CNN [22] | 80.9 | 81.2 | 6.2 | 9.4 | 6.0 | 41.5 |
YOLOLens5x [28] | 89.9 | 87.2 | 10.2 | 8.9 | 8.8 | 101.2 |
Yolov9t [45] | 84.5 | 77.7 | 9.1 | 8.9 | 3.5 | 2.0 |
Yolov10n [46] | 83.9 | 78.9 | 8.7 | 8.8 | 3.4 | 2.7 |
Yolov11n [47] | 84.3 | 77.8 | 8.4 | 8.5 | 3.4 | 2.6 |
Yolov12n [48] | 83.8 | 77.7 | 8.6 | 8.3 | 3.5 | 2.6 |
YOLOv8n [41] | 84.1 | 78.8 | 8.9 | 8.6 | 3.6 | 3.0 |
Ours (H-SoftNMS) | 69.3 | 95.0 | 8.3 | 7.8 | 3.3 | 2.1 |
Ours | 87.2 | 83.0 | 8.0 | 7.3 | 3.1 | 2.1 |
3.4. Performance Analysis in a Specific Complex and Overlapping Crater Field Scene
Model | Recall (%) | (%) |
---|---|---|
DeepMoon [16] | 84.1 | 71.87 |
Mask R-CNN [50] | 73.4 | 83.90 |
SqUNet [44] | 86.9 | 79.18 |
R-FCN [51] | 88.9 | 65.71 |
Faster R-CNN [22] | 88.1 | 68.36 |
LCD-Net [5] | 90.6 | 63.02 |
Yolov8n | 74.5 | 85.72 |
Yolov9t | 70.9 | 85.36 |
Yolov10n | 74.9 | 84.96 |
Yolov11n | 72.3 | 85.93 |
Yolov12n | 75.2 | 83.88 |
Ours | 91.6 | 89.6 |
4. Discussion
5. Conclusions
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
References
- Sawabe, Y.; Matsunaga, T.; Rokugawa, S. Automated detection and classification of lunar craters using multiple approaches. Adv. Space Res. 2006, 37, 21–27. [Google Scholar] [CrossRef]
- Chen, M.; Liu, D.; Qian, K.; Li, J.; Lei, M.; Zhou, Y. Lunar crater detection based on terrain analysis and mathematical morphology methods using digital elevation models. IEEE Trans. Geosci. Remote Sens. 2018, 56, 3681–3692. [Google Scholar] [CrossRef]
- Zang, S.; Mu, L.; Xian, L.; Zhang, W. Semi-supervised deep learning for lunar crater detection using ce-2 dom. Remote Sens. 2021, 13, 2819. [Google Scholar] [CrossRef]
- Fan, L.; Yuan, J.; Zha, K.; Wang, X. Elcd: Efficient lunar crater detection based on attention mechanisms and multiscale feature fusion networks from digital elevation models. Remote Sens. 2022, 14, 5225. [Google Scholar] [CrossRef]
- Miao, D.; Yan, J.; Tu, Z.; Barriot, J.P. LCDNet: An Innovative Neural Network for Enhanced Lunar Crater Detection Using DEM Data. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2024, 17, 11034–11049. [Google Scholar] [CrossRef]
- Salamunićcar, G.; Lončarić, S.; Mazarico, E. LU60645GT and MA132843GT catalogues of Lunar and Martian impact craters developed using a Crater Shape-based interpolation crater detection algorithm for topography data. Planet. Space Sci. 2012, 60, 236–247. [Google Scholar] [CrossRef]
- Ding, W.; Stepinski, T.F.; Bandeira, L.; Vilalta, R.; Wu, Y.; Lu, Z.; Cao, T. Automatic detection of craters in planetary images: An embedded framework using feature selection and boosting. In Proceedings of the 19th ACM international Conference on Information and Knowledge Management, Toronto, ON, Canada, 26–30 October 2010; pp. 749–758. [Google Scholar]
- Chen, J.Q.; Cui, P.Y.; Cui, H.T. Automated detection and classification for craters based on geometric matching. In International Symposium on Photoelectronic Detection and Imaging 2011: Space Exploration Technologies and Applications, Proceedings of the International Symposium on Photoelectronic Detection and Imaging 2011, Beijing, China, 24–26 May 2011; SPIE: Bellingham, WA, USA, 2011; Volume 8196, pp. 543–548. [Google Scholar]
- Ding, W.; Stepinski, T.F.; Mu, Y.; Bandeira, L.; Ricardo, R.; Wu, Y.; Lu, Z.; Cao, T.; Wu, X. Subkilometer crater discovery with boosting and transfer learning. ACM Trans. Intell. Syst. Technol. (TIST) 2011, 2, 39. [Google Scholar] [CrossRef]
- Yu, Z.; Zhu, S.; Cui, P. Sequence detection of planetary surface craters from DEM data. In Proceedings of the 10th World Congress on Intelligent Control and Automation, Beijing, China, 6–8 July 2012; IEEE: Piscataway, NJ, USA, 2012; pp. 4775–4779. [Google Scholar]
- Luo, L.; Mu, L.; Wang, X.; Li, C.; Ji, W.; Zhao, J.; Cai, H. Global detection of large lunar craters based on the CE-1 digital elevation model. Front. Earth Sci. 2013, 7, 456–464. [Google Scholar] [CrossRef]
- Wang, Y.; Xie, H.; Huang, Q.; Feng, Y.; Yan, X.; Tong, X.; Liu, S.; Liu, S.; Xu, X.; Wang, C.; et al. A novel approach for multiscale lunar crater detection by the use of path-profile and isolation forest based on high-resolution planetary images. IEEE Trans. Geosci. Remote Sens. 2022, 60, 4601424. [Google Scholar] [CrossRef]
- Duan, Q.; Liu, R.; Liu, Y. Automatic Lunar Crater Detection Based on DEM Data Using a Max Curvature Detection Method. IEEE Geosci. Remote Sens. Lett. 2024, 21, 8001205. [Google Scholar] [CrossRef]
- Hashimoto, S.; Mori, K. Lunar crater detection based on grid partition using deep learning. In Proceedings of the 2019 IEEE 13th International Symposium on Applied Computational Intelligence and Informatics (SACI), Timisoara, Romania, 29–31 May 2019; IEEE: Piscataway, NJ, USA, 2019; pp. 75–80. [Google Scholar]
- Jia, Y.; Wan, G.; Liu, L.; Wu, Y.; Zhang, C. Automated detection of lunar craters using deep learning. In Proceedings of the 2020 IEEE 9th Joint International Information Technology and Artificial Intelligence Conference (ITAIC), Chongqing, China, 11–13 December 2020; IEEE: Piscataway, NJ, USA, 2020; Volume 9, pp. 1419–1423. [Google Scholar]
- Silburt, A.; Ali-Dib, M.; Zhu, C.; Jackson, A.; Valencia, D.; Kissin, Y.; Tamayo, D.; Menou, K. Lunar crater identification via deep learning. Icarus 2019, 317, 27–38. [Google Scholar] [CrossRef]
- Mao, Y.; Yuan, R.; Li, W.; Liu, Y. Coupling complementary strategy to U-net based convolution neural network for detecting lunar impact craters. Remote Sens. 2022, 14, 661. [Google Scholar] [CrossRef]
- Tang, K.; Liang, J.; Yan, P.; Tian, X. Lunar crater detection based YOLOV5 using CCD data. In Proceedings of the 2022 IEEE International Conference on Artificial Intelligence and Computer Applications (ICAICA), Dalian, China, 24–26 June 2022; IEEE: Piscataway, NJ, USA, 2022; pp. 511–514. [Google Scholar]
- Wang, H.; Jiang, J.; Zhang, G. CraterIDNet: An end-to-end fully convolutional neural network for crater detection and identification in remotely sensed planetary images. Remote Sens. 2018, 10, 1067. [Google Scholar] [CrossRef]
- Wu, Y.; Wan, G.; Liu, L.; Wei, Z.; Wang, S. Intelligent crater detection on planetary surface using convolutional neural network. In Proceedings of the 2021 IEEE 5th Advanced Information Technology, Electronic and Automation Control Conference (IAEAC), Chongqing, China, 12–14 March 2021; IEEE: Piscataway, NJ, USA, 2021; Volume 5, pp. 1229–1234. [Google Scholar]
- Zhao, Y.; Ye, H. Crater Detection and Population Statistics in Tianwen-1 Landing Area Based on Segment Anything Model (SAM). Remote Sens. 2024, 16, 1743. [Google Scholar] [CrossRef]
- Lin, X.; Zhu, Z.; Yu, X.; Ji, X.; Luo, T.; Xi, X.; Zhu, M.; Liang, Y. Lunar crater detection on digital elevation model: A complete workflow using deep learning and its application. Remote Sens. 2022, 14, 621. [Google Scholar] [CrossRef]
- Sinha, M.; Paul, S.; Ghosh, M.; Mohanty, S.N.; Pattanayak, R.M. Automated Lunar Crater Identification with Chandrayaan-2 TMC-2 Images using Deep Convolutional Neural Networks. Sci. Rep. 2024, 14, 8231. [Google Scholar] [CrossRef]
- Myojin, T.; Hashimoto, S.; Mori, K.; Sugawara, K.; Ishihama, N. Improving reliability of object detection for lunar craters using Monte Carlo dropout. In Artificial Neural Networks and Machine Learning–ICANN 2019: Image Processing, Proceedings of the 28th International Conference on Artificial Neural Networks, Munich, Germany, 17–19 September 2019; Proceedings, Part III 28; Springer: Cham, Switzerland, 2019; pp. 68–80. [Google Scholar]
- Wang, Y.; Xie, H.; Huang, Q.; Yan, X.; Liu, S.; Ye, Z.; Wang, C.; Xu, X.; Liu, S.; Jin, Y.; et al. Small Lunar Crater Detection from LROC NAC using Statistically Constrained Path-morphologies and Unsupervised Discriminate Correlation Filters. IEEE Trans. Geosci. Remote Sens. 2024, 62, 4601124. [Google Scholar] [CrossRef]
- Dai, Y.; Xue, C.; Du, A. Boosting crater detection via vit-based feature fusion from near-ir images and dems. IEEE Geosci. Remote Sens. Lett. 2023, 20, 8002505. [Google Scholar] [CrossRef]
- Tewari, A.; Verma, V.; Srivastava, P.; Jain, V.; Khanna, N. Automated crater detection from co-registered optical images, elevation maps and slope maps using deep learning. Planet. Space Sci. 2022, 218, 105500. [Google Scholar] [CrossRef]
- La Grassa, R.; Cremonese, G.; Gallo, I.; Re, C.; Martellato, E. YOLOLens: A deep learning model based on super-resolution to enhance the crater detection of the planetary surfaces. Remote Sens. 2023, 15, 1171. [Google Scholar] [CrossRef]
- Tewari, A.; Khanna, N. Arbitrary Scale Super-Resolution Assisted Lunar Crater Detection in Satellite Images. arXiv 2024, arXiv:2402.05068. [Google Scholar] [CrossRef]
- Robinson, M.S.; Brylow, S.; Tschimmel, M.e.; Humm, D.; Lawrence, S.; Thomas, P.; Denevi, B.W.; Bowman-Cisneros, E.; Zerr, J.; Ravine, M.; et al. Lunar reconnaissance orbiter camera (LROC) instrument overview. Space Sci. Rev. 2010, 150, 81–124. [Google Scholar] [CrossRef]
- Speyerer, E.; Robinson, M.; Denevi, B.; LROC Science Team. Lunar Reconnaissance Orbiter Camera global morphological map of the Moon. In Proceedings of the 42nd Annual Lunar and Planetary Science Conference, The Woodlands, TX, USA, 7–11 March 2011; p. 2387, Number 1608 in LPI Contribution. [Google Scholar]
- Sato, H.; Robinson, M.; Hapke, B.; Denevi, B.; Boyd, A. Resolved Hapke parameter maps of the Moon. J. Geophys. Res. Planets 2014, 119, 1775–1805. [Google Scholar] [CrossRef]
- Robbins, S.J. A new global database of lunar impact craters > 1–2 km: 1. Crater locations and sizes, comparisons with published databases, and global analysis. J. Geophys. Res. Planets 2019, 124, 871–892. [Google Scholar] [CrossRef]
- Ren, S.; He, K.; Girshick, R.; Sun, J. Faster r-cnn: Towards real-time object detection with region proposal networks. Adv. Neural Inf. Process. Syst. 2015, 28, 1–9. [Google Scholar] [CrossRef]
- Han, K.; Wang, Y.; Tian, Q.; Guo, J.; Xu, C.; Xu, C. Ghostnet: More features from cheap operations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 13–19 June 2020; pp. 1580–1589. [Google Scholar]
- Howard, A.G.; Zhu, M.; Chen, B.; Kalenichenko, D.; Wang, W.; Weyand, T.; Andreetto, M.; Adam, H. Mobilenets: Efficient convolutional neural networks for mobile vision applications. arXiv 2017, arXiv:1704.04861. [Google Scholar] [CrossRef]
- Liu, S.; Qi, L.; Qin, H.; Shi, J.; Jia, J. Path Aggregation Network for Instance Segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Salt Lake City, UT, USA, 18–23 June 2018; pp. 8759–8768. [Google Scholar]
- Tan, M.; Pang, R.; Le, Q.V. EfficientDet: Scalable and Efficient Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 13–19 June 2020; pp. 10781–10790. [Google Scholar]
- Xu, S.; Zheng, S.; Xu, W.; Xu, R.; Wang, C.; Zhang, J.; Teng, X.; Li, A.; Guo, L. Hcf-net: Hierarchical context fusion network for infrared small object detection. In Proceedings of the 2024 IEEE International Conference on Multimedia and Expo (ICME), Niagara Falls, ON, Canada, 15–19 July 2024; IEEE: Piscataway, NJ, USA, 2024; pp. 1–6. [Google Scholar]
- Bodla, N.; Singh, B.; Chellappa, R.; Davis, L.S. Soft-NMS–improving object detection with one line of code. In Proceedings of the IEEE International Conference on Computer Vision, Venice, Italy, 22–29 October 2017; pp. 5561–5569. [Google Scholar]
- Jocher, G.; Chaurasia, A.; Qiu, J. Ultralytics YOLOv8. 2023. Available online: https://github.com/ultralytics/ultralytics (accessed on 10 June 2024).
- Wang, S.; Fan, Z.; Li, Z.; Zhang, H.; Wei, C. An effective lunar crater recognition algorithm based on convolutional neural network. Remote Sens. 2020, 12, 2694. [Google Scholar] [CrossRef]
- Zhou, L.; Zhang, C.; Wu, M. D-LinkNet: LinkNet with pretrained encoder and dilated convolution for high resolution satellite imagery road extraction. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops, Salt Lake City, UT, USA, 18–22 June 2018; pp. 182–186. [Google Scholar]
- Zhao, Y.; Ye, H. Squnet: An high-performance network for crater detection with dem data. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2023, 16, 8577–8585. [Google Scholar] [CrossRef]
- Wang, C.Y.; Yeh, I.H.; Mark Liao, H.Y. Yolov9: Learning what you want to learn using programmable gradient information. In Proceedings of the European Conference on Computer Vision, Milan, Italy, 29 September–4 October 2024; Springer: Cham, Switzerland, 2024; pp. 1–21. [Google Scholar]
- Wang, A.; Chen, H.; Liu, L.; Chen, K.; Lin, Z.; Han, J. Yolov10: Real-time end-to-end object detection. Adv. Neural Inf. Process. Syst. 2024, 37, 107984–108011. [Google Scholar]
- Khanam, R.; Hussain, M. Yolov11: An overview of the key architectural enhancements. arXiv 2024, arXiv:2410.17725. [Google Scholar] [CrossRef]
- Tian, Y.; Ye, Q.; Doermann, D. Yolov12: Attention-centric real-time object detectors. arXiv 2025, arXiv:2502.12524. [Google Scholar]
- La Grassa, R.; Martellato, E.; Cremonese, G.; Re, C.; Tullo, A.; Bertoli, S. LU5M812TGT: An AI-Powered global database of impact craters ≥ 0.4 km on the Moon. ISPRS J. Photogramm. Remote Sens. 2025, 220, 75–84. [Google Scholar] [CrossRef]
- Ali-Dib, M.; Menou, K.; Jackson, A.P.; Zhu, C.; Hammond, N. Automated crater shape retrieval using weakly-supervised deep learning. Icarus 2020, 345, 113749. [Google Scholar] [CrossRef]
- Yang, C.; Zhao, H.; Bruzzone, L.; Benediktsson, J.A.; Liang, Y.; Liu, B.; Zeng, X.; Guan, R.; Li, C.; Ouyang, Z. Lunar impact crater identification and age estimation with Chang’E data by deep and transfer learning. Nat. Commun. 2020, 11, 6358. [Google Scholar] [CrossRef] [PubMed]
NO. | ghostNet | BIFM | ASCS | H-SoftNMS | P (%) | R (%) | mAP50 (%) | mAP95 (%) | Params (M) |
---|---|---|---|---|---|---|---|---|---|
1 | 84.1 | 78.8 | 86.8 | 68.5 | 3.0 | ||||
2 | ✓ | 83.6 | 78.4 | 85.9 | 68.1 | 1.8 | |||
3 | ✓ | ✓ | 85.6 | 81.5 | 89.7 | 73.8 | 2.1 | ||
4 | ✓ | ✓ | 84.8 | 79.3 | 87.2 | 69.9 | 1.8 | ||
5 | ✓ | ✓ | 62.7 | 88.3 | 84.8 | 64.3 | 1.8 | ||
6 | ✓ | ✓ | ✓ | 87.2 | 83.0 | 91.0 | 75.1 | 2.1 | |
7 | ✓ | ✓ | ✓ | ✓ | 69.3 | 95.0 | 85.3 | 69.0 | 2.1 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Yu, R.; Xu, Z. Crater-MASN: A Multi-Scale Adaptive Semantic Network for Efficient Crater Detection. Remote Sens. 2025, 17, 3139. https://doi.org/10.3390/rs17183139
Yu R, Xu Z. Crater-MASN: A Multi-Scale Adaptive Semantic Network for Efficient Crater Detection. Remote Sensing. 2025; 17(18):3139. https://doi.org/10.3390/rs17183139
Chicago/Turabian StyleYu, Ruiqi, and Zhijing Xu. 2025. "Crater-MASN: A Multi-Scale Adaptive Semantic Network for Efficient Crater Detection" Remote Sensing 17, no. 18: 3139. https://doi.org/10.3390/rs17183139
APA StyleYu, R., & Xu, Z. (2025). Crater-MASN: A Multi-Scale Adaptive Semantic Network for Efficient Crater Detection. Remote Sensing, 17(18), 3139. https://doi.org/10.3390/rs17183139