Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/techassi/hfu-imgcomp
- Owner: Techassi
- Created: 2022-03-22T11:49:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-19T21:11:54.000Z (over 2 years ago)
- Last Synced: 2024-05-01T17:42:42.177Z (8 months ago)
- Topics: computer-vision, image-processing, numpy, opencv, python
- Language: Python
- Homepage:
- Size: 21 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/))