LoginSignup
0
0

[論文備忘録] Panoptic Quality (Panoptic Segmentation), 2018

Last updated at Posted at 2024-01-16

Panoptic Segmentation

semantic segmentation (stuff)とinstance segmentation (things)を統合したpanoptic segmentationを提案。

Panoptic Quality (Panoptic Segmentation), 2018.png

タスクフォーマット

各ピクセルiにsemantic class (l_i)とinstance id (z_i)をマップする:
Panoptic Quality (Panoptic Segmentation), 2018-1.png

z_iは同じsemantic classのピクセルを個別のセグメント(segment)にグループする。
曖昧もしくはクラスに属さないピクセルにはvoid labelがアサインできる。(e.g. すべてのピクセルがsemantic labelを持つとは限らない)

semantic classはstuffとthingsに大別される:
Panoptic Quality (Panoptic Segmentation), 2018-2.png
かつ
Panoptic Quality (Panoptic Segmentation), 2018-3.png
また、stuffではz_iの値は無視される。

Panoptic Quality

panoptic segmentationの評価尺度。
ground truthに対するpredicted panoptic segmentationのqualityを評価する。

Panoptic Quality (Panoptic Segmentation), 2018-4.png

1. Segment matching

predicted segmentはground truth segmentに対してintersection over union (IoU)が0.5より大きいときにマッチできる。(注: マッチするにはsemantic classが一致する必要もある)
これはpanoptic segmentationのnon-overlapping propertyな特性と併せてunique matchingを与える。(各ground truth segmentにつき、せいぜい1つのpredicted segmentがマッチする)

2. PQ Computation

次のようにPQをクラスごとに独立して計算し、その平均をとったものを評価値とする。

Panoptic Quality (Panoptic Segmentation), 2018-5.png

true positive (TP): マッチしたセグメントのペア
false positive (FP): マッチしなかったpredictedセグメント
false negative (FN): マッチしなかったground truthセグメント

0.5|FP|と0.5|FN|がペナルティとして分母に加えられていて、それを除いたものはマッチしたセグメントのIoUの平均値。

Note: すべてのセグメントはそのエリアに関わらず同じ重要度を持つ。

また、PQは次のようにsegmentation quality(SQ)とrecognition quality(RQ)を掛けたものとみなすこともできる:
Panoptic Quality (Panoptic Segmentation), 2018-6.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0