Skip to content

ImageProcessing-ElectronicPublications/stbibalance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stbibalance

Balance filter based of Gauss blur. Used:

Balance is a thin filter (unlike others that use a thick difference between the original image and its blurred version) that uses the difference between a single and double radius blurred version of the original image (single and double sigma). This difference is used not directly, but by applying an overlay four times, with the colors inverted.

This filter was first applied in STEX (2024) in a single-component version (Y, the values of the color components were aligned in accordance with the brightness values before and after the filter).

Here this filter is implemented in a full-color version.

Usage

./stbibalance [-h] [-s sigma] [-m mixed] input-file output-file

-s sigma The sigma of the gauss normal distribution (number >= 0.5). Larger values result in a stronger blur.

-m mixed The mixed coefficient.

-h display this help and exit.

You can use either sigma to specify the strengh of the blur.

The performance is independent of the blur strengh (sigma). This tool is an implementation of the paper "Recursive implementaion of the Gaussian filter" by Ian T. Young and Lucas J. van Vliet.

stb_image and stb_image_write by Sean Barrett and others is used to read and write images.

Installation

  • Clone the repo or download the source git clone --recurse-submodules https://github.com/ImageProcessing-ElectronicPublications/stbibalance
  • Execute make
  • Done. Either use the stbibalance executable directly or copy it somewhere in your PATH.

Links