クレーターの楕円率の決定は複雑で時間のかかる作業であり、これまでのところ自動化の成功を避けてきました。 Lunarデジタル標高マップでクレーターを識別し、そのサイズと2D形状を取得するために、最先端のコンピュータービジョンアルゴリズムをトレーニングします。モデルの計算上のバックボーンはMaskRCNNです。これは、画像内のクレーターを検出すると同時に、その外縁をトレースする各クレーターのマスクを生成する「インスタンスセグメンテーション」汎用フレームワークです。その後、後処理パイプラインがこれらのマスクに最も近い楕円を見つけ、クレーターの楕円率を取得できるようにします。このモデルは、トレーニングデータと検証中にネットワークから隠れた経度範囲内の既知のクレーターの87%を正しく識別することができます(テストセット)一方で、トレーニングデータに存在しない数千のクレーターを予測します。これらの「新しい」クレーターのサブセットの手動検証は、それらの大部分が本物であることを示します。これは、不完全なトレーニングデータにもかかわらず、クレーターを識別する学習におけるモデルの強さの指標として採用します。このモデルで予測されたクレーターのサイズ、楕円率、深さの分布は、人間が生成した結果と一致しています。このモデルを使用すると、月の高地とマリアの間のクレーター直径と形状分布の違いを大規模に検索することができ、統計的な有意性の高いそのような違いは除外されます。予測テストセットカタログとトレーニング済みモデルは、https://github.com/malidib/Craters_MaskRCNN/から入手できます。
Crater ellipticity determination is a complex and time consuming task that so far has evaded successful automation. We train a state of the art computer vision algorithm to identify craters in Lunar digital elevation maps and retrieve their sizes and 2D shapes. The computational backbone of the model is MaskRCNN, an "instance segmentation" general framework that detects craters in an image while simultaneously producing a mask for each crater that traces its outer rim. Our post-processing pipeline then finds the closest fitting ellipse to these masks, allowing us to retrieve the crater ellipticities. Our model is able to correctly identify 87% of known craters in the longitude range we hid from the network during training and validation (test set), while predicting thousands of additional craters not present in our training data. Manual validation of a subset of these "new" craters indicates that a majority of them are real, which we take as an indicator of the strength of our model in learning to identify craters, despite incomplete training data. The crater size, ellipticity, and depth distributions predicted by our model are consistent with human-generated results. The model allows us to perform a large scale search for differences in crater diameter and shape distributions between the lunar highlands and maria, and we exclude any such differences with a high statistical significance. The predicted test set catalogue and trained model are available here: https://github.com/malidib/Craters_MaskRCNN/.