├── LICENSE ├── README.md ├── css └── style.css ├── img └── screenshot.jpg ├── index.html ├── js ├── main.js └── opencv.js ├── model ├── nms-yolov8.onnx ├── yolov8n.onnx └── yolov8n_quant.onnx ├── tfjs_version ├── index.html └── yolov8x_web_model │ ├── group1-shard1of4.bin │ ├── group1-shard2of4.bin │ ├── group1-shard3of4.bin │ ├── group1-shard4of4.bin │ ├── metadata.yaml │ └── model.json └── yolov8_onnx_without_nms ├── index.html └── yolov8n.onnx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/css/style.css -------------------------------------------------------------------------------- /img/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/img/screenshot.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/index.html -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/js/main.js -------------------------------------------------------------------------------- /js/opencv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/js/opencv.js -------------------------------------------------------------------------------- /model/nms-yolov8.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/model/nms-yolov8.onnx -------------------------------------------------------------------------------- /model/yolov8n.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/model/yolov8n.onnx -------------------------------------------------------------------------------- /model/yolov8n_quant.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/model/yolov8n_quant.onnx -------------------------------------------------------------------------------- /tfjs_version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/index.html -------------------------------------------------------------------------------- /tfjs_version/yolov8x_web_model/group1-shard1of4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/yolov8x_web_model/group1-shard1of4.bin -------------------------------------------------------------------------------- /tfjs_version/yolov8x_web_model/group1-shard2of4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/yolov8x_web_model/group1-shard2of4.bin -------------------------------------------------------------------------------- /tfjs_version/yolov8x_web_model/group1-shard3of4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/yolov8x_web_model/group1-shard3of4.bin -------------------------------------------------------------------------------- /tfjs_version/yolov8x_web_model/group1-shard4of4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/yolov8x_web_model/group1-shard4of4.bin -------------------------------------------------------------------------------- /tfjs_version/yolov8x_web_model/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/yolov8x_web_model/metadata.yaml -------------------------------------------------------------------------------- /tfjs_version/yolov8x_web_model/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/tfjs_version/yolov8x_web_model/model.json -------------------------------------------------------------------------------- /yolov8_onnx_without_nms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/yolov8_onnx_without_nms/index.html -------------------------------------------------------------------------------- /yolov8_onnx_without_nms/yolov8n.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akbartus/Yolov8-Object-Detection-on-Browser/HEAD/yolov8_onnx_without_nms/yolov8n.onnx --------------------------------------------------------------------------------