Update README.md
Browse files
README.md
CHANGED
@@ -1,59 +1,37 @@
|
|
1 |
---
|
|
|
2 |
tags:
|
3 |
- computer-vision
|
4 |
-
- opencv
|
5 |
- numpy
|
6 |
- matplotlib
|
7 |
-
-
|
8 |
-
- beginner
|
9 |
-
license: mit
|
10 |
language: en
|
11 |
---
|
12 |
|
13 |
# Computer Vision Learning Notebooks
|
14 |
|
15 |
## Summary
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
The notebooks progress from working with raw arrays (NumPy) to real images (PIL/OpenCV) and finally to drawing shapes, annotations, and simple overlays.
|
20 |
|
21 |
---
|
22 |
|
23 |
-
## Notebooks
|
24 |
-
- **Notebook 1** →
|
25 |
-
- **Notebook 2** →
|
26 |
-
- **Notebook 3** →
|
27 |
-
- **Notebook 4** → Drawing shapes, lines, and text on blank canvases and real images (OpenCV).
|
28 |
|
29 |
---
|
30 |
|
31 |
-
##
|
32 |
-
|
33 |
-
- Students beginning their journey in **Computer Vision**.
|
34 |
-
- Non-technical learners who want to **visualize how machines interpret images**.
|
35 |
-
- Developers looking for a clear, hands-on foundation before moving to advanced CV or deep learning topics.
|
36 |
|
37 |
---
|
38 |
|
39 |
-
##
|
40 |
-
-
|
41 |
-
-
|
42 |
-
-
|
43 |
-
- Each notebook contains concise theory, short code cells with comments, and visuals.
|
44 |
|
45 |
---
|
46 |
-
|
47 |
-
## How to Use
|
48 |
-
1. Open the notebooks in order (1 → 4) for the intended learning progression.
|
49 |
-
2. Run each cell step-by-step and observe results.
|
50 |
-
3. Tweak parameters (e.g., rectangle coordinates, circle radius, colors) to experiment and learn.
|
51 |
-
4. Use copies of images (`.copy()`) when you want to preserve originals during edits.
|
52 |
-
|
53 |
-
---
|
54 |
-
|
55 |
-
## Requirements (suggested)
|
56 |
-
Install the basic packages used across the notebooks:
|
57 |
-
|
58 |
-
```bash
|
59 |
-
pip install numpy matplotlib pillow opencv-python
|
|
|
1 |
---
|
2 |
+
license: mit
|
3 |
tags:
|
4 |
- computer-vision
|
|
|
5 |
- numpy
|
6 |
- matplotlib
|
7 |
+
- opencv
|
8 |
+
- beginner-friendly
|
|
|
9 |
language: en
|
10 |
---
|
11 |
|
12 |
# Computer Vision Learning Notebooks
|
13 |
|
14 |
## Summary
|
15 |
+
A beginner-friendly collection of notebooks that introduce the **fundamentals of Computer Vision (CV)**.
|
16 |
+
Designed for both **technical and non-technical learners**, these notebooks focus on simple explanations, visual examples, and hands-on practice.
|
|
|
|
|
17 |
|
18 |
---
|
19 |
|
20 |
+
## Current Notebooks
|
21 |
+
- **Notebook 1** → Images as arrays with **NumPy** (understanding pixels).
|
22 |
+
- **Notebook 2** → Working with real images (loading, resizing, color channels).
|
23 |
+
- **Notebook 3** → Basic image transformations and manipulations.
|
|
|
24 |
|
25 |
---
|
26 |
|
27 |
+
## Next Steps (In Progress)
|
28 |
+
|
|
|
|
|
|
|
29 |
|
30 |
---
|
31 |
|
32 |
+
## Who Is This For?
|
33 |
+
- Students starting their CV journey.
|
34 |
+
- Non-technical learners curious about how machines see images.
|
35 |
+
- Developers looking for a smooth step before advanced CV/Deep Learning.
|
|
|
36 |
|
37 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|