Ansel 0.0
A darktable fork - bloat + design vision
Loading...
Searching...
No Matches
colormapping.c File Reference
#include "bauhaus/bauhaus.h"
#include "common/bilateral.h"
#include "common/bilateralcl.h"
#include "common/colorspaces.h"
#include "common/imagebuf.h"
#include "common/opencl.h"
#include "common/points.h"
#include "control/control.h"
#include "develop/develop.h"
#include "develop/imageop.h"
#include "develop/imageop_math.h"
#include "develop/imageop_gui.h"
#include "develop/tiling.h"
#include "dtgtk/drawingarea.h"
#include "dtgtk/resetlabel.h"
#include "gui/gtk.h"
#include "iop/iop_api.h"
#include <gtk/gtk.h>
#include <inttypes.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
+ Include dependency graph for colormapping.c:

Data Structures

struct  dt_iop_colormapping_flowback_t
 
struct  dt_iop_colormapping_params_t
 
struct  dt_iop_colormapping_gui_data_t
 
struct  dt_iop_colormapping_global_data_t
 

Macros

#define HISTN   (1 << 11)
 
#define MAXN   5
 

Typedefs

typedef float float2[2]
 
typedef enum dt_iop_colormapping_flags_t dt_iop_colormapping_flags_t
 
typedef struct dt_iop_colormapping_flowback_t dt_iop_colormapping_flowback_t
 
typedef struct dt_iop_colormapping_params_t dt_iop_colormapping_params_t
 
typedef struct dt_iop_colormapping_params_t dt_iop_colormapping_data_t
 
typedef struct dt_iop_colormapping_gui_data_t dt_iop_colormapping_gui_data_t
 
typedef struct dt_iop_colormapping_global_data_t dt_iop_colormapping_global_data_t
 

Enumerations

enum  dt_iop_colormapping_flags_t {
  NEUTRAL = 0 ,
  HAS_SOURCE = 1 << 0 ,
  HAS_TARGET = 1 << 1 ,
  HAS_SOURCE_TARGET = HAS_SOURCE | HAS_TARGET ,
  ACQUIRE = 1 << 2 ,
  GET_SOURCE = 1 << 3 ,
  GET_TARGET = 1 << 4
}
 

Functions

const char * name ()
 
const char ** description (struct dt_iop_module_t *self)
 
int default_group ()
 
int flags ()
 
int default_colorspace (dt_iop_module_t *self, dt_dev_pixelpipe_t *pipe, dt_dev_pixelpipe_iop_t *piece)
 
static void capture_histogram (const float *col, const int width, const int height, int *hist)
 
static void invert_histogram (const int *hist, float *inv_hist)
 
static void get_cluster_mapping (const int n, float2 *mi, const float *wi, float2 *mo, const float *wo, const float dominance, int *mapio)
 
static void get_clusters (const float *col, const int n, float2 *mean, float *weight)
 
static int get_cluster (const float *col, const int n, float2 *mean)
 
static void kmeans (const float *col, const int width, const int height, const int n, float2 *mean_out, float2 *var_out, float *weight_out)
 
void process (struct dt_iop_module_t *self, dt_dev_pixelpipe_iop_t *piece, const void *const ivoid, void *const ovoid, const dt_iop_roi_t *const roi_in, const dt_iop_roi_t *const roi_out)
 
void tiling_callback (struct dt_iop_module_t *self, struct dt_dev_pixelpipe_iop_t *piece, const dt_iop_roi_t *roi_in, const dt_iop_roi_t *roi_out, struct dt_develop_tiling_t *tiling)
 
void commit_params (struct dt_iop_module_t *self, dt_iop_params_t *p1, dt_dev_pixelpipe_t *pipe, dt_dev_pixelpipe_iop_t *piece)
 
void gui_changed (dt_iop_module_t *self, GtkWidget *w, void *previous)
 
static void acquire_source_button_pressed (GtkButton *button, dt_iop_module_t *self)
 
static void acquire_target_button_pressed (GtkButton *button, dt_iop_module_t *self)
 
void init_pipe (struct dt_iop_module_t *self, dt_dev_pixelpipe_t *pipe, dt_dev_pixelpipe_iop_t *piece)
 
void cleanup_pipe (struct dt_iop_module_t *self, dt_dev_pixelpipe_t *pipe, dt_dev_pixelpipe_iop_t *piece)
 
void init_global (dt_iop_module_so_t *module)
 
