Metadata-Version: 2.4
Name: cvlabkit
Version: 1.0.0
Summary: Image processing lab experiments - list and view code for 10 CV experiments
License: MIT
Project-URL: Homepage, https://pypi.org/project/cvlabkit/
Keywords: image processing,opencv,computer vision,lab,experiments
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Image Processing
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# cvlabkit

A Python package for image processing lab experiments.

**Install:**
```bash
pip install cvlabkit
```

**Use anywhere (Colab, Jupyter, local Python):**
```python
import imageprocessing as ip

ip.list()    # show all experiments
ip.exp1()    # Image Processing
ip.exp2()    # Edge Detection
ip.exp3()    # Camera Calibration
ip.exp4()    # Histogram Equalization
ip.exp5()    # Skin Detection
ip.exp6()    # Warping
ip.exp7()    # Motion Tracking
ip.exp8()    # YOLO
ip.exp9()    # Stereo Vision
ip.exp10()   # AR Feature Matching
```

## Experiments

| # | Title |
|---|-------|
| 1 | Image Processing |
| 2 | Edge Detection |
| 3 | Camera Calibration |
| 4 | Histogram Equalization |
| 5 | Skin Detection |
| 6 | Warping |
| 7 | Motion Tracking |
| 8 | YOLO |
| 9 | Stereo Vision |
| 10 | AR Feature Matching |
