Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一般化されたハフ変換をmatlabに実装しようとしています。アルゴリズムでは、形状の各ポイントでグラデーションの方向が必要です。下の図に示すように、どのようにファイを測定できますか?
曲線の法線[x(t)、y(t)]は[-dy(t)/ dt、dx(t)/dt]です。したがって、xx座標とyy座標である場合、法線は次のようになります。
x
y
[-diff(y(:)),diff(x(:))]
角度ファイは
atan2(diff(x(:)),-diff(y(:)))