An open API service indexing awesome lists of open source software.

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

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!