All Projects → jedypod → debayer

jedypod / debayer

Licence: other
Debayer raw images automatically, with the option of outputting scene-linear aces exrs.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to debayer

ufolint
UFO source format linter
Stars: ✭ 23 (-11.54%)
Mutual labels:  commandline
import-cli-simple
This the meta package for Pacemaker Community, a Symfony based CLI application that provides import functionality for products, categories, attributes, and attribute-sets. The default format is CSV, adapters for XML are also available. The application can be declaratively extended by additional operations, which can be used to reassemble and exe…
Stars: ✭ 69 (+165.38%)
Mutual labels:  commandline
captcha-breaking-library
Neural network, contour analysis, bitmap vector subtraction CAPTCHA solving library and scripting language with perceptive color space segmentation
Stars: ✭ 76 (+192.31%)
Mutual labels:  colorspace
colour-notebooks
Colour - Jupyter Notebooks
Stars: ✭ 21 (-19.23%)
Mutual labels:  colorspace
DfmExtractor
Small command line utility which allows you to extract DFM, LFM and FRM forms from executable files compiled by Delphi, Lazarus and CodeTyphon.
Stars: ✭ 22 (-15.38%)
Mutual labels:  commandline
select-run
A CLI tool to interactively search & select one or many package.json npm scripts to run
Stars: ✭ 29 (+11.54%)
Mutual labels:  commandline
colour-nuke
Colour - Nuke
Stars: ✭ 145 (+457.69%)
Mutual labels:  colorspace
tiles
Commandline tool that makes building tilesets and rendering static tilemaps super easy!
Stars: ✭ 51 (+96.15%)
Mutual labels:  commandline
Commandline-Games-hacktoberfest
A repository to share command line games. An opportunity to start and learn about open source code contributions flow.
Stars: ✭ 16 (-38.46%)
Mutual labels:  commandline
cotp
Trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality.
Stars: ✭ 45 (+73.08%)
Mutual labels:  commandline
dcraw.js
Generated JavaScript executable code from dcraw.c
Stars: ✭ 14 (-46.15%)
Mutual labels:  dcraw
console-logging
Better, prettier commandline logging for Python--with colors! 👻
Stars: ✭ 111 (+326.92%)
Mutual labels:  commandline
vt100
💻 VT100 Terminal Package
Stars: ✭ 19 (-26.92%)
Mutual labels:  commandline
momoapi-python
MTN MoMo API Client Library for Python
Stars: ✭ 37 (+42.31%)
Mutual labels:  commandline
simplecli
The simplest way to parse cli arguments in golang
Stars: ✭ 15 (-42.31%)
Mutual labels:  commandline
scrift
New generation shell and scripting language for everyone.
Stars: ✭ 46 (+76.92%)
Mutual labels:  commandline
note-keeper
📓 A tiny bash tool for taking and organizing notes.
Stars: ✭ 58 (+123.08%)
Mutual labels:  commandline
Data-Scientist-In-Python
This repository contains notes and projects of Data scientist track from dataquest course work.
Stars: ✭ 23 (-11.54%)
Mutual labels:  commandline
CommandLineParser.Core
💻 A simple, light-weight and strongly typed Command Line Parser made in .NET Standard!
Stars: ✭ 32 (+23.08%)
Mutual labels:  commandline
prettyBenching
🦕 A small lib to make your Deno benchmarking progress and results look pretty
Stars: ✭ 23 (-11.54%)
Mutual labels:  commandline

Debayer

Debayer is a commandline tool to convert camera raw images into scene-linear exr.

Dependencies

The only required dependency is oiiotool. However other "debayer engines" are also supported.

  • OpenImageIO - oiiotool is used for converting debayered tif images to exr.
  • Debayer Engines
    • RawTherapee - Powerful raw development software used to decode raw images. High quality, good selection of debayer algorithms, and more advanced raw processing like chromatic aberration removal.
    • LibRaw - dcraw_emu commandline utility included with LibRaw. Optional alternative for debayer. Simple, fast and effective.
    • Darktable - Uses darktable-cli plus an xmp config to process.
    • vkdt - uses vkdt-cli to debayer. Pretty experimental still. Uses Vulkan for image processing. Stupidly fast. Pretty limited.

