All Projects → cadik → TMS

cadik / TMS

Licence: GPL-2.0 license
Tone Mapping Studio

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects
python
139335 projects - #7 most used programming language
julia
2034 projects
shell
77523 projects

Projects that are alternatives of or similar to TMS

ies
Convert the IES file into a IES texture for IES lightning
Stars: ✭ 34 (-2.86%)
Mutual labels:  hdr
oculante
A minimalistic crossplatform image viewer written in rust
Stars: ✭ 169 (+382.86%)
Mutual labels:  hdr
ColorVectorSpace.jl
Treat colors as if they are n-vectors for the purposes of arithmetic
Stars: ✭ 28 (-20%)
Mutual labels:  grayscale
grayscale
macOS status bar app for easily toggling the grayscale display filter
Stars: ✭ 20 (-42.86%)
Mutual labels:  grayscale
Adria-DX11
Graphics engine written in C++ using DirectX11
Stars: ✭ 87 (+148.57%)
Mutual labels:  tone-mapping
gpu-camera-sample
High quality Image Processing software on GPU (Windows, Linux, ARM) for real time machine vision camera applications. Performance benchmarks and Glass-to-Glass time measurements. MIPI CSI cameras support. RAW2RGB processing on GPU.
Stars: ✭ 200 (+471.43%)
Mutual labels:  hdr
Meshroom
3D Reconstruction Software
Stars: ✭ 7,254 (+20625.71%)
Mutual labels:  hdr-imaging
color-api
A proposal and draft spec for a Color object for the Web Platform, loosely influenced by our Color.js work. Heavily WIP, if you landed here randomly, please move along.
Stars: ✭ 102 (+191.43%)
Mutual labels:  hdr
Image-Processing-CLI-in-Rust
CLI for image processing with histograms, binary treshold and other functions
Stars: ✭ 25 (-28.57%)
Mutual labels:  grayscale
GITechDemo
Global illumination technical demo - a continuation of the Synesthesia3D (ex-LibRenderer) graphics engine used in https://github.com/iftodebogdan/ShaderEditor
Stars: ✭ 45 (+28.57%)
Mutual labels:  hdr
halfgone
🔳 Black and white digital halftoning
Stars: ✭ 43 (+22.86%)
Mutual labels:  grayscale
glsl-tone-map
A collection of tone mapping functions available both as ES modules strings and as GLSL files for use with glslify.
Stars: ✭ 116 (+231.43%)
Mutual labels:  tone-mapping
DeepHDRVideo
HDR Video Reconstruction: A Coarse-to-fine Network and A Real-world Benchmark Dataset (ICCV 2021)
Stars: ✭ 63 (+80%)
Mutual labels:  hdr
staxrip
StaxRip is a video encoding app for Windows with a unrivaled feature set and usability.
Stars: ✭ 132 (+277.14%)
Mutual labels:  hdr
Real-time-Image-Smoothing-via-Iterative-Least-Squares
This is the released code for the paper Real-time Image Smoothing via Iterative Least Squares accepted to ACM Transactions on Graphics
Stars: ✭ 60 (+71.43%)
Mutual labels:  tone-mapping
Adria-DX12
Graphics engine written in C++/DirectX12
Stars: ✭ 18 (-48.57%)
Mutual labels:  tone-mapping
hdr10plus tool
CLI utility to work with HDR10+ in HEVC files.
Stars: ✭ 173 (+394.29%)
Mutual labels:  hdr
singleLDR2HDR
Fake HDR Effect. Single Image HDR. HDR Filter.
Stars: ✭ 40 (+14.29%)
Mutual labels:  hdr
moonlight hdr launcher
Launch anything in HDR mode using Moonlight
Stars: ✭ 48 (+37.14%)
Mutual labels:  hdr
metal camera
iOS metal camera with GPU shaders.
Stars: ✭ 68 (+94.29%)
Mutual labels:  grayscale

