Uses of Class
org.opencv.core.Rect2d
-
Packages that use Rect2d Package Description org.opencv.core org.opencv.tracking org.opencv.utils -
-
Uses of Rect2d in org.opencv.core
Methods in org.opencv.core that return Rect2d Modifier and Type Method Description Rect2d
Rect2d. clone()
Rect2d[]
MatOfRect2d. toArray()
Methods in org.opencv.core that return types with arguments of type Rect2d Modifier and Type Method Description List<Rect2d>
MatOfRect2d. toList()
Methods in org.opencv.core with parameters of type Rect2d Modifier and Type Method Description void
MatOfRect2d. fromArray(Rect2d... a)
Method parameters in org.opencv.core with type arguments of type Rect2d Modifier and Type Method Description void
MatOfRect2d. fromList(List<Rect2d> lr)
Constructors in org.opencv.core with parameters of type Rect2d Constructor Description MatOfRect2d(Rect2d... a)
-
Uses of Rect2d in org.opencv.tracking
Methods in org.opencv.tracking with parameters of type Rect2d Modifier and Type Method Description boolean
legacy_MultiTracker. add(legacy_Tracker newTracker, Mat image, Rect2d boundingBox)
Add a new object to be tracked.boolean
legacy_Tracker. init(Mat image, Rect2d boundingBox)
Initialize the tracker with a known bounding box that surrounded the targetboolean
legacy_Tracker. update(Mat image, Rect2d boundingBox)
Update the tracker, find the new most likely bounding box for the target -
Uses of Rect2d in org.opencv.utils
Method parameters in org.opencv.utils with type arguments of type Rect2d Modifier and Type Method Description static void
Converters. Mat_to_vector_Rect2d(Mat m, List<Rect2d> rs)
static Mat
Converters. vector_Rect2d_to_Mat(List<Rect2d> rs)
-