SegmentMotion是指整個運動分割為獨立的運動部分。
基本介紹
- 外文名:SegmentMotion
- 定義:整個運動分割為獨立的運動部分
- 函式形式:CvSeq* cvSegmentMotion
- 分類:數學
函式形式,參數,說明,
函式形式
CvSeq* cvSegmentMotion( const CvArr* mhi, CvArr* seg_mask, CvMemStorage* storage, double timestamp, double seg_thresh );
參數
- mhi
- 運動歷史圖像
- seg_mask
- 發現應當存儲的 mask 的圖像, 單通道, 32bits, 浮點數.
- storage
- 包含運動連通域序列的記憶體存儲倉
- timestamp
- 當前時間,毫秒單位
- seg_thresh
- 分割閾值,推薦等於或大於運動歷史“每步”之間的間隔。
說明
函式 cvSegmentMotion 尋找所有的運動分割,並且在seg_mask 用不同的單獨數字(1,2,...)標識它們。它也返回一個具有 CvConnectedComp 結構的序列,其中每個結構對應一個運動部件。在這之後,每個運動部件的運動方向就可以被函式 cvCalcGlobalOrientation 利用提取的特定部件的掩模(mask)計算出來(使用 cvCmp)