How can i measure a vector's size, angle and direction that i found using Farneback's method?

2 ビュー (過去 30 日間)
For this simple example of Farneback's method, how can i measure the vector's characteristics?

採用された回答

Swarooph
Swarooph 2016 年 8 月 31 日
The flow variable output from estimateFlow function is of type opticalFlow and has all the information. You can access them using the dot (.) operator.
For e.g.
vx = flow.Vx;
vy = flow.Vy;
or = flow.Orientation;
mag = flow.Magnitude;
  1 件のコメント
Manasi Pathade
Manasi Pathade 2019 年 4 月 11 日
Which equation is used to compute flow.Orientation?
Is it atan2 or atan2d?
I wanted to know, what are the reference directions (0,90,180,270) in OpticalFlow?
Please help

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeComputer Vision Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by