This workspace is set up for learning and experimenting with OpenCV.
The virtual environment is already configured with:
- OpenCV (opencv-python)
- NumPy
- Matplotlib
source venv/bin/activateopencv-learning/
├── projects/
│   ├── 01-basics/          # Basic OpenCV operations
│   ├── 02-image-processing/ # Image manipulation and filters
│   └── 03-video-capture/    # Video and webcam operations
├── data/
│   ├── images/             # Sample images
│   └── videos/             # Sample videos
└── venv/                   # Virtual environment
- Activate the virtual environment: source venv/bin/activate
- Start with the basics in projects/01-basics/
- Run Python files: python filename.py