https://github.com/robertoprevato/imagefun
Image manipulation exercises with scikit-image
https://github.com/robertoprevato/imagefun
Last synced: 6 months ago
JSON representation
Image manipulation exercises with scikit-image
- Host: GitHub
- URL: https://github.com/robertoprevato/imagefun
- Owner: RobertoPrevato
- License: mit
- Created: 2021-04-07T17:46:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-11T14:50:43.000Z (over 4 years ago)
- Last Synced: 2024-11-24T20:46:32.395Z (11 months ago)
- Language: Jupyter Notebook
- Size: 6.49 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# https://www.pawelrog.pl/aipoc
## Image segmentation
https://thecleverprogrammer.com/2020/09/01/image-segmentation-with-python/## How to run the Jupyter notebook
Install Python (Python 3.9 has been used to prepare this notebook), then:
1. create a virtual environment
```bash
python -m venv venv
```2. activate the virtual environment
```bash
# Windows:
venv\Scripts\activate# Linux:
source venv/bin/activate
```3. install dependencies
```bash
pip install -r requirements.txt
```4. run Jupyter notebook
```bash
jupyter notebook
```5. run the cells
6. have fun!