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

https://github.com/woile/darkroom

Collection of scripts I use to enhace photographies
https://github.com/woile/darkroom

gimp photography python

Last synced: about 1 year ago
JSON representation

Collection of scripts I use to enhace photographies

Awesome Lists containing this project

README

          

# @woile's darkroom

> Collection of scripts I use to enhace photographies.

## Pre-requisites

OS: `Debian GNU/Linux 9 (stretch) 64-bit` (It might work on other linux distros)

Gimp version: `2.8`

## Packages

`sudo apt install gimp gimp-plugin-registry`

## Installation

`./install` or `sudo ./install` if required

## Commands

| command | description |
|---------|-------------|
| `darkroom init` | creates folders and copies raw photos to `raw_backup` folder |
| `darkroom auto_levels ""` | Auto White Balance / Contrast Stretch / HSV Stretch |
| `darkroom color_enhance ""` | Improves color, not always works as expected |
| `darkroom natgeo ""` | Applies national geographic effect |

Note: It is required to wrap the patter between double quotes, unfortunately this is the way
gimp receives the images.

## Examples

| command | example |
|---------|:---------:|
| original | ![gopr3768.jpg](./docs/gopr3768.jpg) |
| `darkroom auto_levels "*.JPG"` | ![gopr3768.jpg](./docs/gopr3768_al.jpg) |
| `darkroom auto_levels "*.jpg darkroom color_enhance "*_al.JPG"` | ![gopr3768.jpg](./docs/gopr3768_al_ce.jpg) |
| `darkroom auto_levels "*.jpg" && darkroom natgeo "*_al.JPG"` | ![gopr3768_al_ng.jpg](./docs/gopr3768_al_ng.jpg) |
| `darkroom auto_levels "*.jpg" && darkroom color_enhance "*_al.jpg" && darkroom natgeo "*_al_ce*.jpg"` | ![gopr3768_al_ce_ng.jpg](./docs/gopr3768_al_ce_ng.jpg) |

## CONTRIBUTE

Please feel free to create PR with new scripts and effect, and suggesting improvements to my current
flow.

Thank you!