All Projects → lnstadrum → beatmup

lnstadrum / beatmup

Licence: GPL-3.0 license
Beatmup: image and signal processing library

Programming Languages

C++
36643 projects - #6 most used programming language
java
68154 projects - #9 most used programming language
GLSL
2045 projects
python
139335 projects - #7 most used programming language
CMake
9771 projects
c
50402 projects - #5 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to beatmup

SpleeterRT
Real time monaural source separation base on fully convolutional neural network operates on Time-frequency domain.
Stars: ✭ 111 (-33.93%)
Mutual labels:  signal-processing
PetIBM
PetIBM - toolbox and applications of the immersed-boundary method on distributed-memory architectures
Stars: ✭ 80 (-52.38%)
Mutual labels:  gpu-computing
QuakeMigrate
A Python package for automatic earthquake detection and location using waveform migration and stacking.
Stars: ✭ 101 (-39.88%)
Mutual labels:  signal-processing
computer-vision-notebooks
👁️ An authorial set of fundamental Python recipes on Computer Vision and Digital Image Processing.
Stars: ✭ 89 (-47.02%)
Mutual labels:  signal-processing
CARE
CHAI and RAJA provide an excellent base on which to build portable codes. CARE expands that functionality, adding new features such as loop fusion capability and a portable interface for many numerical algorithms. It provides all the basics for anyone wanting to write portable code.
Stars: ✭ 22 (-86.9%)
Mutual labels:  gpu-computing
gardenia
GARDENIA: Graph Analytics Repository for Designing Efficient Next-generation Accelerators
Stars: ✭ 22 (-86.9%)
Mutual labels:  gpu-computing
DDCToolbox
Create and edit DDC headset correction files
Stars: ✭ 70 (-58.33%)
Mutual labels:  signal-processing
computer-vision
Notebook series on interesting topics in computer vision
Stars: ✭ 17 (-89.88%)
Mutual labels:  signal-processing
FScape
A standalone audio rendering software for time domain and spectral signal processing.
Stars: ✭ 61 (-63.69%)
Mutual labels:  signal-processing
msda
Library for multi-dimensional, multi-sensor, uni/multivariate time series data analysis, unsupervised feature selection, unsupervised deep anomaly detection, and prototype of explainable AI for anomaly detector
Stars: ✭ 80 (-52.38%)
Mutual labels:  signal-processing
spafe
🔉 spafe: Simplified Python Audio Features Extraction
Stars: ✭ 310 (+84.52%)
Mutual labels:  signal-processing
Fourier-and-Images
Fourier and Images
Stars: ✭ 81 (-51.79%)
Mutual labels:  signal-processing
Shifter
Pitch shifter using WSOLA and resampling implemented by Python3
Stars: ✭ 22 (-86.9%)
Mutual labels:  signal-processing
FastPCC
Compute interstation correlations of seismic ambient noise, including fast implementations of the standard, 1-bit and phase cross-correlations.
Stars: ✭ 24 (-85.71%)
Mutual labels:  signal-processing
swift-android-kotlin
Kotlin/Swift integration example
Stars: ✭ 69 (-58.93%)
Mutual labels:  opengl-es
bakk
🎓 "Digital audio-watermarking for analog transmission channels", 2014, Bachelor Thesis, TU Wien
Stars: ✭ 16 (-90.48%)
Mutual labels:  signal-processing
adaptive-filters
My collection of implementations of adaptive filters.
Stars: ✭ 32 (-80.95%)
Mutual labels:  signal-processing
euler2d cudaFortran
2nd order Godunov solver for 2d Euler equations written in CUDA Fortran and stdpar (standard paralelism)
Stars: ✭ 24 (-85.71%)
Mutual labels:  gpu-computing
learn-gpgpu
Algorithms implemented in CUDA + resources about GPGPU
Stars: ✭ 37 (-77.98%)
Mutual labels:  gpu-computing
fast-tsetlin-machine-in-cuda-with-imdb-demo
A CUDA implementation of the Tsetlin Machine based on bitwise operators
Stars: ✭ 26 (-84.52%)
Mutual labels:  gpu-computing

android linux windows Python packages

Overview

Beatmup is an extensible asynchronous image and signal processing framework.

Beatmup is for image processing, mainly.

  • It enables low-level user-defined processing tasks execution

    • in parallel and using hardware acceleration for the maximum speed,
    • asynchronously, in an application-friendly fashion.
  • It implements basic building blocks and predefined processing operations:

    • Image resampling and geometric operations
    • Basic color filtering
    • Flood fill and contour extraction
    • Realtime rendering

Beatmup runs quite everywhere.

  • Used in linux, Windows and Android
  • Written in C++11, it has Java and Python bindings
  • Prebuilt Python packages are available for x64 desktop Windows and Ubuntu-based linux distributions
  • Few to no dependencies: Beatmup is extremely easy to build for a different platform
    • git, CMake and a C++ compiler is all you need
    • Beatmup compiles with gcc, clang and msvc

