Home
last modified time | relevance | path

Searched refs:m_MotionCells (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/opencv/
DMotionCells.cpp175 …if (m_MotionCells.size () > 0) //it contains previous motioncells what we used when frames drop… in performDetectionMotionCells()
176 m_MotionCells.clear (); in performDetectionMotionCells()
185 …m_motioncells_idx_count = m_MotionCells.size () * MSGLEN; //one motion cell idx: (lin idx : col id… in performDetectionMotionCells()
189 for (unsigned int i = 0; i < m_MotionCells.size (); i++) { in performDetectionMotionCells()
191 pt1.x = m_MotionCells.at (i).cell_pt1.x * 2; in performDetectionMotionCells()
192 pt1.y = m_MotionCells.at (i).cell_pt1.y * 2; in performDetectionMotionCells()
193 pt2.x = m_MotionCells.at (i).cell_pt2.x * 2; in performDetectionMotionCells()
194 pt2.y = m_MotionCells.at (i).cell_pt2.y * 2; in performDetectionMotionCells()
209 if (i < m_MotionCells.size () - 1) { in performDetectionMotionCells()
210 snprintf (tmpstr, MSGLEN + 1, "%d:%d,", m_MotionCells.at (i).lineidx, in performDetectionMotionCells()
[all …]
DMotionCells.h245 vector < MotionCellsIdx > m_MotionCells; variable