├── .gitignore ├── LICENSE ├── README.md ├── predict.py └── utils ├── __init__.py ├── convert_coordinates.py ├── draw_pred_on_onr_img.py ├── n_cls_nms_plus.py └── slice_images.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/README.md -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/predict.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/convert_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/utils/convert_coordinates.py -------------------------------------------------------------------------------- /utils/draw_pred_on_onr_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/utils/draw_pred_on_onr_img.py -------------------------------------------------------------------------------- /utils/n_cls_nms_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/utils/n_cls_nms_plus.py -------------------------------------------------------------------------------- /utils/slice_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ABCnutter/YOLTV8/HEAD/utils/slice_images.py --------------------------------------------------------------------------------