void cleanup_global (dt_iop_module_so_t *module)
 
void reload_defaults (dt_iop_module_t *module)
 
static gboolean cluster_preview_draw (GtkWidget *widget, cairo_t *crf, dt_iop_module_t *self)
 
static void process_clusters (gpointer instance, gpointer user_data)
 
void gui_init (struct dt_iop_module_t *self)
 
void gui_cleanup (struct dt_iop_module_t *self)
 

Macro Definition Documentation

◆ HISTN

#define HISTN   (1 << 11)

color transfer somewhat based on the glorious paper ‘color transfer between images’ by erik reinhard, michael ashikhmin, bruce gooch, and peter shirley, 2001. chosen because it officially cites the playboy.

workflow:

  • open the target image, press acquire button
  • right click store as preset
  • open image you want to transfer the color to
  • right click and apply the preset

◆ MAXN

#define MAXN   5

Typedef Documentation

◆ dt_iop_colormapping_data_t

and pixelpipe data is just the same

◆ dt_iop_colormapping_flags_t

◆ dt_iop_colormapping_flowback_t

◆ dt_iop_colormapping_global_data_t

◆ dt_iop_colormapping_gui_data_t

◆ dt_iop_colormapping_params_t

◆ float2

typedef float float2[2]

Enumeration Type Documentation

◆ dt_iop_colormapping_flags_t

Enumerator
NEUTRAL 
HAS_SOURCE 
HAS_TARGET 
HAS_SOURCE_TARGET 
ACQUIRE 
GET_SOURCE 
GET_TARGET 

Function Documentation

◆ acquire_source_button_pressed()

static void acquire_source_button_pressed ( GtkButton *  button,
dt_iop_module_t self 
)
static

◆ acquire_target_button_pressed()

static void acquire_target_button_pressed ( GtkButton *  button,
dt_iop_module_t self 
)
static

◆ capture_histogram()

static void capture_histogram ( const float *  col,
const int  width,
const int  height,
int *  hist 
)
static

References height, HISTN, and width.

Referenced by process_clusters().

◆ cleanup_global()

◆ cleanup_pipe()

void cleanup_pipe ( struct dt_iop_module_t self,
dt_dev_pixelpipe_t pipe,
dt_dev_pixelpipe_iop_t piece 
)

◆ cluster_preview_draw()

static gboolean cluster_preview_draw ( GtkWidget *  widget,
cairo_t *  crf,
dt_iop_module_t self 
)
static

◆ commit_params()

◆ default_colorspace()

int default_colorspace ( dt_iop_module_t self,
dt_dev_pixelpipe_t pipe,
dt_dev_pixelpipe_iop_t piece 
)

References IOP_CS_LAB.

◆ default_group()

int default_group ( )

References IOP_GROUP_COLOR.

◆ description()

const char ** description ( struct dt_iop_module_t self)

◆ flags()

◆ get_cluster()

static int get_cluster ( const float *  col,
const int  n,
float2 mean 
)
static

References dist().

Referenced by kmeans().

◆ get_cluster_mapping()

static void get_cluster_mapping ( const int  n,
float2 mi,
const float *  wi,
float2 mo,
const float *  wo,
const float  dominance,
int *  mapio 
)
static

References dist().

Referenced by process().

◆ get_clusters()

static void get_clusters ( const float *  col,
const int  n,
float2 mean,
float *  weight 
)
static

References weight().

Referenced by process().

◆ gui_changed()

void gui_changed ( dt_iop_module_t self,
GtkWidget *  w,
void previous 
)

◆ gui_cleanup()

◆ gui_init()

◆ init_global()

◆ init_pipe()

◆ invert_histogram()

static void invert_histogram ( const int *  hist,
float *  inv_hist 
)
static

References HISTN.

Referenced by process_clusters().

◆ kmeans()

static void kmeans ( const float *  col,
const int  width,
const int  height,
const int  n,
float2 mean_out,
float2 var_out,
float *  weight_out 
)
static

References dt_points_get(), get_cluster(), height, Lab(), and width.

Referenced by process_clusters().

◆ name()

const char * name ( )

◆ process()

◆ process_clusters()

◆ reload_defaults()

◆ tiling_callback()

void tiling_callback ( struct dt_iop_module_t self,
struct dt_dev_pixelpipe_iop_t piece,
const dt_iop_roi_t roi_in,
const dt_iop_roi_t roi_out,
struct dt_develop_tiling_t tiling 
)