| Package | Description |
|---|---|
| org.opencv.core | |
| org.opencv.dnn | |
| org.opencv.tracking |
| Modifier and Type | Method and Description |
|---|---|
static MatOfRect2d |
MatOfRect2d.fromNativeAddr(long addr) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Dnn.NMSBoxes(MatOfRect2d bboxes,
MatOfFloat scores,
float score_threshold,
float nms_threshold,
MatOfInt indices)
Performs non maximum suppression given boxes and corresponding scores.
|
static void |
Dnn.NMSBoxes(MatOfRect2d bboxes,
MatOfFloat scores,
float score_threshold,
float nms_threshold,
MatOfInt indices,
float eta)
Performs non maximum suppression given boxes and corresponding scores.
|
static void |
Dnn.NMSBoxes(MatOfRect2d bboxes,
MatOfFloat scores,
float score_threshold,
float nms_threshold,
MatOfInt indices,
float eta,
int top_k)
Performs non maximum suppression given boxes and corresponding scores.
|
static void |
Dnn.NMSBoxesBatched(MatOfRect2d bboxes,
MatOfFloat scores,
MatOfInt class_ids,
float score_threshold,
float nms_threshold,
MatOfInt indices)
Performs batched non maximum suppression on given boxes and corresponding scores across different classes.
|
static void |
Dnn.NMSBoxesBatched(MatOfRect2d bboxes,
MatOfFloat scores,
MatOfInt class_ids,
float score_threshold,
float nms_threshold,
MatOfInt indices,
float eta)
Performs batched non maximum suppression on given boxes and corresponding scores across different classes.
|
static void |
Dnn.NMSBoxesBatched(MatOfRect2d bboxes,
MatOfFloat scores,
MatOfInt class_ids,
float score_threshold,
float nms_threshold,
MatOfInt indices,
float eta,
int top_k)
Performs batched non maximum suppression on given boxes and corresponding scores across different classes.
|
| Modifier and Type | Method and Description |
|---|---|
MatOfRect2d |
legacy_MultiTracker.getObjects()
Returns a reference to a storage for the tracked objects, each object corresponds to one tracker algorithm
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
legacy_MultiTracker.update(Mat image,
MatOfRect2d boundingBox)
Update the current tracking status.
|
Copyright © 2025. All rights reserved.