Tone Mapping Studio (TMS)

2004 - 2022, Martin Cadik ([email protected], http://cadik.posvete.cz/)

developers: Ondrej Hajdok, Martin Cadik, Michal Augustyn, Ondrej Fialka, Antonin Lejsek, Petr Bilek, Ondrej Pecina, Pavel Fryz, Martin Molek, Vladimir Vlkovic, Jan Brida, Petr Pospisil, Tomas Chlubna, Filip Brezna, Tomas Hudziec, Vaclav Chvila, Jan Kohut, Jan Jedlicka, Michal Vlnas, Matej Valek, Lucie Smiskova, David Chocholaty

About

Tone Mapping Studio is a plugin-based framework for image processing operations, in particular HDR tone mapping and color-to-grayscale conversions.

If you use TMS for your research work, please cite at least one of the following papers:

@article{cadik08evaluation,
  title =      "Evaluation of HDR Tone Mapping Methods Using Essential Perceptual Attributes",
  author =     "Martin {\v{C}}ad\'{i}k and Michael Wimmer and Laszlo Neumann and Alessandro Artusi",
  year =       "2008",
  volume =     "32",
  issue =      "3",
  pages =      "330-349",
  issn =       "0097-8493",
  journal =    "Computers \& Graphics",
  keywords =   "tone mapping operators, tone mapping evaluation, image attributes, high dynamic range",
  URL =        "http://cadik.posvete.cz/tmo/cadik08cag.pdf",
}

@article{ cadik08perceptual,
  author    = {Martin {\v{C}}ad\'{i}k},
  title     = {Perceptual Evaluation of Color-to-Grayscale Image Conversions},
  journal   = {Comput. Graph. Forum},
  volume    = {27},
  number    = {7},
  year      = {2008},
  pages     = {1745-1754},
}

@PhdThesis{cadik08phd,
 author = "Martin {\v{C}}ad\'{i}k",
 title  = "Perceptually Based Image Quality Assessment and Image Transformations",
 school = "Department of Computer Science and Engineering, Faculty of Electrical Engineering, Czech Technical University in Prague",
 type   = "Ph.D. Thesis",
 year   = "2008",
 month  = "January",
 url    = "http://cadik.posvete.cz/diss",
}

The TMS package consists of

  • tmolib - a library for loading, writing and processing of LDR and HDR files in various formats
  • tmocmd - a command line tool, which loads an image, runs a specific plugin, and writes the final output
  • tmogui - an application, which uses the same plugins as tmocmd, to enable visual inspection of the results, interactive setting of parameters, and other operations
  • TMOYourOperatorName/TMOYourOperatorNameLinux - templates for your own plugins
  • TMOWard94 - an example plugin implementing a simple tone mapping method [Ward 1994]
  • TMOLinux/TMOW32 - linux/Windows specific plugin code

Compiling

To compile run cmake and make as follows:

mkdir build; cd build
cmake .. 
make 

Use cmake version 2.4.8 and higher.

You need at least these libraries:

and for GUI:

On Debian/Ubuntu these are provided by packages:

  • libopenexr-dev
  • libtiff4-dev
  • libjpeg-dev
  • qt5-default
  • qt5-doc
  • qttools5-dev-tools
  • libfftw3-3
  • libboost-all-dev
  • libopencv-dev

On Fedora, you should install the following packages as follows:

sudo dnf install OpenEXR OpenEXR-libs OpenEXR-devel \
        libtiff libtiff-devel \
        libjpeg-turbo libjpeg-turbo-devel libjpeg-turbo-utils \
        fftw fftw-devel fftw-libs \
        boost boost-devel \
        CGAL-devel \
        opencv opencv-devel \
        nlopt nlopt-devel \
        qt5-qtbase-devel

Install

After compiling run:

make install

If you want to specify directory to install, you have to run cmake like this:

cmake -D CMAKE_INSTALL_PREFIX='/where/to/install/tms/' ..
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].