├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── components ├── ObjectDetectionCamera.tsx └── models │ └── Yolo.tsx ├── convert_pt_to_onnx ├── main.py ├── requirements.txt └── ultralytics_pt_to_onnx.md ├── data └── yolo_classes.ts ├── demo.mp4 ├── models ├── yolo11n.onnx ├── yolo12n.onnx ├── yolov10n.onnx ├── yolov7-tiny_256x256.onnx ├── yolov7-tiny_320x320.onnx └── yolov7-tiny_640x640.onnx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── hello.ts └── index.tsx ├── postcss.config.js ├── public ├── icon.png ├── manifest.json └── sw.js ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── types.d.ts ├── utils ├── index.ts └── runModel.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/README.md -------------------------------------------------------------------------------- /components/ObjectDetectionCamera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/components/ObjectDetectionCamera.tsx -------------------------------------------------------------------------------- /components/models/Yolo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/components/models/Yolo.tsx -------------------------------------------------------------------------------- /convert_pt_to_onnx/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/convert_pt_to_onnx/main.py -------------------------------------------------------------------------------- /convert_pt_to_onnx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/convert_pt_to_onnx/requirements.txt -------------------------------------------------------------------------------- /convert_pt_to_onnx/ultralytics_pt_to_onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/convert_pt_to_onnx/ultralytics_pt_to_onnx.md -------------------------------------------------------------------------------- /data/yolo_classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/data/yolo_classes.ts -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/demo.mp4 -------------------------------------------------------------------------------- /models/yolo11n.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/models/yolo11n.onnx -------------------------------------------------------------------------------- /models/yolo12n.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/models/yolo12n.onnx -------------------------------------------------------------------------------- /models/yolov10n.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/models/yolov10n.onnx -------------------------------------------------------------------------------- /models/yolov7-tiny_256x256.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/models/yolov7-tiny_256x256.onnx -------------------------------------------------------------------------------- /models/yolov7-tiny_320x320.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/models/yolov7-tiny_320x320.onnx -------------------------------------------------------------------------------- /models/yolov7-tiny_640x640.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/models/yolov7-tiny_640x640.onnx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/public/sw.js -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@ideasio/add-to-homescreen-react'; -------------------------------------------------------------------------------- /utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/utils/index.ts -------------------------------------------------------------------------------- /utils/runModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/utils/runModel.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanjaho/real-time-object-detection-web-app/HEAD/yarn.lock --------------------------------------------------------------------------------