Drawing#
Drawing utils
Paths
#
Class that draws the paths taken by a set of points of interest defined from the coordinates of each tracker estimation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
get_points_to_draw |
Optional[Callable[[np.array], np.array]], optional
|
Function that takes a list of points (the By default it is the mean point of all the points in the tracker. |
None
|
thickness |
Optional[int], optional
|
Thickness of the circles representing the paths of interest. |
None
|
color |
Optional[Tuple[int, int, int]], optional
|
Color of the circles representing the paths of interest. |
None
|
radius |
Optional[int], optional
|
Radius of the circles representing the paths of interest. |
None
|
attenuation |
float, optional
|
A float number in [0, 1] that dictates the speed at which the path is erased.
if it is |
0.01
|
Examples:
>>> from norfair import Tracker, Video, Path
>>> video = Video("video.mp4")
>>> tracker = Tracker(...)
>>> path_drawer = Path()
>>> for frame in video:
>>> detections = get_detections(frame) # runs detector and returns Detections
>>> tracked_objects = tracker.update(detections)
>>> frame = path_drawer.draw(frame, tracked_objects)
>>> video.write(frame)
Source code in norfair/drawing.py
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
|
draw(frame, tracked_objects)
#
Draw the paths of the points interest on a frame.
Warning
This method does not draw frames in place use the returned one.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frame |
np.ndarray
|
The OpenCV frame to draw on. |
required |
tracked_objects |
Sequence[TrackedObject]
|
List of |
required |
Returns:
Type | Description |
---|---|
np.array
|
The resulting frame. |
Source code in norfair/drawing.py
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
|
Color
#
Object which represents an OpenCV color.
Its properties are the colors which it can represent.
For example, set Color.blue
to get the OpenCV tuple representing the color blue.
Source code in norfair/drawing.py
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 |
|
draw_points(frame, detections, radius=None, thickness=None, color=None, color_by_label=False, draw_labels=False, label_size=None)
#
Draw a list of detections on a frame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frame |
np.ndarray
|
The OpenCV frame to draw on. Modified in place. |
required |
detections |
Sequence[Detection]
|
List of |
required |
radius |
Optional[int], optional
|
Radius of the circles representing the detected points. |
None
|
thickness |
Optional[int], optional
|
Thickness of the circles representing the detected points. |
None
|
color |
Optional[Tuple[int, int, int]], optional
|
Color of the circles representing the detected points. |
None
|
color_by_label |
bool, optional
|
If |
False
|
draw_labels |
bool, optional
|
If |
False
|
label_size |
Optional[int], optional
|
Size of the label being drawn along with the detected points. |
None
|
Source code in norfair/drawing.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
draw_tracked_objects(frame, objects, radius=None, color=None, id_size=None, id_thickness=None, draw_points=True, color_by_label=False, draw_labels=False, label_size=None)
#
Draw a list of tracked objects on a frame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frame |
np.ndarray
|
The OpenCV frame to draw on. Modified in place. |
required |
objects |
Sequence[TrackedObject]
|
List of |
required |
radius |
Optional[int], optional
|
Radius of the circles representing the points estimated by the tracked objects. |
None
|
color |
Optional[Tuple[int, int, int]], optional
|
Color of the circles representing the points estimated by the tracked objects. |
None
|
id_size |
Optional[float], optional
|
Size of the id number being drawn on each tracked object. The id wont get drawn if |
None
|
id_thickness |
Optional[int], optional
|
Thickness of the id number being drawn on each tracked object. |
None
|
draw_points |
bool, optional
|
Boolean determining if the function should draw the points estimated by the tracked objects.
If set to |
True
|
color_by_label |
bool, optional
|
If |
False
|
draw_labels |
bool, optional
|
If |
False
|
label_size |
Optional[int], optional
|
Size of the label being drawn along with the tracked points. |
None
|
Source code in norfair/drawing.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
|
draw_debug_metrics(frame, objects, text_size=None, text_thickness=None, color=None, only_ids=None, only_initializing_ids=None, draw_score_threshold=0, color_by_label=False, draw_labels=False)
#
Draw objects with their debug information
It is recommended to set the input variable objects
to your_tracker_object.objects
so you can also debug objects wich haven't finished initializing, and you get a more
complete view of what your tracker is doing on each step.
Source code in norfair/drawing.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
draw_boxes(frame, detections, line_color=None, line_width=None, random_color=False, color_by_label=False, draw_labels=False, label_size=None)
#
Draw draws a list of detections as boxes on a frame.
This function uses the first 2 points of your Detection
instances to draw a box with those points as its corners.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frame |
np.ndarray
|
The OpenCV frame to draw on. |
required |
detections |
Sequence[Detection]
|
List of |
required |
line_color |
Optional[Tuple[int, int, int]], optional
|
Color of the boxes representing the detections. |
None
|
line_width |
Optional[int], optional
|
Width of the lines constituting the sides of the boxes representing the detections. |
None
|
random_color |
bool, optional
|
If |
False
|
color_by_label |
bool, optional
|
If |
False
|
draw_labels |
bool, optional
|
If |
False
|
label_size |
Optional[int], optional
|
Size of the label being drawn along with the detected boxes. |
None
|
Returns:
Type | Description |
---|---|
np.array
|
The frame. |
Source code in norfair/drawing.py
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
draw_tracked_boxes(frame, objects, border_colors=None, border_width=None, id_size=None, id_thickness=None, draw_box=True, color_by_label=False, draw_labels=False, label_size=None, label_width=None)
#
Draw draws a list of tracked objects on a frame.
This function uses the first 2 points of your TrackedObject
instances to draw a box with those points as its corners.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frame |
np.ndarray
|
The OpenCV frame to draw on. |
required |
objects |
Sequence[TrackedObject]
|
List of |
required |
border_colors |
Optional[Tuple[int, int, int]], optional
|
Color of the boxes representing the tracked objects. |
None
|
border_width |
Optional[int], optional
|
Width of the lines constituting the sides of the boxes representing the tracked objects. |
None
|
id_size |
Optional[int], optional
|
Size of the id number being drawn on each tracked object. The id wont get drawn if |
None
|
id_thickness |
Optional[int], optional
|
Thickness of the id number being drawn on each tracked object. |
None
|
draw_box |
bool, optional
|
Boolean determining if the function should draw the boxes estimated by the tracked objects. If set to |
True
|
color_by_label |
bool, optional
|
If |
False
|
draw_labels |
bool, optional
|
If |
False
|
label_size |
Optional[int], optional
|
Size of the label being drawn along with the tracked boxes. |
None
|
label_width |
Optional[int], optional
|
Thickness of the label being drawn along with the tracked boxes. |
None
|
Returns:
Type | Description |
---|---|
np.array
|
The frame |
Source code in norfair/drawing.py
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 |
|