cvu icon indicating copy to clipboard operation
cvu copied to clipboard

Computer Vision deployment tools for dummies and experts. CVU aims at making CV pipelines easier to build and consistent around platforms, devices, and models.

Results 4 cvu issues
Sort by recently updated
recently updated
newest added

``` import os import time import numpy as np import cv2 from cvu.detector import Detector def detect_image(weight, image_path, output_image, classes="coco", auto_install=True): # load model model = Detector(classes=classes,weight=weight, backend="tensorrt") # read...

bug

This PR is to apply changes to the current interface based on the issues or misconfigurations identified during development. **Identified issues**: - `init()` method in `ICore` accepts parameters `classes` which...

i am exploring yolov5-obb, and it seems like it is not encountered by CVU the repo i am following for object-oriented bounding boxes is https://github.com/CVHub520/yolov5_obb.git

你的项目做的很棒,对我的工作产生了很大的作用,但是我想知道你有没有支持yolov8的打算,如果有的话那就太好了

enhancement