File size: 57,320 Bytes
c6abe34 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 93 94 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 197 198 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 297 298 299 300 301 302 303 304 305 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 385 386 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 501 502 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 614 615 616 617 618 619 620 621 622 623 624 625 626 627 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 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 | Retriggering analysis for video 6faca277-99bc-4a28-9a3d-15ca6b871730...
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 281.3ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 281.3ms
2: 640x1088 1 hoop, 5 players, 1 referee, 1 shot-clock, 281.3ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 2 shot-clocks, 281.3ms
4: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 281.3ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 281.3ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 281.3ms
7: 640x1088 1 hoop, 4 players, 281.3ms
8: 640x1088 1 hoop, 4 players, 281.3ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 281.3ms
Speed: 18.4ms preprocess, 281.3ms inference, 7.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 233.7ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 233.7ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 233.7ms
3: 640x1088 1 basketball, 1 hoop, 4 players, 233.7ms
4: 640x1088 1 basketball, 1 hoop, 5 players, 233.7ms
5: 640x1088 1 basketball, 1 hoop, 7 players, 233.7ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 233.7ms
7: 640x1088 2 basketballs, 1 hoop, 5 players, 233.7ms
8: 640x1088 2 basketballs, 1 hoop, 5 players, 1 referee, 233.7ms
9: 640x1088 1 basketball, 1 hoop, 4 players, 2 referees, 233.7ms
Speed: 11.7ms preprocess, 233.7ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 hoop, 6 players, 390.0ms
1: 640x1088 1 hoop, 6 players, 390.0ms
2: 640x1088 1 hoop, 7 players, 390.0ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 390.0ms
4: 640x1088 1 hoop, 5 players, 390.0ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 390.0ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 390.0ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 390.0ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 390.0ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 390.0ms
Speed: 9.8ms preprocess, 390.0ms inference, 1.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 524.2ms
1: 640x1088 1 basketball, 1 hoop, 9 players, 524.2ms
2: 640x1088 1 basketball, 1 hoop, 8 players, 524.2ms
3: 640x1088 1 basketball, 1 hoop, 9 players, 524.2ms
4: 640x1088 1 basketball, 1 hoop, 6 players, 524.2ms
5: 640x1088 1 basketball, 1 hoop, 5 players, 524.2ms
6: 640x1088 1 basketball, 1 hoop, 6 players, 524.2ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 524.2ms
8: 640x1088 1 basketball, 1 hoop, 5 players, 524.2ms
9: 640x1088 2 basketballs, 1 hoop, 7 players, 524.2ms
Speed: 11.8ms preprocess, 524.2ms inference, 1.4ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 9 players, 428.3ms
1: 640x1088 1 basketball, 1 hoop, 9 players, 428.3ms
2: 640x1088 2 basketballs, 1 hoop, 7 players, 428.3ms
3: 640x1088 1 basketball, 1 hoop, 8 players, 428.3ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 428.3ms
5: 640x1088 1 basketball, 1 hoop, 7 players, 428.3ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 428.3ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 428.3ms
8: 640x1088 1 basketball, 1 hoop, 4 players, 428.3ms
9: 640x1088 1 basketball, 1 hoop, 3 players, 428.3ms
Speed: 17.9ms preprocess, 428.3ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 4 players, 303.7ms
1: 640x1088 1 hoop, 5 players, 303.7ms
2: 640x1088 1 hoop, 4 players, 303.7ms
3: 640x1088 1 hoop, 6 players, 303.7ms
4: 640x1088 1 basketball, 1 hoop, 5 players, 303.7ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 303.7ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 303.7ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 303.7ms
8: 640x1088 1 basketball, 1 hoop, 5 players, 303.7ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 303.7ms
Speed: 8.5ms preprocess, 303.7ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 407.8ms
1: 640x1088 1 basketball, 1 hoop, 7 players, 407.8ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 407.8ms
3: 640x1088 2 basketballs, 1 hoop, 4 players, 1 referee, 407.8ms
4: 640x1088 1 basketball, 1 hoop, 5 players, 407.8ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 407.8ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 407.8ms
7: 640x1088 1 basketball, 5 players, 407.8ms
8: 640x1088 5 players, 1 referee, 407.8ms
9: 640x1088 1 basketball, 4 players, 407.8ms
Speed: 9.1ms preprocess, 407.8ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 4 players, 306.0ms
1: 640x1088 1 basketball, 5 players, 306.0ms
2: 640x1088 1 basketball, 4 players, 306.0ms
3: 640x1088 1 basketball, 5 players, 306.0ms
4: 640x1088 1 basketball, 6 players, 306.0ms
5: 640x1088 1 basketball, 5 players, 306.0ms
6: 640x1088 1 basketball, 6 players, 306.0ms
7: 640x1088 1 basketball, 7 players, 306.0ms
8: 640x1088 1 basketball, 5 players, 306.0ms
9: 640x1088 1 basketball, 6 players, 306.0ms
Speed: 79.1ms preprocess, 306.0ms inference, 2.6ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 5 players, 282.5ms
1: 640x1088 1 basketball, 5 players, 282.5ms
2: 640x1088 1 basketball, 5 players, 282.5ms
3: 640x1088 1 basketball, 7 players, 282.5ms
4: 640x1088 1 basketball, 6 players, 282.5ms
5: 640x1088 2 basketballs, 7 players, 282.5ms
6: 640x1088 1 basketball, 5 players, 282.5ms
7: 640x1088 5 players, 282.5ms
8: 640x1088 1 basketball, 1 hoop, 5 players, 282.5ms
9: 640x1088 1 basketball, 6 players, 282.5ms
Speed: 61.8ms preprocess, 282.5ms inference, 1.2ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 6 players, 516.4ms
1: 640x1088 1 basketball, 6 players, 516.4ms
2: 640x1088 1 basketball, 7 players, 516.4ms
3: 640x1088 1 basketball, 1 hoop, 9 players, 516.4ms
4: 640x1088 1 basketball, 1 hoop, 9 players, 516.4ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 516.4ms
6: 640x1088 1 hoop, 8 players, 516.4ms
7: 640x1088 2 basketballs, 1 hoop, 6 players, 516.4ms
8: 640x1088 1 basketball, 1 hoop, 6 players, 516.4ms
9: 640x1088 1 basketball, 7 players, 516.4ms
Speed: 54.3ms preprocess, 516.4ms inference, 1.4ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 9 players, 310.5ms
1: 640x1088 1 basketball, 5 players, 310.5ms
2: 640x1088 1 basketball, 1 hoop, 4 players, 310.5ms
3: 640x1088 1 basketball, 1 hoop, 5 players, 310.5ms
4: 640x1088 1 basketball, 1 hoop, 4 players, 310.5ms
5: 640x1088 1 basketball, 3 players, 310.5ms
6: 640x1088 2 basketballs, 1 hoop, 6 players, 310.5ms
7: 640x1088 1 basketball, 9 players, 310.5ms
8: 640x1088 1 basketball, 6 players, 310.5ms
9: 640x1088 1 basketball, 1 hoop, 9 players, 310.5ms
Speed: 126.1ms preprocess, 310.5ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 8 players, 318.7ms
1: 640x1088 1 basketball, 3 players, 318.7ms
2: 640x1088 1 basketball, 2 hoops, 4 players, 318.7ms
3: 640x1088 2 hoops, 4 players, 318.7ms
4: 640x1088 1 basketball, 6 players, 318.7ms
5: 640x1088 1 basketball, 4 players, 318.7ms
6: 640x1088 1 basketball, 3 players, 318.7ms
7: 640x1088 1 basketball, 1 hoop, 4 players, 318.7ms
8: 640x1088 1 basketball, 2 hoops, 5 players, 318.7ms
9: 640x1088 1 basketball, 1 hoop, 4 players, 318.7ms
Speed: 96.7ms preprocess, 318.7ms inference, 21.0ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 2 hoops, 5 players, 273.3ms
1: 640x1088 2 basketballs, 2 hoops, 5 players, 273.3ms
2: 640x1088 2 basketballs, 1 hoop, 5 players, 273.3ms
3: 640x1088 2 basketballs, 1 hoop, 4 players, 273.3ms
4: 640x1088 2 basketballs, 5 players, 273.3ms
5: 640x1088 1 basketball, 2 hoops, 4 players, 273.3ms
6: 640x1088 1 basketball, 4 players, 273.3ms
7: 640x1088 1 basketball, 5 players, 273.3ms
8: 640x1088 1 basketball, 5 players, 273.3ms
9: 640x1088 1 basketball, 4 players, 273.3ms
Speed: 94.9ms preprocess, 273.3ms inference, 1.3ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 1 hoop, 3 players, 287.8ms
1: 640x1088 1 basketball, 3 players, 287.8ms
2: 640x1088 1 basketball, 6 players, 287.8ms
3: 640x1088 1 basketball, 3 players, 287.8ms
4: 640x1088 1 basketball, 1 hoop, 3 players, 287.8ms
5: 640x1088 1 basketball, 1 hoop, 4 players, 287.8ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 287.8ms
7: 640x1088 6 players, 287.8ms
8: 640x1088 1 basketball, 1 hoop, 4 players, 287.8ms
9: 640x1088 1 basketball, 4 players, 287.8ms
Speed: 79.5ms preprocess, 287.8ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 5 players, 542.3ms
1: 640x1088 1 basketball, 5 players, 542.3ms
2: 640x1088 1 basketball, 4 players, 542.3ms
3: 640x1088 1 basketball, 4 players, 542.3ms
4: 640x1088 1 basketball, 4 players, 542.3ms
5: 640x1088 1 basketball, 3 players, 542.3ms
6: 640x1088 1 basketball, 3 players, 542.3ms
7: 640x1088 1 basketball, 4 players, 542.3ms
8: 640x1088 1 basketball, 4 players, 542.3ms
9: 640x1088 1 basketball, 5 players, 542.3ms
Speed: 73.8ms preprocess, 542.3ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 7 players, 321.6ms
1: 640x1088 1 basketball, 9 players, 321.6ms
2: 640x1088 1 basketball, 7 players, 321.6ms
3: 640x1088 1 basketball, 4 players, 321.6ms
4: 640x1088 1 basketball, 5 players, 321.6ms
5: 640x1088 1 basketball, 1 hoop, 5 players, 321.6ms
6: 640x1088 6 players, 321.6ms
7: 640x1088 5 players, 321.6ms
8: 640x1088 1 basketball, 6 players, 321.6ms
9: 640x1088 1 basketball, 5 players, 321.6ms
Speed: 83.8ms preprocess, 321.6ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 6 players, 329.9ms
1: 640x1088 6 players, 329.9ms
2: 640x1088 8 players, 329.9ms
3: 640x1088 8 players, 329.9ms
4: 640x1088 7 players, 329.9ms
5: 640x1088 8 players, 329.9ms
6: 640x1088 5 players, 1 referee, 329.9ms
7: 640x1088 7 players, 329.9ms
8: 640x1088 7 players, 329.9ms
9: 640x1088 6 players, 329.9ms
Speed: 68.1ms preprocess, 329.9ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 7 players, 392.2ms
1: 640x1088 1 hoop, 7 players, 392.2ms
2: 640x1088 5 players, 392.2ms
3: 640x1088 1 basketball, 6 players, 392.2ms
4: 640x1088 1 basketball, 6 players, 392.2ms
5: 640x1088 7 players, 392.2ms
6: 640x1088 6 players, 392.2ms
7: 640x1088 8 players, 392.2ms
8: 640x1088 9 players, 392.2ms
9: 640x1088 8 players, 392.2ms
Speed: 79.5ms preprocess, 392.2ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 6 players, 278.7ms
1: 640x1088 6 players, 278.7ms
2: 640x1088 2 basketballs, 6 players, 278.7ms
3: 640x1088 3 basketballs, 5 players, 278.7ms
4: 640x1088 1 basketball, 5 players, 278.7ms
5: 640x1088 2 basketballs, 5 players, 278.7ms
6: 640x1088 4 basketballs, 7 players, 278.7ms
7: 640x1088 1 basketball, 5 players, 278.7ms
8: 640x1088 2 basketballs, 6 players, 1 referee, 278.7ms
9: 640x1088 2 basketballs, 5 players, 1 referee, 278.7ms
Speed: 67.9ms preprocess, 278.7ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 5 players, 1 referee, 234.7ms
1: 640x1088 2 basketballs, 6 players, 1 referee, 234.7ms
2: 640x1088 1 basketball, 6 players, 234.7ms
3: 640x1088 1 basketball, 7 players, 1 referee, 234.7ms
4: 640x1088 1 basketball, 8 players, 1 referee, 234.7ms
5: 640x1088 1 basketball, 6 players, 1 referee, 234.7ms
6: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 234.7ms
7: 640x1088 4 basketballs, 5 players, 234.7ms
8: 640x1088 1 basketball, 6 players, 234.7ms
9: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 234.7ms
Speed: 76.2ms preprocess, 234.7ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 6 players, 1 referee, 356.3ms
1: 640x1088 1 basketball, 7 players, 1 referee, 356.3ms
2: 640x1088 2 basketballs, 1 hoop, 9 players, 1 referee, 356.3ms
3: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 356.3ms
4: 640x1088 1 basketball, 1 hoop, 9 players, 2 referees, 356.3ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 2 referees, 356.3ms
6: 640x1088 1 basketball, 1 hoop, 10 players, 2 referees, 356.3ms
7: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 356.3ms
8: 640x1088 2 basketballs, 1 hoop, 7 players, 1 referee, 1 shot-clock, 356.3ms
9: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 2 shot-clocks, 356.3ms
Speed: 86.1ms preprocess, 356.3ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 hoop, 7 players, 1 referee, 1 shot-clock, 352.1ms
1: 640x1088 1 hoop, 5 players, 1 shot-clock, 352.1ms
2: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 352.1ms
3: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 352.1ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 352.1ms
5: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 352.1ms
6: 640x1088 1 basketball, 1 hoop, 6 players, 2 referees, 1 shot-clock, 352.1ms
7: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 352.1ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 352.1ms
9: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 352.1ms
Speed: 83.7ms preprocess, 352.1ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 203.6ms
1: 640x1088 1 basketball, 2 hoops, 6 players, 1 referee, 1 shot-clock, 203.6ms
2: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 203.6ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 203.6ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 203.6ms
5: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 203.6ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 203.6ms
7: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 203.6ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 203.6ms
9: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 203.6ms
Speed: 116.6ms preprocess, 203.6ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 336.7ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 336.7ms
2: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 336.7ms
3: 640x1088 1 basketball, 1 hoop, 4 players, 1 shot-clock, 336.7ms
4: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 336.7ms
5: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 336.7ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 336.7ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 336.7ms
8: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 336.7ms
9: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 336.7ms
Speed: 79.7ms preprocess, 336.7ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 227.1ms
1: 640x1088 1 basketball, 1 hoop, 12 players, 1 referee, 1 shot-clock, 227.1ms
2: 640x1088 1 basketball, 1 hoop, 8 players, 1 shot-clock, 227.1ms
3: 640x1088 1 basketball, 1 hoop, 11 players, 1 referee, 1 shot-clock, 227.1ms
4: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 227.1ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 227.1ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 227.1ms
7: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 227.1ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 227.1ms
9: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 227.1ms
Speed: 69.8ms preprocess, 227.1ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 243.0ms
1: 640x1088 1 basketball, 1 hoop, 8 players, 2 referees, 1 shot-clock, 243.0ms
2: 640x1088 1 basketball, 1 hoop, 7 players, 2 referees, 1 shot-clock, 243.0ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 2 referees, 1 shot-clock, 243.0ms
4: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 243.0ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 243.0ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 243.0ms
7: 640x1088 1 basketball, 1 hoop, 3 players, 1 referee, 1 shot-clock, 243.0ms
8: 640x1088 1 basketball, 1 hoop, 4 players, 1 referee, 1 shot-clock, 243.0ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 243.0ms
Speed: 83.6ms preprocess, 243.0ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 218.1ms
1: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 218.1ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 218.1ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 218.1ms
4: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 218.1ms
5: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 218.1ms
6: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 218.1ms
7: 640x1088 1 hoop, 8 players, 1 referee, 1 shot-clock, 218.1ms
8: 640x1088 1 hoop, 7 players, 1 referee, 1 shot-clock, 218.1ms
9: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 218.1ms
Speed: 64.2ms preprocess, 218.1ms inference, 2.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 301.4ms
1: 640x1088 2 basketballs, 1 hoop, 7 players, 1 referee, 1 shot-clock, 301.4ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 301.4ms
3: 640x1088 1 hoop, 5 players, 1 referee, 1 shot-clock, 301.4ms
4: 640x1088 1 hoop, 5 players, 1 referee, 1 shot-clock, 301.4ms
5: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 301.4ms
6: 640x1088 1 hoop, 5 players, 1 referee, 1 shot-clock, 301.4ms
7: 640x1088 1 hoop, 4 players, 1 referee, 1 shot-clock, 301.4ms
8: 640x1088 1 hoop, 4 players, 1 referee, 1 shot-clock, 301.4ms
9: 640x1088 1 hoop, 5 players, 1 referee, 1 shot-clock, 301.4ms
Speed: 80.8ms preprocess, 301.4ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 199.5ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 199.5ms
2: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 199.5ms
3: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 199.5ms
4: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 199.5ms
5: 640x1088 1 basketball, 1 hoop, 7 players, 2 referees, 1 shot-clock, 199.5ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 199.5ms
7: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 199.5ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 199.5ms
9: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 199.5ms
Speed: 65.7ms preprocess, 199.5ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 287.9ms
1: 640x1088 2 basketballs, 1 hoop, 7 players, 1 referee, 1 shot-clock, 287.9ms
2: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 287.9ms
3: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 287.9ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 287.9ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 287.9ms
6: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 287.9ms
7: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 287.9ms
8: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 287.9ms
9: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 287.9ms
Speed: 80.5ms preprocess, 287.9ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 223.8ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 223.8ms
Speed: 89.8ms preprocess, 223.8ms inference, 1.6ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 3 shot-clocks, 540.0ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 3 shot-clocks, 540.0ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 3 shot-clocks, 540.0ms
3: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 3 shot-clocks, 540.0ms
4: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 540.0ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 540.0ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 540.0ms
7: 640x1088 1 hoop, 5 players, 540.0ms
8: 640x1088 1 basketball, 1 hoop, 4 players, 540.0ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 540.0ms
Speed: 17.4ms preprocess, 540.0ms inference, 1.0ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 7 players, 280.7ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 280.7ms
2: 640x1088 1 basketball, 1 hoop, 7 players, 280.7ms
3: 640x1088 1 basketball, 1 hoop, 5 players, 280.7ms
4: 640x1088 1 basketball, 1 hoop, 6 players, 280.7ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 280.7ms
6: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 280.7ms
7: 640x1088 2 basketballs, 1 hoop, 5 players, 280.7ms
8: 640x1088 2 basketballs, 1 hoop, 5 players, 1 referee, 280.7ms
9: 640x1088 2 basketballs, 1 hoop, 4 players, 2 referees, 280.7ms
Speed: 13.3ms preprocess, 280.7ms inference, 0.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 hoop, 6 players, 276.2ms
1: 640x1088 1 hoop, 6 players, 276.2ms
2: 640x1088 1 hoop, 7 players, 276.2ms
3: 640x1088 2 basketballs, 1 hoop, 8 players, 276.2ms
4: 640x1088 1 hoop, 7 players, 276.2ms
5: 640x1088 1 basketball, 1 hoop, 7 players, 276.2ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 276.2ms
7: 640x1088 1 basketball, 1 hoop, 6 players, 276.2ms
8: 640x1088 2 basketballs, 1 hoop, 8 players, 276.2ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 276.2ms
Speed: 20.1ms preprocess, 276.2ms inference, 4.5ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 254.7ms
1: 640x1088 1 basketball, 1 hoop, 12 players, 254.7ms
2: 640x1088 1 basketball, 1 hoop, 8 players, 254.7ms
3: 640x1088 1 basketball, 1 hoop, 10 players, 254.7ms
4: 640x1088 1 basketball, 1 hoop, 9 players, 254.7ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 254.7ms
6: 640x1088 2 basketballs, 1 hoop, 6 players, 254.7ms
7: 640x1088 1 basketball, 1 hoop, 6 players, 254.7ms
8: 640x1088 1 basketball, 2 hoops, 6 players, 254.7ms
9: 640x1088 2 basketballs, 1 hoop, 7 players, 254.7ms
Speed: 15.6ms preprocess, 254.7ms inference, 1.3ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 11 players, 243.6ms
1: 640x1088 2 basketballs, 1 hoop, 9 players, 243.6ms
2: 640x1088 2 basketballs, 1 hoop, 8 players, 243.6ms
3: 640x1088 1 basketball, 1 hoop, 9 players, 243.6ms
4: 640x1088 1 basketball, 1 hoop, 10 players, 243.6ms
5: 640x1088 1 basketball, 1 hoop, 10 players, 243.6ms
6: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 243.6ms
7: 640x1088 1 basketball, 1 hoop, 6 players, 243.6ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 243.6ms
9: 640x1088 1 basketball, 1 hoop, 4 players, 243.6ms
Speed: 26.9ms preprocess, 243.6ms inference, 1.0ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 5 players, 205.7ms
1: 640x1088 1 hoop, 7 players, 205.7ms
2: 640x1088 1 hoop, 7 players, 205.7ms
3: 640x1088 1 basketball, 1 hoop, 8 players, 205.7ms
4: 640x1088 1 basketball, 1 hoop, 6 players, 205.7ms
5: 640x1088 1 basketball, 1 hoop, 9 players, 205.7ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 205.7ms
7: 640x1088 1 basketball, 1 hoop, 6 players, 205.7ms
8: 640x1088 1 basketball, 1 hoop, 6 players, 205.7ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 205.7ms
Speed: 25.7ms preprocess, 205.7ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 8 players, 213.0ms
1: 640x1088 2 basketballs, 1 hoop, 8 players, 213.0ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 213.0ms
3: 640x1088 2 basketballs, 1 hoop, 5 players, 1 referee, 213.0ms
4: 640x1088 2 basketballs, 1 hoop, 5 players, 213.0ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 213.0ms
6: 640x1088 1 basketball, 1 hoop, 6 players, 213.0ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 213.0ms
8: 640x1088 1 basketball, 5 players, 1 referee, 213.0ms
9: 640x1088 1 basketball, 1 hoop, 4 players, 1 referee, 213.0ms
Speed: 24.3ms preprocess, 213.0ms inference, 0.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 6 players, 1 referee, 292.5ms
1: 640x1088 1 basketball, 6 players, 1 referee, 292.5ms
2: 640x1088 1 basketball, 4 players, 292.5ms
3: 640x1088 1 basketball, 5 players, 292.5ms
4: 640x1088 2 basketballs, 6 players, 292.5ms
5: 640x1088 1 basketball, 8 players, 292.5ms
6: 640x1088 1 basketball, 7 players, 292.5ms
7: 640x1088 2 basketballs, 8 players, 292.5ms
8: 640x1088 1 basketball, 6 players, 292.5ms
9: 640x1088 1 basketball, 1 hoop, 6 players, 292.5ms
Speed: 81.0ms preprocess, 292.5ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 5 players, 214.2ms
1: 640x1088 1 basketball, 6 players, 214.2ms
2: 640x1088 1 basketball, 1 hoop, 6 players, 214.2ms
3: 640x1088 1 basketball, 1 hoop, 8 players, 214.2ms
4: 640x1088 1 basketball, 9 players, 214.2ms
5: 640x1088 2 basketballs, 7 players, 214.2ms
6: 640x1088 1 basketball, 7 players, 214.2ms
7: 640x1088 8 players, 214.2ms
8: 640x1088 1 basketball, 1 hoop, 5 players, 214.2ms
9: 640x1088 1 basketball, 6 players, 214.2ms
Speed: 78.6ms preprocess, 214.2ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 8 players, 207.9ms
1: 640x1088 2 basketballs, 8 players, 207.9ms
2: 640x1088 1 basketball, 7 players, 207.9ms
3: 640x1088 2 basketballs, 1 hoop, 11 players, 207.9ms
4: 640x1088 1 basketball, 1 hoop, 12 players, 207.9ms
5: 640x1088 1 basketball, 1 hoop, 11 players, 207.9ms
6: 640x1088 1 hoop, 8 players, 207.9ms
7: 640x1088 3 basketballs, 1 hoop, 8 players, 207.9ms
8: 640x1088 1 basketball, 1 hoop, 8 players, 207.9ms
9: 640x1088 1 basketball, 1 hoop, 7 players, 207.9ms
Speed: 22.3ms preprocess, 207.9ms inference, 0.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 9 players, 211.5ms
1: 640x1088 1 basketball, 6 players, 211.5ms
2: 640x1088 1 basketball, 1 hoop, 5 players, 211.5ms
3: 640x1088 1 basketball, 2 hoops, 5 players, 211.5ms
4: 640x1088 3 basketballs, 2 hoops, 4 players, 211.5ms
5: 640x1088 1 basketball, 1 hoop, 4 players, 211.5ms
6: 640x1088 3 basketballs, 3 hoops, 10 players, 211.5ms
7: 640x1088 1 basketball, 2 hoops, 11 players, 211.5ms
8: 640x1088 1 basketball, 1 hoop, 10 players, 211.5ms
9: 640x1088 1 basketball, 2 hoops, 10 players, 211.5ms
Speed: 21.5ms preprocess, 211.5ms inference, 0.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 8 players, 247.8ms
1: 640x1088 1 basketball, 5 players, 247.8ms
2: 640x1088 1 basketball, 2 hoops, 5 players, 247.8ms
3: 640x1088 2 hoops, 10 players, 247.8ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 247.8ms
5: 640x1088 1 basketball, 6 players, 247.8ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 247.8ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 247.8ms
8: 640x1088 1 basketball, 2 hoops, 8 players, 247.8ms
9: 640x1088 1 basketball, 1 hoop, 5 players, 247.8ms
Speed: 11.4ms preprocess, 247.8ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 2 hoops, 8 players, 212.6ms
1: 640x1088 2 basketballs, 2 hoops, 8 players, 212.6ms
2: 640x1088 2 basketballs, 1 hoop, 6 players, 212.6ms
3: 640x1088 3 basketballs, 2 hoops, 5 players, 212.6ms
4: 640x1088 2 basketballs, 1 hoop, 5 players, 212.6ms
5: 640x1088 1 basketball, 2 hoops, 5 players, 212.6ms
6: 640x1088 2 basketballs, 1 hoop, 4 players, 212.6ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 212.6ms
8: 640x1088 1 basketball, 1 hoop, 5 players, 212.6ms
9: 640x1088 2 basketballs, 1 hoop, 5 players, 212.6ms
Speed: 13.4ms preprocess, 212.6ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 3 hoops, 3 players, 211.5ms
1: 640x1088 1 basketball, 1 hoop, 3 players, 211.5ms
2: 640x1088 1 basketball, 7 players, 211.5ms
3: 640x1088 1 basketball, 1 hoop, 4 players, 211.5ms
4: 640x1088 1 basketball, 4 hoops, 3 players, 211.5ms
5: 640x1088 1 basketball, 1 hoop, 6 players, 211.5ms
6: 640x1088 1 basketball, 1 hoop, 6 players, 211.5ms
7: 640x1088 1 hoop, 6 players, 211.5ms
8: 640x1088 2 basketballs, 2 hoops, 6 players, 211.5ms
9: 640x1088 1 basketball, 5 players, 211.5ms
Speed: 10.6ms preprocess, 211.5ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 6 players, 234.0ms
1: 640x1088 1 basketball, 5 players, 234.0ms
2: 640x1088 1 basketball, 5 players, 234.0ms
3: 640x1088 1 basketball, 4 players, 234.0ms
4: 640x1088 2 basketballs, 5 players, 234.0ms
5: 640x1088 1 basketball, 3 players, 234.0ms
6: 640x1088 1 basketball, 3 players, 234.0ms
7: 640x1088 1 basketball, 5 players, 234.0ms
8: 640x1088 1 basketball, 6 players, 234.0ms
9: 640x1088 1 basketball, 7 players, 234.0ms
Speed: 11.0ms preprocess, 234.0ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 9 players, 214.9ms
1: 640x1088 1 basketball, 9 players, 214.9ms
2: 640x1088 1 basketball, 1 hoop, 8 players, 214.9ms
3: 640x1088 2 basketballs, 4 players, 214.9ms
4: 640x1088 1 basketball, 1 hoop, 5 players, 214.9ms
5: 640x1088 1 basketball, 2 hoops, 5 players, 214.9ms
6: 640x1088 6 players, 214.9ms
7: 640x1088 1 basketball, 6 players, 214.9ms
8: 640x1088 1 basketball, 8 players, 214.9ms
9: 640x1088 1 basketball, 9 players, 214.9ms
Speed: 9.9ms preprocess, 214.9ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 8 players, 243.9ms
1: 640x1088 8 players, 243.9ms
2: 640x1088 10 players, 243.9ms
3: 640x1088 8 players, 243.9ms
4: 640x1088 10 players, 243.9ms
5: 640x1088 1 basketball, 9 players, 243.9ms
6: 640x1088 5 players, 1 referee, 243.9ms
7: 640x1088 1 basketball, 8 players, 243.9ms
8: 640x1088 9 players, 243.9ms
9: 640x1088 7 players, 243.9ms
Speed: 9.3ms preprocess, 243.9ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 7 players, 216.4ms
1: 640x1088 1 hoop, 7 players, 216.4ms
2: 640x1088 6 players, 216.4ms
3: 640x1088 2 basketballs, 6 players, 216.4ms
4: 640x1088 1 basketball, 7 players, 216.4ms
5: 640x1088 8 players, 216.4ms
6: 640x1088 7 players, 216.4ms
7: 640x1088 9 players, 216.4ms
8: 640x1088 10 players, 216.4ms
9: 640x1088 10 players, 216.4ms
Speed: 8.5ms preprocess, 216.4ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 7 players, 196.9ms
1: 640x1088 1 basketball, 8 players, 196.9ms
2: 640x1088 2 basketballs, 7 players, 196.9ms
3: 640x1088 4 basketballs, 1 hoop, 6 players, 196.9ms
4: 640x1088 1 basketball, 5 players, 196.9ms
5: 640x1088 2 basketballs, 5 players, 196.9ms
6: 640x1088 4 basketballs, 8 players, 196.9ms
7: 640x1088 2 basketballs, 6 players, 196.9ms
8: 640x1088 2 basketballs, 6 players, 1 referee, 196.9ms
9: 640x1088 3 basketballs, 5 players, 1 referee, 196.9ms
Speed: 7.7ms preprocess, 196.9ms inference, 0.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 5 players, 1 referee, 196.6ms
1: 640x1088 4 basketballs, 6 players, 1 referee, 196.6ms
2: 640x1088 1 basketball, 7 players, 196.6ms
3: 640x1088 1 basketball, 7 players, 1 referee, 196.6ms
4: 640x1088 3 basketballs, 8 players, 1 referee, 196.6ms
5: 640x1088 1 basketball, 6 players, 1 referee, 196.6ms
6: 640x1088 1 basketball, 2 hoops, 6 players, 1 referee, 196.6ms
7: 640x1088 5 basketballs, 1 hoop, 5 players, 196.6ms
8: 640x1088 1 basketball, 6 players, 196.6ms
9: 640x1088 3 basketballs, 1 hoop, 9 players, 1 referee, 196.6ms
Speed: 7.7ms preprocess, 196.6ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 3 basketballs, 1 hoop, 8 players, 1 referee, 230.6ms
1: 640x1088 5 basketballs, 2 hoops, 7 players, 2 referees, 230.6ms
2: 640x1088 5 basketballs, 1 hoop, 12 players, 1 referee, 230.6ms
3: 640x1088 1 basketball, 1 hoop, 12 players, 1 referee, 230.6ms
4: 640x1088 1 basketball, 1 hoop, 11 players, 2 referees, 230.6ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 2 referees, 230.6ms
6: 640x1088 1 basketball, 1 hoop, 10 players, 3 referees, 230.6ms
7: 640x1088 1 basketball, 1 hoop, 9 players, 2 referees, 230.6ms
8: 640x1088 3 basketballs, 1 hoop, 8 players, 2 referees, 1 shot-clock, 230.6ms
9: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 2 shot-clocks, 230.6ms
Speed: 7.4ms preprocess, 230.6ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 212.3ms
1: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 212.3ms
2: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 212.3ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 212.3ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 212.3ms
5: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 212.3ms
6: 640x1088 1 basketball, 1 hoop, 8 players, 2 referees, 1 shot-clock, 212.3ms
7: 640x1088 2 basketballs, 1 hoop, 8 players, 1 referee, 1 shot-clock, 212.3ms
8: 640x1088 1 basketball, 1 hoop, 8 players, 2 referees, 1 shot-clock, 212.3ms
9: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 212.3ms
Speed: 8.5ms preprocess, 212.3ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 237.1ms
1: 640x1088 1 basketball, 2 hoops, 8 players, 1 referee, 1 shot-clock, 237.1ms
2: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 237.1ms
3: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 237.1ms
4: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 237.1ms
5: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 237.1ms
6: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 237.1ms
7: 640x1088 1 basketball, 1 hoop, 11 players, 1 referee, 1 shot-clock, 237.1ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 237.1ms
9: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 237.1ms
Speed: 8.6ms preprocess, 237.1ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 200.9ms
1: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 200.9ms
2: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 200.9ms
3: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 200.9ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 200.9ms
5: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 200.9ms
6: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 200.9ms
7: 640x1088 1 basketball, 1 hoop, 5 players, 1 shot-clock, 200.9ms
8: 640x1088 2 basketballs, 1 hoop, 7 players, 1 shot-clock, 200.9ms
9: 640x1088 2 basketballs, 1 hoop, 8 players, 1 referee, 1 shot-clock, 200.9ms
Speed: 8.1ms preprocess, 200.9ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 240.1ms
1: 640x1088 1 basketball, 1 hoop, 12 players, 1 referee, 1 shot-clock, 240.1ms
2: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 240.1ms
3: 640x1088 1 basketball, 1 hoop, 14 players, 1 referee, 1 shot-clock, 240.1ms
4: 640x1088 2 basketballs, 1 hoop, 11 players, 1 referee, 1 shot-clock, 240.1ms
5: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 240.1ms
6: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 240.1ms
7: 640x1088 1 basketball, 1 hoop, 10 players, 1 referee, 1 shot-clock, 240.1ms
8: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 240.1ms
9: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 240.1ms
Speed: 7.7ms preprocess, 240.1ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 245.0ms
1: 640x1088 1 basketball, 1 hoop, 9 players, 2 referees, 1 shot-clock, 245.0ms
2: 640x1088 1 basketball, 1 hoop, 10 players, 2 referees, 1 shot-clock, 245.0ms
3: 640x1088 1 basketball, 1 hoop, 10 players, 2 referees, 1 shot-clock, 245.0ms
4: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 245.0ms
5: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 245.0ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 245.0ms
7: 640x1088 1 basketball, 1 hoop, 4 players, 1 referee, 1 shot-clock, 245.0ms
8: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 245.0ms
9: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 245.0ms
Speed: 9.6ms preprocess, 245.0ms inference, 2.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 1 hoop, 8 players, 1 referee, 1 shot-clock, 360.0ms
1: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 360.0ms
2: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 360.0ms
3: 640x1088 1 basketball, 1 hoop, 7 players, 1 shot-clock, 360.0ms
4: 640x1088 1 basketball, 1 hoop, 6 players, 1 shot-clock, 360.0ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 360.0ms
6: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 360.0ms
7: 640x1088 1 hoop, 8 players, 1 referee, 1 shot-clock, 360.0ms
8: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 360.0ms
9: 640x1088 1 hoop, 7 players, 1 referee, 1 shot-clock, 360.0ms
Speed: 11.7ms preprocess, 360.0ms inference, 1.3ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 2 basketballs, 1 hoop, 8 players, 1 referee, 1 shot-clock, 221.1ms
1: 640x1088 2 basketballs, 1 hoop, 7 players, 1 referee, 1 shot-clock, 221.1ms
2: 640x1088 2 basketballs, 1 hoop, 5 players, 1 referee, 1 shot-clock, 221.1ms
3: 640x1088 1 basketball, 1 hoop, 5 players, 1 referee, 1 shot-clock, 221.1ms
4: 640x1088 2 basketballs, 1 hoop, 5 players, 1 referee, 1 shot-clock, 221.1ms
5: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 221.1ms
6: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 221.1ms
7: 640x1088 1 hoop, 4 players, 1 referee, 1 shot-clock, 221.1ms
8: 640x1088 1 hoop, 5 players, 1 referee, 1 shot-clock, 221.1ms
9: 640x1088 1 hoop, 6 players, 2 referees, 1 shot-clock, 221.1ms
Speed: 9.7ms preprocess, 221.1ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 hoop, 6 players, 1 referee, 1 shot-clock, 235.3ms
1: 640x1088 2 basketballs, 1 hoop, 6 players, 1 referee, 1 shot-clock, 235.3ms
2: 640x1088 1 basketball, 1 hoop, 7 players, 2 referees, 1 shot-clock, 235.3ms
3: 640x1088 2 basketballs, 1 hoop, 11 players, 2 referees, 1 shot-clock, 235.3ms
4: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 235.3ms
5: 640x1088 1 basketball, 1 hoop, 9 players, 2 referees, 1 shot-clock, 235.3ms
6: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 235.3ms
7: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 235.3ms
8: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 235.3ms
9: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 235.3ms
Speed: 9.0ms preprocess, 235.3ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 231.3ms
1: 640x1088 2 basketballs, 1 hoop, 7 players, 1 referee, 1 shot-clock, 231.3ms
2: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 231.3ms
3: 640x1088 1 basketball, 1 hoop, 6 players, 1 referee, 1 shot-clock, 231.3ms
4: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 231.3ms
5: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 231.3ms
6: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 231.3ms
7: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 231.3ms
8: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 231.3ms
9: 640x1088 1 basketball, 1 hoop, 9 players, 1 referee, 1 shot-clock, 231.3ms
Speed: 8.3ms preprocess, 231.3ms inference, 0.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 1 hoop, 8 players, 1 referee, 1 shot-clock, 209.4ms
1: 640x1088 1 basketball, 1 hoop, 7 players, 1 referee, 1 shot-clock, 209.4ms
Speed: 8.0ms preprocess, 209.4ms inference, 1.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 4512.8ms
1: 640x1088 1 basketball, 4512.8ms
2: 640x1088 1 basketball, 4512.8ms
3: 640x1088 1 basketball, 4512.8ms
4: 640x1088 1 basketball, 4512.8ms
5: 640x1088 1 basketball, 4512.8ms
6: 640x1088 1 basketball, 4512.8ms
7: 640x1088 1 basketball, 4512.8ms
8: 640x1088 1 basketball, 4512.8ms
9: 640x1088 1 basketball, 4512.8ms
10: 640x1088 (no detections), 4512.8ms
11: 640x1088 (no detections), 4512.8ms
12: 640x1088 (no detections), 4512.8ms
13: 640x1088 (no detections), 4512.8ms
14: 640x1088 (no detections), 4512.8ms
15: 640x1088 (no detections), 4512.8ms
16: 640x1088 (no detections), 4512.8ms
17: 640x1088 (no detections), 4512.8ms
18: 640x1088 (no detections), 4512.8ms
19: 640x1088 (no detections), 4512.8ms
Speed: 16.9ms preprocess, 4512.8ms inference, 4.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 4093.1ms
1: 640x1088 (no detections), 4093.1ms
2: 640x1088 (no detections), 4093.1ms
3: 640x1088 (no detections), 4093.1ms
4: 640x1088 (no detections), 4093.1ms
5: 640x1088 (no detections), 4093.1ms
6: 640x1088 (no detections), 4093.1ms
7: 640x1088 (no detections), 4093.1ms
8: 640x1088 (no detections), 4093.1ms
9: 640x1088 1 basketball, 4093.1ms
10: 640x1088 (no detections), 4093.1ms
11: 640x1088 (no detections), 4093.1ms
12: 640x1088 (no detections), 4093.1ms
13: 640x1088 (no detections), 4093.1ms
14: 640x1088 (no detections), 4093.1ms
15: 640x1088 1 basketball, 4093.1ms
16: 640x1088 1 basketball, 4093.1ms
17: 640x1088 1 basketball, 4093.1ms
18: 640x1088 1 basketball, 4093.1ms
19: 640x1088 1 basketball, 4093.1ms
Speed: 88.9ms preprocess, 4093.1ms inference, 3.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 3759.4ms
1: 640x1088 1 basketball, 3759.4ms
2: 640x1088 1 basketball, 3759.4ms
3: 640x1088 (no detections), 3759.4ms
4: 640x1088 1 basketball, 3759.4ms
5: 640x1088 (no detections), 3759.4ms
6: 640x1088 1 basketball, 3759.4ms
7: 640x1088 1 basketball, 3759.4ms
8: 640x1088 (no detections), 3759.4ms
9: 640x1088 (no detections), 3759.4ms
10: 640x1088 (no detections), 3759.4ms
11: 640x1088 (no detections), 3759.4ms
12: 640x1088 (no detections), 3759.4ms
13: 640x1088 (no detections), 3759.4ms
14: 640x1088 (no detections), 3759.4ms
15: 640x1088 (no detections), 3759.4ms
16: 640x1088 (no detections), 3759.4ms
17: 640x1088 (no detections), 3759.4ms
18: 640x1088 (no detections), 3759.4ms
19: 640x1088 (no detections), 3759.4ms
Speed: 72.6ms preprocess, 3759.4ms inference, 1.4ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 3531.3ms
1: 640x1088 (no detections), 3531.3ms
2: 640x1088 (no detections), 3531.3ms
3: 640x1088 1 basketball, 3531.3ms
4: 640x1088 1 basketball, 3531.3ms
5: 640x1088 1 basketball, 3531.3ms
6: 640x1088 (no detections), 3531.3ms
7: 640x1088 1 basketball, 3531.3ms
8: 640x1088 (no detections), 3531.3ms
9: 640x1088 (no detections), 3531.3ms
10: 640x1088 (no detections), 3531.3ms
11: 640x1088 (no detections), 3531.3ms
12: 640x1088 (no detections), 3531.3ms
13: 640x1088 (no detections), 3531.3ms
14: 640x1088 (no detections), 3531.3ms
15: 640x1088 (no detections), 3531.3ms
16: 640x1088 (no detections), 3531.3ms
17: 640x1088 (no detections), 3531.3ms
18: 640x1088 (no detections), 3531.3ms
19: 640x1088 (no detections), 3531.3ms
Speed: 107.6ms preprocess, 3531.3ms inference, 1.3ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 3463.0ms
1: 640x1088 (no detections), 3463.0ms
2: 640x1088 (no detections), 3463.0ms
3: 640x1088 1 basketball, 3463.0ms
4: 640x1088 (no detections), 3463.0ms
5: 640x1088 (no detections), 3463.0ms
6: 640x1088 (no detections), 3463.0ms
7: 640x1088 (no detections), 3463.0ms
8: 640x1088 (no detections), 3463.0ms
9: 640x1088 (no detections), 3463.0ms
10: 640x1088 (no detections), 3463.0ms
11: 640x1088 (no detections), 3463.0ms
12: 640x1088 (no detections), 3463.0ms
13: 640x1088 (no detections), 3463.0ms
14: 640x1088 (no detections), 3463.0ms
15: 640x1088 (no detections), 3463.0ms
16: 640x1088 (no detections), 3463.0ms
17: 640x1088 (no detections), 3463.0ms
18: 640x1088 (no detections), 3463.0ms
19: 640x1088 (no detections), 3463.0ms
Speed: 102.2ms preprocess, 3463.0ms inference, 0.8ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 3715.5ms
1: 640x1088 1 basketball, 3715.5ms
2: 640x1088 1 basketball, 3715.5ms
3: 640x1088 (no detections), 3715.5ms
4: 640x1088 (no detections), 3715.5ms
5: 640x1088 (no detections), 3715.5ms
6: 640x1088 (no detections), 3715.5ms
7: 640x1088 (no detections), 3715.5ms
8: 640x1088 (no detections), 3715.5ms
9: 640x1088 (no detections), 3715.5ms
10: 640x1088 (no detections), 3715.5ms
11: 640x1088 1 basketball, 3715.5ms
12: 640x1088 (no detections), 3715.5ms
13: 640x1088 (no detections), 3715.5ms
14: 640x1088 (no detections), 3715.5ms
15: 640x1088 (no detections), 3715.5ms
16: 640x1088 (no detections), 3715.5ms
17: 640x1088 (no detections), 3715.5ms
18: 640x1088 (no detections), 3715.5ms
19: 640x1088 (no detections), 3715.5ms
Speed: 113.3ms preprocess, 3715.5ms inference, 0.7ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 3836.3ms
1: 640x1088 (no detections), 3836.3ms
2: 640x1088 (no detections), 3836.3ms
3: 640x1088 1 basketball, 3836.3ms
4: 640x1088 1 basketball, 3836.3ms
5: 640x1088 1 basketball, 3836.3ms
6: 640x1088 1 basketball, 3836.3ms
7: 640x1088 1 basketball, 3836.3ms
8: 640x1088 1 basketball, 3836.3ms
9: 640x1088 1 basketball, 3836.3ms
10: 640x1088 1 basketball, 3836.3ms
11: 640x1088 1 basketball, 3836.3ms
12: 640x1088 1 basketball, 3836.3ms
13: 640x1088 1 basketball, 3836.3ms
14: 640x1088 1 basketball, 3836.3ms
15: 640x1088 1 basketball, 3836.3ms
16: 640x1088 1 basketball, 3836.3ms
17: 640x1088 1 basketball, 3836.3ms
18: 640x1088 (no detections), 3836.3ms
19: 640x1088 (no detections), 3836.3ms
Speed: 115.2ms preprocess, 3836.3ms inference, 4.3ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 4255.3ms
1: 640x1088 1 basketball, 4255.3ms
2: 640x1088 (no detections), 4255.3ms
3: 640x1088 (no detections), 4255.3ms
4: 640x1088 (no detections), 4255.3ms
5: 640x1088 (no detections), 4255.3ms
6: 640x1088 1 basketball, 4255.3ms
7: 640x1088 (no detections), 4255.3ms
8: 640x1088 (no detections), 4255.3ms
9: 640x1088 (no detections), 4255.3ms
10: 640x1088 (no detections), 4255.3ms
11: 640x1088 (no detections), 4255.3ms
12: 640x1088 (no detections), 4255.3ms
13: 640x1088 1 basketball, 4255.3ms
14: 640x1088 1 basketball, 4255.3ms
15: 640x1088 1 basketball, 4255.3ms
16: 640x1088 1 basketball, 4255.3ms
17: 640x1088 (no detections), 4255.3ms
18: 640x1088 1 basketball, 4255.3ms
19: 640x1088 1 basketball, 4255.3ms
Speed: 101.2ms preprocess, 4255.3ms inference, 3.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 4697.5ms
1: 640x1088 1 basketball, 4697.5ms
2: 640x1088 1 basketball, 4697.5ms
3: 640x1088 1 basketball, 4697.5ms
4: 640x1088 1 basketball, 4697.5ms
5: 640x1088 1 basketball, 4697.5ms
6: 640x1088 1 basketball, 4697.5ms
7: 640x1088 1 basketball, 4697.5ms
8: 640x1088 1 basketball, 4697.5ms
9: 640x1088 1 basketball, 4697.5ms
10: 640x1088 (no detections), 4697.5ms
11: 640x1088 1 basketball, 4697.5ms
12: 640x1088 (no detections), 4697.5ms
13: 640x1088 1 basketball, 4697.5ms
14: 640x1088 1 basketball, 4697.5ms
15: 640x1088 1 basketball, 4697.5ms
16: 640x1088 1 basketball, 4697.5ms
17: 640x1088 1 basketball, 4697.5ms
18: 640x1088 1 basketball, 4697.5ms
19: 640x1088 1 basketball, 4697.5ms
Speed: 120.1ms preprocess, 4697.5ms inference, 3.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 1 basketball, 4664.5ms
1: 640x1088 1 basketball, 4664.5ms
2: 640x1088 1 basketball, 4664.5ms
3: 640x1088 1 basketball, 4664.5ms
4: 640x1088 1 basketball, 4664.5ms
5: 640x1088 1 basketball, 4664.5ms
6: 640x1088 (no detections), 4664.5ms
7: 640x1088 1 basketball, 4664.5ms
8: 640x1088 1 basketball, 4664.5ms
9: 640x1088 (no detections), 4664.5ms
10: 640x1088 1 basketball, 4664.5ms
11: 640x1088 (no detections), 4664.5ms
12: 640x1088 (no detections), 4664.5ms
13: 640x1088 1 basketball, 4664.5ms
14: 640x1088 1 basketball, 4664.5ms
15: 640x1088 1 basketball, 4664.5ms
16: 640x1088 (no detections), 4664.5ms
17: 640x1088 (no detections), 4664.5ms
18: 640x1088 (no detections), 4664.5ms
19: 640x1088 (no detections), 4664.5ms
Speed: 111.9ms preprocess, 4664.5ms inference, 6.1ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 4717.2ms
1: 640x1088 (no detections), 4717.2ms
2: 640x1088 (no detections), 4717.2ms
3: 640x1088 (no detections), 4717.2ms
4: 640x1088 (no detections), 4717.2ms
5: 640x1088 (no detections), 4717.2ms
6: 640x1088 (no detections), 4717.2ms
7: 640x1088 (no detections), 4717.2ms
8: 640x1088 (no detections), 4717.2ms
9: 640x1088 (no detections), 4717.2ms
10: 640x1088 (no detections), 4717.2ms
11: 640x1088 (no detections), 4717.2ms
12: 640x1088 (no detections), 4717.2ms
13: 640x1088 (no detections), 4717.2ms
14: 640x1088 1 basketball, 4717.2ms
15: 640x1088 1 basketball, 4717.2ms
16: 640x1088 (no detections), 4717.2ms
17: 640x1088 1 basketball, 4717.2ms
18: 640x1088 (no detections), 4717.2ms
19: 640x1088 (no detections), 4717.2ms
Speed: 109.3ms preprocess, 4717.2ms inference, 3.0ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
0: 640x1088 (no detections), 5065.7ms
1: 640x1088 (no detections), 5065.7ms
2: 640x1088 (no detections), 5065.7ms
3: 640x1088 (no detections), 5065.7ms
4: 640x1088 (no detections), 5065.7ms
5: 640x1088 (no detections), 5065.7ms
6: 640x1088 (no detections), 5065.7ms
7: 640x1088 (no detections), 5065.7ms
8: 640x1088 (no detections), 5065.7ms
9: 640x1088 (no detections), 5065.7ms
10: 640x1088 (no detections), 5065.7ms
11: 640x1088 (no detections), 5065.7ms
12: 640x1088 (no detections), 5065.7ms
13: 640x1088 (no detections), 5065.7ms
14: 640x1088 (no detections), 5065.7ms
15: 640x1088 (no detections), 5065.7ms
16: 640x1088 (no detections), 5065.7ms
17: 640x1088 (no detections), 5065.7ms
18: 640x1088 (no detections), 5065.7ms
19: 640x1088 (no detections), 5065.7ms
Speed: 99.4ms preprocess, 5065.7ms inference, 7.9ms postprocess per image at shape (1, 3, 640, 1088)
WARNING ⚠️ imgsz=[1080] must be multiple of max stride 32, updating to [1088]
|