Beatmup speeds up processing by using GPU regardless its vendor, price and release year.

  • It runs on
    • desktop GPUs from mainstream vendors,
    • integrated desktop GPUs,
    • Android GPUs,
    • Raspberry Pi GPU (all models including Pi Zero W),
    • NVIDIA Jetson Nano,
    • ...
  • It uses the GPU for
    • x2, neural network-based image upscaling technique,
    • running inference of small user-defined neural nets,
    • applying user-defined GLSL shaders to process images,
    • realtime camera image processing in Android,
    • scene rendering and predefined image processing tasks.

Highlights

x2: a neural net-based image upscaler

Beatmup is arguably the easiest way to get a fast hardware-accelerated neural network-based image superresolution running on any decent GPU. It does not provide a state-of-the-art PSNR score, but can run at a hundred of images per second on a desktop machine.

More details on the neural network design and the inference implementation: Inferring a super-resolution neural network on Raspberry Pi GPU

Update in 2.1 release: the fine-tuned version of the model (trained with multiple degradation kernels) achieves now 32.64 dB on DIV2K validation set compared to the initial score of 32.57 dB.

Available resources

Docs

  • C++ documentation is available here. This is the most extensive documentation, it also contains additional explanations that do not relate to a specific programming language:
  • Java package API documentation is here.
  • Python documentation is here.

C++

There is a number of test apps showcasing the use of Beatmup with additional explanations in apps folder. The code is in C++, but can be universally helpful. Few examples:

  • apps/shaderer processes images with a custom GLSL fragment shader read from the standard input.
  • apps/x2 is a test app for the x2 neural net.
  • apps/classify is a dog image classifier, a variant of ResNeXt trained on a subset of ImageNet containing 120 classes of dogs and cats images. The inference is implemented with OpenGL shaders. Top-1 validation accuracy achieved on Raspberry Pi Zero W is 72.08%. Classifying a 385*385 image takes ~595 ms there.

Python

python/examples folder contains detailed examples of scripts using Beatmup in Python.

Unit tests in Python are available in python/tests/test.py and python/tests/test_nnets.py.

Java (Android)

An Android test app is available in android/app folder. It consists of independent examples showing how to use Beatmup in Android.

Quick start: compiling Beatmup

To get things running, make sure you have git and CMake installed, then pick one of the following copy-paste recipes.

Linux

Building X2 app upscaling an image using a neural net inferred with OpenGL:

git clone https://github.com/lnstadrum/beatmup.git
cd beatmup
git submodule update --init --recursive
mkdir -p build && cd build
cmake -DUSE_GLX=ON ..
make X2
  • Try to use -DUSE_OPENGL=ON instead -DUSE_GLX=ON starting from a clean build folder if you run into trouble.

  • On Raspberry Pi prior to series 4 use the EGL backend with following CMake command:

    cmake -DUSE_EGL=ON -DUSE_BRCM_LIBS=ON -DGLES_VERSION=20 ..

More details on Raspberry Pi setup here.

  • On Raspberry Pi 4 rather use the following CMake command:

    cmake -DUSE_EGL_DRM=ON -DGLES_VERSION=20 ..

More details on Raspberry Pi 4 setup here.

Once the app is built, you can feed it with an image of your choice and get the upscaled result as follows:

./X2 <your-image>.bmp x2-result.bmp

Windows

To build the X2 app in Windows you may install Visual Studio and generate the VS solution as follows:

git clone https://github.com/lnstadrum/beatmup.git
cd beatmup
git submodule update --init --recursive
mkdir build && cd build
cmake -DUSE_OPENGL=ON ..

Then open the .sln solution file in Visual Studio and build the executable.

Android

There is Android project containing a library and a test app modules (lib and app). To build them install Android Studio and Android NDK bundle, clone the repository and open the project situated in android folder in Android studio.

You can build an apk in a docker container as well. Having docker installed, you can run the following script to build beatmupApp.apk installation package which you may then copy to your Android phone and open it there to install the test app:

git clone https://github.com/lnstadrum/beatmup.git
cd beatmup
git submodule update --init --recursive
docker build -f dockerfiles/android.Dockerfile -t beatmup-android .
docker run -v $(pwd):/opt/android-build beatmup-android

Quicker start with Python

Windows

Prebuilt python packages are available in 64-bit Windows for Python versions from 3.6 to 3.11:

python -m pip install --upgrade pip
python -m pip install beatmup

Ubuntu-based linux

Prebuilt packages for x64 desktop Ubuntu-based linux distributions are available for downloading on the releases page.

Compiling Python package

If there is no prebuilt package available for your platform/OS, you can easily build a Python wheel installable with pip on your own.

First, get the code and try to compile an app as explained above. Then in the repository root folder run

cd build
make beatmup
cd ../python
python3 setup.py bdist_wheel clean

The installation package is now available in python/dist folder. You can install it and make sure it works:

python3 -m pip install --no-index --find-links=dist beatmup
python3 -c "import beatmup; beatmup.say_hi()"

Licence and contributions

The project is licensed under the GNU GPL v3 licence.

The contributions are governed by the Contribution Licence Agreement (CLA). In short, under this Agreement you remain the copyright owner of your contribution, but you allow us to use and distribute your contribution under the terms of a possibly different licence.

If you want to contribute:

  • make sure you own the copyright of your contribution,
  • raise a pull request,
  • send a signed CLA on [email protected].

Otherwise:

  • raise an issue if you have a question or a feature request,
  • contact us by email.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].