Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/techassi/hfu-imgcomp

Image processing and computer graphics SOSE 22
https://github.com/techassi/hfu-imgcomp

computer-vision image-processing numpy opencv python

Last synced: about 2 months ago
JSON representation

Image processing and computer graphics SOSE 22

Awesome Lists containing this project

README

        

# HFU ImgComp

This repository contains source code for all assignments from the lecture **Image processing and computer graphics**.
The source code for each assignment is split upp into separate folders with the naming scheme `assign`.

## Setup

To setup the work environment and start developing code run the following commands:

```shell
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```

The core dependencies are:

- OpenCV: `opencv-python`. A wrapper package for OpenCV python bindings. OpenCV is a library of programming functions
mainly aimed at real-time computer vision. ([PyPI](https://pypi.org/project/opencv-python/))
- Numpy: `numpy`. Package for multi-dimensional arrays and matrices and a large collection of math operations on these
data structures. ([PyPI](https://pypi.org/project/numpy/))
- Click: `click`. Click is a Python package for creating beautiful command line interfaces in a composable way with as
little code as necessary. ([PyPI](https://pypi.org/project/click/))
- Open3D: `open3d`. Open3D is a Python package written in C++ to easily work with 3D data.
([PyPI](https://pypi.org/project/open3d/))