フィルターのクリア

how to identify the change in frames?

3 ビュー (過去 30 日間)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2013 年 2 月 27 日
consider there are 12 frames. first 5 frames indicates same operation and remaining 7 frames indicates different operation. i have to form 2 groups. how to achieve this?

採用された回答

Youssef  Khmou
Youssef Khmou 2013 年 2 月 27 日
hi,
you can use the gradient operator to identify the movement , but if the frames are very static then you can use elementary operations to identify the changing, but that also depends on the situation, is it offline operations or real time :
You can construct a loop through which you compute the Norm of the differences between each two consecutive frames :
tolerance =rand(1) ; % to identify from Tunning measurments
for iter=1:N-1
Diff=norm2(Frame(i+1)-Frame(i));....
Or simply you can compute the absolute differences without a loop and sort the vector result then compute its First derivative , and take the Max index of the derivative ; that index is the separating point between the two groups .
Without mentioning that there are sophisticated ways to do the task like the " Support Vector Machine " .
  1 件のコメント
Youssef  Khmou
Youssef Khmou 2013 年 2 月 27 日
編集済み: Youssef Khmou 2013 年 2 月 27 日
try using norm or norm2 , look at the description of them both,

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

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by