This repository contains code for an object detection and recognition model. The project includes scripts for creating datasets, training models, and detecting objects in images.
project_directory
├── dataset_creator.py ├── trainer.py ├── detector.py ├── process_images.py ├── README.md
python -m venv (name for vevn).\activate\scripts\name of venv- dataset_creator.py: Script for creating and managing datasets used for training the model.
- trainer.py: Script for training the object detection and recognition model.
- detector.py: Script for running the object detection model on images.
To run this project, you'll need to have the following installed:
- Python 3.8+
- OpenCV
- TensorFlow
- NumPy
You can install the required packages using pip:
pip install opencv-python-headless tensorflow numpy