Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ktaletsk/nccv
Short course on computer vision and image processing using Numba+CUDA+OpenCV
https://github.com/ktaletsk/nccv
computer-vision cuda jupyter-notebook numba
Last synced: 4 days ago
JSON representation
Short course on computer vision and image processing using Numba+CUDA+OpenCV
- Host: GitHub
- URL: https://github.com/ktaletsk/nccv
- Owner: ktaletsk
- Created: 2018-04-16T00:33:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-15T00:23:34.000Z (over 5 years ago)
- Last Synced: 2024-11-15T15:42:37.495Z (about 2 months ago)
- Topics: computer-vision, cuda, jupyter-notebook, numba
- Language: Jupyter Notebook
- Homepage:
- Size: 7.81 KB
- Stars: 22
- Watchers: 3
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Short course on computer vision and image processing
We will be looking at different ways to process images using Python in Jupyter Notebooks.
**Lesson 1.** We start with acquiring images from webcam using OpenCV and efficiently displaying them inside Jupyter Notebook using Pillow library.
🔗 Reference:
https://medium.com/@kostal91/displaying-real-time-webcam-stream-in-ipython-at-relatively-high-framerate-8e67428ac522📓 Notebook:
🛠Dependencies installation:
```
conda install jupyter
pip install opencv-python
```**Lesson 2.** We introduce GPU kernels and CUDA (using Numba) to achieve fast image processing. We introduce convolution operation and convolution kernels to achieve blurring or edge detection. We learn how to apply them using GPU kernels. Finally, we introduce the max pooling layer
🔗 Reference: *Upcoming*
📓 Notebook:
🛠Dependencies installation:
```
conda install numba
conda install cudatoolkit
```**Lesson 3 (in the works).** We connect the layers to build our first neural network.
Next lessons are TBD and will dive deeper in different aspects of image processing and computer vision
This course uses Python 3 and requires CUDA capable device (NVIDIA GPU) to run kernels (which may change in the future if I rewrite kernels to use AMD cards and/or CPUs).