Try   HackMD
tags: 2022Q1技術研討, detection

Rotated Object Detection

從前的Detection輸出都是bbox(xmin ymin, xmax, ymax)
並沒有加入角度的資訊在裡面,所以通常在會在aug利用旋轉數據來增強

中心點坐標、寬度、高度和旋轉角度

(x,y,w,h,θ)

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

  • a) 短邊定義法
  • b) 長邊定義法
  • c) 有序四邊形定義法

邊界問題

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

  • 角度週期性(periodicity of angular,PoA)
  • 邊的交換性(exchangeability of edges,EoE)

角度的不連續性,較難以學習

CSL (Circular Smooth Label)

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

為了捕捉到水平特徵,會使用非正方形的filter(不規則卷積)

CSL(x)={g(x),θr<x<θ+r0,otherwise

g(x) is a window function.
r
is the radius of the window function.
θ
represents the angle of the current bounding box.

  • 週期性 (periodicity)
    g(x)=g(x+kT), kN, T=180/w
  • 對稱性 (symmetry)
    0g(θ+ε)=g(θε)1, |ε|<r
  • 最大值 (maximum)
    g(θ)=1
  • 單調性 (monotonic)
    0g(θ±ε)g(θ±ζ)1, |ζ|<|ε|<r

CSL的概念可以看作是指定label的機率

連結

CSL PAPER
SCL PAPER
CSL 知乎