This project demonstrates object detection using TensorFlow and MySQL database interaction.
This project utilizes TensorFlow for object detection tasks and integrates with a MySQL database for storing detection data.
git clone https://github.com/Anurag99778/Object-Detect.git
cd Object-Detect
# Setup Environment
Ensure you have Python (version 3.6 or higher) installed. Install required packages using requirements.txt:
Copy code
pip install -r requirements.txt
Download the pre-trained TensorFlow model (SSD MobileNet V2) from the TensorFlow Model Zoo and place it in the models/ directory.
Ensure MySQL server is installed and running. Create a database named OBJECT_DETECTION. Modify the database connection settings in database.py as needed.
Execute the main.py script to perform object detection and interact with the database.
Copy code
python main.pyThe processed video output will be saved in the specified output directory. Detections will be saved to the MySQL database.
Contributions are welcome! If you encounter any issues or have suggestions for improvement, please open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.