Configuration

You need to configure a few things in the debayer python file. At the top are some variables you need to customize. Described below are the important ones and what they do.

First you need to choose which debayer engine you will use. DEBAYER_ENGINES lists all possibilities. DEBAYER_ENGINE is where you set which debayer software will be used.

# Debayer engine options
DEBAYER_ENGINES = ['rt', 'art', 'dc', 'dcrcd', 'dt', 'vkdt', 'oiio'] 
# Debayer engine to use
DEBAYER_ENGINE = 'rt'

This configuration will use RawTherapee as the debayer engine.

IMPORTANT: If you are using RawTherapee 5.8 or lower, you need to install an output icc profile.

Next you need to set the paths to the binary executable files. oiiotool is required. You only need to specify paths for the debayer engine you will use.

# Binary executable locations
OIIO_BIN    = '/usr/bin/oiiotool'
RT_BIN      = '/usr/bin/rawtherapee-cli'
ART_BIN     = '/usr/bin/ART-cli'
DCRAW_BIN   = '/usr/bin/dcraw_emu'
DT_BIN      = '/usr/bin/darktable-cli'
VKDT_BIN    = '/opt/vkdt/vkdt/vkdt-cli'

You also need to specify a temp directory for debayer to use as a location for intermediate files (don't worry they are cleaned up automatically). It speeds things up if this is on a fast local drive.

CACHE_DIR = '/var/tmp/debayer'

You can set other options as well: THREADS = 2 - Number of simultaneous jobs (Useful if using a single-threaded debayer engine like dcraw).

EXR_COMPRESSION = 'dwaa:15' - Type of compression to use for output exr files.

DEFAULT_EXPOSURE = '4.0' - Default multiply value to get from raw linear to scene-linear.

RT_DEFAULT_PROFILE = '' - Path to the default RawTherapee pp3 preset to use. There is one included and set by default, but you can override this path if desired. There are similar variables for the other debayer engines that need config files as well.

Debayer Engine Configuration

Here is some more information about how to configure custom debayer settings for each of the debayer engines. I've included quite a bit of extra information here about the decisions I've made and why.

Usage

Using debayer is very simple if you are familiar with commandline utilities. In the simplest possible form, you could write

debayer rawfile.cr2

This will process the raw file into the directory you are currently in.

If you want to specify a custom directory you could do

debayer rawfile.cr2 -o /path/to/output_dir

You can also process an entire source directory recursively. For example say you have this source directory structure:

/media/footage/20211012
└── dng
    ├── M22-1558
    │   ├── M22-1558.000000.dng
    │   ├── M22-1558.000001.dng
    │   ├── M22-1558.000002.dng
    │   ├── M22-1558.000003.dng
    │   ├── M22-1558.000004.dng
    └── M22-1600
        ├── M22-1600_000000.dng
        ├── M22-1600_000001.dng
        ├── M22-1600_000002.dng
        ├── M22-1600_000003.dng
        └── M22-1600_000004.dng

Say you want to recursively process all raw files inside /media/footage/20211012/dng, and output the results, including subfolders, into /media/footage/20211012/exr. You could run

debayer /media/footage/20211012/dng -o /media/footage/20211012/exr

# or alternatively, you can use relative paths
cd /media/footage/20211012
debayer dng -o exr

Commandline Options

$ debayer -h
usage: debayer [-h] [-o OUTPUT] [-w] [-p PROFILE] [-en ENGINE] [-ca]
               [-r RESIZE] [-e EXPOSURE] [-j JOBS] [-f FILTER]
               input_paths [input_paths ...]

Debayer is a commandline tool to convert camera raw images into scene-linear
exr.

positional arguments:
  input_paths           Source(s) to process. Can be one or more images or
                        directories containing images.

optional arguments:
  -h, --help            show this help message and exit
  -o OUTPUT, --output OUTPUT
                        Output directory. If not specified, the current
                        directory will be used.
  -w, --overwrite       Overwrite existing output files.
  -p PROFILE, --profile PROFILE
                        Optional override to specify a custom profile to use.
                        If none, the default config file will be used. Could
                        be a pp3 file for rawtherapee, xmp for darktable, or
                        cfg for vkdt.
  -en ENGINE, --engine ENGINE
                        Debayer engine to use: If none, the DEBAYER_ENGINE
                        variable in will be used. one of: 'rt', 'art', 'dc',
                        'dcrcd', 'dt', 'vkdt', 'oiio'
  -ca, --aberration     Remove chromatic aberration (rawtherapee or ART only)
  -r RESIZE, --resize RESIZE
                        Apply a resize to the output image. Aspect ratio is
                        not preserved if both width and height are specified.
                        <width>x<height> Or preserve aspect ratio if w or h =
                        0: e.g. "1920x0" Can also be a percentage like
                        "50%"(For Magic Lantern 1x3 anamorphic) 1920x2340 ->
                        5760x2340 -> 2880x1170 (ML 1x3 2.35) - 1808x2300 ->
                        (unsqueeze) 5424x2300 -> (0.5) 2712x1150 Or 1280x2160
                        (1x3) -> 3840x2160 -> 2560x1440 -> 1920x1080
  -e EXPOSURE, --exposure EXPOSURE
                        Raw to scene-linear exposure adjustment. Default is
                        4.0
  -j JOBS, --jobs JOBS  Number of simultaneous jobs.
  -f FILTER, --filter FILTER
                        Include only files that match regex. Can be comma
                        separated list.

Exposure

One important parameter when debayering to scene-linear is how much to expose up with the -e parameter. Camera raw files are usually stored in an integer data format, which means the data is contained in a 0-1 container. How many bits of precision that data has within that container varies with the camera and sensor.

To get this 0-1 data range into sensible scene-linear data, we need to expose up the raw data so that an 18% grey diffuse reflector will live at a scene-linear value of around 0.18. How much we need to expose up will of course depend on how the image was exposed in the camera. This also determines how much headroom you will have in highlights. A default value of 4.0 is provided as a starting point, but you will probably want to customize this depending on your source raw images.

Custom Profile

You can specify a custom config file for your debayer engine with -p path/to/file. This is useful if you need to customize whitebalance or sharpening settings for example.

A default config is included in the repo for most debayer engines is used by default there is a -p switch enabled.

Debayer Algorithms

If you are curious about the different available debayer algorithms in open software I have put together a big set of comparison images in jpg and exr available at this mega.nz link.

The images are processed with dcraw_emu for AHD, AAHD, DHT and VNG, and with rawtherapee-cli for RCD, DCB and AMaZE. The test images are a selection of 256x128 pixel crops of interesting image regions for judging debayer quality. My subjective ranking would be

RCD > DCB > AMaZE > DHT > AAHD > AHD > VNG

If you're curious, I wrote a more in-depth discussion.

Installation

OpenImageIO

oiiotool can be installed with common pacakge managers on all platforms. See this documentation for help.

Rawtherapee

Packages are provided for all platforms. However if you are on linux, the appimage won't give you access to the rawtherapee-cli commandline utility. You will need to install or compile it (or extract the contents of the appimage with ./Rawtherapee-5.8.Appimage --appimage-extract ). Note if you are on Centos 7, the Appimage will not work because it was compiled with a newer version of GLIBC. There is however a copr for many fedora and rhel distros including el7 here.

IMPORTANT: For Rawtherapee 5.8 and below, you need to install a custom icc output profile in order to work around a posterization bug.

LibRaw

LibRaw provides packages for Windows and Mac, and for Linux it is easy to compile with minimal dependencies. I would recommend compiling from master to get the latest raw formats like Canon CR3.

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].