Skip to main content
QUICK REVIEW

[論文レビュー] Zero-Shot Refinement of Buildings' Segmentation Models using SAM

Ali Mayladan, H.A. Nasrallah|arXiv (Cornell University)|Oct 3, 2023
Automated Road and Building ExtractionEngineering被引用数 3
ひとこと要約

本稿では、事前学習済みのCNNをプロンプト生成器として用い、Segment Anything Model (SAM) をプロンプト工学によって活用することで、微調整を伴わずにリモートセンシングにおけるインスタンスセグメンテーションを構築するゼロショット精錬手法を提案する。この手法は、境界ボックスプロンプトを用いることで、SAMの局所化および認識能力を向上させることで、特に分布外のWHU Buildingsデータに対して、交差整合係数(IoU)で5.47%の向上、F1スコアで4.81%の向上を達成し、セグメンテーション精度を顕著に向上させる。

ABSTRACT

Foundation models have excelled in various tasks but are often evaluated on general benchmarks. The adaptation of these models for specific domains, such as remote sensing imagery, remains an underexplored area. In remote sensing, precise building instance segmentation is vital for applications like urban planning. While Convolutional Neural Networks (CNNs) perform well, their generalization can be limited. For this aim, we present a novel approach to adapt foundation models to address existing models' generalization dropback. Among several models, our focus centers on the Segment Anything Model (SAM), a potent foundation model renowned for its prowess in class-agnostic image segmentation capabilities. We start by identifying the limitations of SAM, revealing its suboptimal performance when applied to remote sensing imagery. Moreover, SAM does not offer recognition abilities and thus fails to classify and tag localized objects. To address these limitations, we introduce different prompting strategies, including integrating a pre-trained CNN as a prompt generator. This novel approach augments SAM with recognition abilities, a first of its kind. We evaluated our method on three remote sensing datasets, including the WHU Buildings dataset, the Massachusetts Buildings dataset, and the AICrowd Mapping Challenge. For out-of-distribution performance on the WHU dataset, we achieve a 5.47\% increase in IoU and a 4.81\% improvement in F1-score. For in-distribution performance on the WHU dataset, we observe a 2.72\% and 1.58\% increase in True-Positive-IoU and True-Positive-F1 score, respectively. Our code is publicly available at this Repo (https://github.com/geoaigroup/GEOAI-ECRS2023), hoping to inspire further exploration of foundation models for domain-specific tasks within the remote sensing community.

研究の動機と目的

  • リモートセンシングにおける基礎的モデル(例:SAM)の一般化ギャップ、特に建物フットプリントセグメンテーションの分野での課題を解決すること。
  • SAMが認識能力に欠ける問題を克服するため、事前学習済みのCNNをプロンプト生成器として統合し、対象の分類およびタグ付けを可能にする。
  • 微調整を伴わず、リモートセンシング画像におけるSAMの性能を向上させる有効なプロンプト戦略を探索すること。
  • 分布内および分布外のリモートセンシングデータセット上で、本手法の性能を評価し、ドメイン間での頑健性を示すこと。
  • 今後のリモートセンシング分野における基礎的モデルのドメイン特化研究を促進するため、公開のコードベースを提供すること。

提案手法

  • 事前学習済みのCNNを用いてRGB衛星画像からセグメンテーションマスクを生成し、そのマスクを基にSAM用の空間的プロンプトを生成する。
  • 複数のプロンプト戦略を評価:単一ポイント、ネガティブポイント、複数ポイント(ランダムおよびスケルトンベース)、境界ボックスプロンプト。
  • CNNが予測したマスクから得られる境界ボックスプロンプトを、SAMへの入力として用い、セグメンテーション出力を精錬する。
  • 本手法はゼロショットで動作し、モデルの微調整や追加のアノテーションを一切必要としない。
  • CNNが生成するマスクは、局所化と認識の両方の信号として機能し、SAMが建物をより正確にセグメンテーションできるようにする。
  • 本手法は、CNNのドメイン特化された局所化能力と、SAMの強力なゼロショット一般化能力を組み合わせることで、より優れたインスタンスセグメンテーションを実現する。
Figure 1: Input RGB image undergoes rooftop instance segmentation via the CNN model. Segmentation masks are passed to the Prompt Generator used to prompt SAM. This approach would equip SAM with recognition abilities and generate precise buildings output masks.
Figure 1: Input RGB image undergoes rooftop instance segmentation via the CNN model. Segmentation masks are passed to the Prompt Generator used to prompt SAM. This approach would equip SAM with recognition abilities and generate precise buildings output masks.

実験結果

リサーチクエスチョン

  • RQ1微調整を伴わず、SAMをリモートセンシングにおける建物インスタンスセグメンテーションに効果的に適応できるか?
  • RQ2ポイントベース、複数ポイント、境界ボックスのうち、どのプロンプト戦略がリモートセンシング画像における建物セグメンテーション精度を最も高めるか?
  • RQ3事前学習済みのCNNをプロンプト生成器として統合することで、SAMの認識能力およびセグメンテーション性能がリモートセンシングデータで向上するか?
  • RQ4本手法は、ベースラインのCNNモデルと比較して、分布外のリモートセンシングデータセットでも優れた性能を示すか?
  • RQ5スケルトンベースの複数ポイントプロンプトが、ランダムな複数ポイントプロンプトを上回らないのはなぜか?

主な発見

  • 分布外のWHU Buildingsデータセットにおいて、境界ボックスプロンプト戦略はベースラインのCNNと比較して、IoUが5.47%向上し、F1スコアが4.81%向上した。
  • WHUデータセットにおける分布内性能では、真陽性IoUが2.72%向上し、真陽性F1スコアが1.58%向上した。
  • 境界ボックスプロンプトは、単一ポイント、ネガティブポイント、複数ポイントプロンプトを含む、他のすべてのプロンプト戦略を上回った。
  • マサチューセッツ建物データセットおよびAICrowd Mapping Challengeデータセットでも、良好な性能を示し、TP-IoUおよびTP-F1に顕著な向上を達成した。
  • 驚くべきことに、スケルトンベースの複数ポイントプロンプトはランダムな複数ポイント戦略を上回らなかった。これは、この文脈においてポイントの配置パターンがSAMの性能に重要でない可能性を示唆している。
  • 事前学習済みのCNNをプロンプト生成器として統合することで、SAMに認識能力が付与され、リモートセンシング画像において建物の正確なセグメンテーションとタグ付けが可能になった。
(a) Single-point
(a) Single-point

より良い研究を、今すぐ始めましょう

論文の読解から最終レビューまで、研究時間を劇的に削減しましょう。

クレジットカード登録不要

このレビューはAIが作成し、人間の編集者が確認しました。