cvu
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.
``` 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...
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