From e6c28521f561b01420f3fd1d9fba8daa7cae6e56 Mon Sep 17 00:00:00 2001 From: hahnec Date: Thu, 5 Jan 2023 20:59:13 +0100 Subject: [PATCH] chore(badge): amend badge link according to https://github.com/badges/shields/issues/8671#issue-1471818100 --- README.rst | 2 +- docs/build/html/apidoc.html | 60 ++++++++++++++--------------- docs/build/html/color_matcher.html | 60 ++++++++++++++--------------- docs/build/html/objects.inv | Bin 777 -> 773 bytes docs/build/html/py-modindex.html | 2 +- docs/build/html/readme.html | 34 ++++++++-------- docs/build/html/searchindex.js | 2 +- 7 files changed, 80 insertions(+), 80 deletions(-) diff --git a/README.rst b/README.rst index 79e08a4..76ebf8e 100644 --- a/README.rst +++ b/README.rst @@ -194,7 +194,7 @@ API Usage .. |build_travis| image:: https://img.shields.io/travis/com/hahnec/color-matcher?style=square :target: https://travis-ci.com/github/hahnec/color-matcher -.. |build_github| image:: https://img.shields.io/github/workflow/status/hahnec/color-matcher/ColorMatcher's%20CI%20Pipeline/master?style=square +.. |build_github| image:: https://img.shields.io/github/actions/workflow/status/hahnec/color-matcher/gh_actions.yml?branch=master&style=square :target: https://github.com/hahnec/color-matcher/actions :alt: GitHub Workflow Status diff --git a/docs/build/html/apidoc.html b/docs/build/html/apidoc.html index 7483b93..5f69693 100644 --- a/docs/build/html/apidoc.html +++ b/docs/build/html/apidoc.html @@ -61,7 +61,7 @@

Class hierarchy
-main() numpy.ndarray
+main() numpy.ndarray

The main function is the high-level entry point performing the mapping based on instantiation arguments.

Returns
@@ -75,14 +75,14 @@

Class hierarchy
-transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, method: Optional[str] = None) numpy.ndarray
+transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, method: Optional[str] = None) numpy.ndarray

Transfer function to map colors based on provided transfer method.

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • -
  • method (str) – (‘default’, ‘hm’, ‘reinhard’, ‘mvgd’, ‘mkl’, ‘hm-mvgd-hm’, ‘hm-mkl-hm’) determining color mapping

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • +
  • method (str) – (‘default’, ‘hm’, ‘reinhard’, ‘mvgd’, ‘mkl’, ‘hm-mvgd-hm’, ‘hm-mkl-hm’) determining color mapping

Returns
@@ -106,15 +106,15 @@

Class hierarchy
-hist_match(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None) numpy.ndarray
+hist_match(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None) numpy.ndarray

This function conducts channel-wise histogram matching which is invariant of image resolutions, but requires the same number of color channels in both images.

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • -
  • res (ndarray) – Resulting image after the mapping

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • +
  • res (ndarray) – Resulting image after the mapping

Returns
@@ -138,7 +138,7 @@

Class hierarchy
-analytical_solver() numpy.ndarray
+analytical_solver() numpy.ndarray

An analytical solution to the linear equation system of Multi-Variate Gaussian Distributions (MVGDs).

Returns
@@ -177,15 +177,15 @@

Class hierarchy
-multivar_transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, fun: Optional[function] = None) numpy.ndarray
+multivar_transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, fun: Optional[function] = None) numpy.ndarray

Transfer function to map colors based on for Multi-Variate Gaussian Distributions (MVGDs).

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • fun – Optional argument to pass a transfer function to solve for covariance matrices

  • -
  • res (ndarray) – Resulting image after the mapping

  • +
  • res (ndarray) – Resulting image after the mapping

Returns
@@ -199,42 +199,42 @@

Class hierarchy
-static w2_dist(mu_a: numpy.ndarray, mu_b: numpy.ndarray, cov_a: numpy.ndarray, cov_b: numpy.ndarray) float
+static w2_dist(mu_a: numpy.ndarray, mu_b: numpy.ndarray, cov_a: numpy.ndarray, cov_b: numpy.ndarray) float

Wasserstein-2 distance metric is a similarity measure for Gaussian distributions

Parameters
    -
  • mu_a (ndarray) – Gaussian mean of distribution a

  • -
  • mu_b (ndarray) – Gaussian mean of distribution b

  • -
  • cov_a (ndarray) – Covariance matrix of distribution a

  • -
  • cov_b (ndarray) – Covariance matrix of distribution b

  • +
  • mu_a (ndarray) – Gaussian mean of distribution a

  • +
  • mu_b (ndarray) – Gaussian mean of distribution b

  • +
  • cov_a (ndarray) – Covariance matrix of distribution a

  • +
  • cov_b (ndarray) – Covariance matrix of distribution b

Returns

scalar: Wasserstein-2 metric as a scalar

Return type
-

float

+

float

-w2_img_dist(img_a: numpy.ndarray, img_b: numpy.ndarray)
+w2_img_dist(img_a: numpy.ndarray, img_b: numpy.ndarray)

Wasserstein-2 image distance metric is a similarity measure for Gaussian distributions

Parameters
    -
  • img_a (ndarray) – Image array a

  • -
  • img_b (ndarray) – Image array b

  • +
  • img_a (ndarray) – Image array a

  • +
  • img_b (ndarray) – Image array b

Returns

scalar: Wasserstein-2 image metric as a scalar

Return type
-

float

+

float

@@ -251,15 +251,15 @@

Class hierarchy
-reinhard(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None) numpy.ndarray
+reinhard(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None) numpy.ndarray

This function conducts color matching based on the principles proposed by Reinhard et al. The paper of the original work can be found at https://www.cs.tau.ac.il/~turkel/imagepapers/ColorTransfer.pdf

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • -
  • res (ndarray) – Resulting image after the mapping

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • +
  • res (ndarray) – Resulting image after the mapping

Returns
@@ -283,12 +283,12 @@

Class hierarchy
-static rgb2gray(rgb: Optional[numpy.ndarray] = None, standard: str = 'HDTV') numpy.ndarray
+static rgb2gray(rgb: Optional[numpy.ndarray] = None, standard: str = 'HDTV') numpy.ndarray

Convert RGB color space to monochromatic color space

Parameters
    -
  • rgb (ndarray) – input array in red, green and blue (RGB) space

  • +
  • rgb (ndarray) – input array in red, green and blue (RGB) space

  • standard (string) – option that determines whether head- and footroom are excluded (‘HDTV’) or considered otherwise

diff --git a/docs/build/html/color_matcher.html b/docs/build/html/color_matcher.html index 2ffc86a..5bf261d 100644 --- a/docs/build/html/color_matcher.html +++ b/docs/build/html/color_matcher.html @@ -45,7 +45,7 @@

Submodules
class color_matcher.baseclass.MatcherBaseclass(*args, **kwargs)
-

Bases: object

+

Bases: object

__init__(*args, **kwargs)
@@ -53,12 +53,12 @@

Submodules
-static rgb2gray(rgb: Optional[numpy.ndarray] = None, standard: str = 'HDTV') numpy.ndarray
+static rgb2gray(rgb: Optional[numpy.ndarray] = None, standard: str = 'HDTV') numpy.ndarray

Convert RGB color space to monochromatic color space

Parameters
    -
  • rgb (ndarray) – input array in red, green and blue (RGB) space

  • +
  • rgb (ndarray) – input array in red, green and blue (RGB) space

  • standard (string) – option that determines whether head- and footroom are excluded (‘HDTV’) or considered otherwise

@@ -99,15 +99,15 @@

Submodules
-hist_match(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None) numpy.ndarray
+hist_match(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None) numpy.ndarray

This function conducts channel-wise histogram matching which is invariant of image resolutions, but requires the same number of color channels in both images.

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • -
  • res (ndarray) – Resulting image after the mapping

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • +
  • res (ndarray) – Resulting image after the mapping

Returns
@@ -126,12 +126,12 @@

Submodules

color_matcher.io_handler module

-color_matcher.io_handler.load_img_file(file_path: Optional[str] = None) numpy.ndarray
+color_matcher.io_handler.load_img_file(file_path: Optional[str] = None) numpy.ndarray
-color_matcher.io_handler.save_img_file(img, file_path: Optional[str] = None, file_type: Optional[str] = None) bool
+color_matcher.io_handler.save_img_file(img, file_path: Optional[str] = None, file_type: Optional[str] = None) bool
@@ -159,7 +159,7 @@

Submodules
-analytical_solver() numpy.ndarray
+analytical_solver() numpy.ndarray

An analytical solution to the linear equation system of Multi-Variate Gaussian Distributions (MVGDs).

Returns
@@ -198,15 +198,15 @@

Submodules
-multivar_transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, fun: Optional[function] = None) numpy.ndarray
+multivar_transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, fun: Optional[function] = None) numpy.ndarray

Transfer function to map colors based on for Multi-Variate Gaussian Distributions (MVGDs).

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • fun – Optional argument to pass a transfer function to solve for covariance matrices

  • -
  • res (ndarray) – Resulting image after the mapping

  • +
  • res (ndarray) – Resulting image after the mapping

Returns
@@ -220,42 +220,42 @@

Submodules
-static w2_dist(mu_a: numpy.ndarray, mu_b: numpy.ndarray, cov_a: numpy.ndarray, cov_b: numpy.ndarray) float
+static w2_dist(mu_a: numpy.ndarray, mu_b: numpy.ndarray, cov_a: numpy.ndarray, cov_b: numpy.ndarray) float

Wasserstein-2 distance metric is a similarity measure for Gaussian distributions

Parameters
    -
  • mu_a (ndarray) – Gaussian mean of distribution a

  • -
  • mu_b (ndarray) – Gaussian mean of distribution b

  • -
  • cov_a (ndarray) – Covariance matrix of distribution a

  • -
  • cov_b (ndarray) – Covariance matrix of distribution b

  • +
  • mu_a (ndarray) – Gaussian mean of distribution a

  • +
  • mu_b (ndarray) – Gaussian mean of distribution b

  • +
  • cov_a (ndarray) – Covariance matrix of distribution a

  • +
  • cov_b (ndarray) – Covariance matrix of distribution b

Returns

scalar: Wasserstein-2 metric as a scalar

Return type
-

float

+

float

-w2_img_dist(img_a: numpy.ndarray, img_b: numpy.ndarray)
+w2_img_dist(img_a: numpy.ndarray, img_b: numpy.ndarray)

Wasserstein-2 image distance metric is a similarity measure for Gaussian distributions

Parameters
    -
  • img_a (ndarray) – Image array a

  • -
  • img_b (ndarray) – Image array b

  • +
  • img_a (ndarray) – Image array a

  • +
  • img_b (ndarray) – Image array b

Returns

scalar: Wasserstein-2 image metric as a scalar

Return type
-

float

+

float

@@ -268,7 +268,7 @@

Submodules
class color_matcher.normalizer.Normalizer(data=None, min=None, max=None)
-

Bases: object

+

Bases: object

__init__(data=None, min=None, max=None)
@@ -314,7 +314,7 @@

Submodules
-main() numpy.ndarray
+main() numpy.ndarray

The main function is the high-level entry point performing the mapping based on instantiation arguments.

Returns
@@ -328,14 +328,14 @@

Submodules
-transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, method: Optional[str] = None) numpy.ndarray
+transfer(src: Optional[numpy.ndarray] = None, ref: Optional[numpy.ndarray] = None, method: Optional[str] = None) numpy.ndarray

Transfer function to map colors based on provided transfer method.

Parameters
    -
  • src (ndarray) – Source image that requires transfer

  • -
  • ref (ndarray) – Palette image which serves as reference

  • -
  • method (str) – (‘default’, ‘hm’, ‘reinhard’, ‘mvgd’, ‘mkl’, ‘hm-mvgd-hm’, ‘hm-mkl-hm’) determining color mapping

  • +
  • src (ndarray) – Source image that requires transfer

  • +
  • ref (ndarray) – Palette image which serves as reference

  • +
  • method (str) – (‘default’, ‘hm’, ‘reinhard’, ‘mvgd’, ‘mkl’, ‘hm-mvgd-hm’, ‘hm-mkl-hm’) determining color mapping

Returns
diff --git a/docs/build/html/objects.inv b/docs/build/html/objects.inv index bd454060786ebb3c78639bc6d07e865705d62a09..28f75d7ee9dc4c0b895dc5e04f6b8d5cf5d5365d 100644 GIT binary patch delta 648 zcmV;30(bq1289NYiGNXd4^_3dwkx%JNENkJuhy*XfE9lr+ptZ4eNCJXoB+X?Q-a6u z;~9IH0kGmqBLNl{RA=S>NhnfrntjM{+p;RG;P1R``951NLhIM&YJGuV4#s2;8I+7D z?8U>X6+%ohi_pObY70f;^a7Zis2t(+3W4MXRzk1nQt3Zn+j2v~~zJY1MrXiVgYFcAa$NtrA_lj!`o5>DCL zYlJ>tM<9M5Z;ADvZ_nd>Z>y#_9_T>=-&=-(Bcpg7b$bRNH-dMu=NAyfF4YH7am#AZ zXhN+CKyQyO5`SY8LqgBXMAPPtTQXI)B#-YHbG;X5nWDEg(P zBs>_jA%i_L+NF_wbOvruZyiNu3Kbv;PuRi>V#O7Z!-;O0!#Lo!lGrjOQ1r}4M z{267&l7FY>H$1iM^X4UU7nPvWLen`z2ime*emInsfOnA7MNVBiCiL$?%;D7?vXh@i zz4E2`ySPj{uF;xtU@uQ>O4{{g1C5CL%${x*mJ delta 652 zcmV;70(1R^28jlciGQfOhpO6J+m+fqq>9?ASIdhhV8tKEHf-syuZi=46CfCKN*Mcn zJYx?tKqi?~h+~r#ppvqA;*wMhk`DuND`*!n2Nbtqp;AsW8l;D->Eh-SC|J!eSfW-6Zs9Jum(38Ksk!P zU=7ao$uV3j=frTsQ2Fbljj4%Y)R<9%4Ino!EA%2X%5y|04}tvzDhjMfaDH3~=WOjY zLLILI5WkPN#OBYp=jpz8RdXEo^jKil7@A>*v}ASA?dgH6CEJIdpGV;PSRZ)B46U(3 zGir?odV92yXnzwScgY-tc5JOP?DHjXvtxK`cJB4a7d~fBN zM8C9@t0#hxWA8#nduFgp6Z_}_+=1RYiA*IbuplgA3onS2NlXqWx}z3jfxAj%hDs6c zPO5PYi?M(~W)>k;WvM`GRB2G?4J$!KK8MNcoJ41D7k@I?5rf^C&?O_87QiI)CNPDA9&IwZHzUC7-u1iM^;e2!q?s={wMs-ST}?QsQinb6DkI+cAN^2QkC1 z_K>aoWOd4y_V4O4?YKr~#(}*)u@%^GL1b|Dc4af8XPL5Dp9UOf diff --git a/docs/build/html/py-modindex.html b/docs/build/html/py-modindex.html index 8c79334..379a971 100644 --- a/docs/build/html/py-modindex.html +++ b/docs/build/html/py-modindex.html @@ -52,7 +52,7 @@

Python Module Index

- color_matcher + color_matcher diff --git a/docs/build/html/readme.html b/docs/build/html/readme.html index 027e88a..2ab8d81 100644 --- a/docs/build/html/readme.html +++ b/docs/build/html/readme.html @@ -53,7 +53,7 @@

Descriptionrelease License GitHub Workflow Status coverage PyPi Dl2 PyPI Downloads

+

release License GitHub Workflow Status coverage PyPi Dl2 PyPI Downloads

binder

@@ -61,10 +61,10 @@

Results - - - - + + + + @@ -75,24 +75,24 @@

Results

Photograph

-

-

-

+

+

+

Film sequence

-

-

-

+

+

+

Light-field correction

-

-

-

+

+

+

Paintings

-

-

-

+

+

+

diff --git a/docs/build/html/searchindex.js b/docs/build/html/searchindex.js index 9aac1ff..71910ad 100644 --- a/docs/build/html/searchindex.js +++ b/docs/build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["apidoc","color_matcher","index","readme"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,sphinx:56},filenames:["apidoc.rst","color_matcher.rst","index.rst","readme.rst"],objects:{"":{color_matcher:[0,0,0,"-"]},"color_matcher.ColorMatcher":{__init__:[0,2,1,""],main:[0,2,1,""],transfer:[0,2,1,""]},"color_matcher.HistogramMatcher":{__init__:[0,2,1,""],hist_match:[0,2,1,""]},"color_matcher.MatcherBaseclass":{__init__:[0,2,1,""],rgb2gray:[0,2,1,""],validate_color_chs:[0,2,1,""],validate_img_dims:[0,2,1,""]},"color_matcher.ReinhardMatcher":{__init__:[0,2,1,""],reinhard:[0,2,1,""]},"color_matcher.TransferMVGD":{__init__:[0,2,1,""],analytical_solver:[0,2,1,""],check_dims:[0,2,1,""],mkl_solver:[0,2,1,""],multivar_transfer:[0,2,1,""],w2_dist:[0,2,1,""],w2_img_dist:[0,2,1,""]},"color_matcher.baseclass":{MatcherBaseclass:[1,1,1,""]},"color_matcher.baseclass.MatcherBaseclass":{__init__:[1,2,1,""],rgb2gray:[1,2,1,""],validate_color_chs:[1,2,1,""],validate_img_dims:[1,2,1,""]},"color_matcher.hist_matcher":{HistogramMatcher:[1,1,1,""]},"color_matcher.hist_matcher.HistogramMatcher":{__init__:[1,2,1,""],hist_match:[1,2,1,""]},"color_matcher.io_handler":{load_img_file:[1,3,1,""],save_img_file:[1,3,1,""],select_file:[1,3,1,""],suppress_user_warning:[1,3,1,""]},"color_matcher.mvgd_matcher":{TransferMVGD:[1,1,1,""]},"color_matcher.mvgd_matcher.TransferMVGD":{__init__:[1,2,1,""],analytical_solver:[1,2,1,""],check_dims:[1,2,1,""],mkl_solver:[1,2,1,""],multivar_transfer:[1,2,1,""],w2_dist:[1,2,1,""],w2_img_dist:[1,2,1,""]},"color_matcher.normalizer":{Normalizer:[1,1,1,""]},"color_matcher.normalizer.Normalizer":{__init__:[1,2,1,""],norm_fun:[1,2,1,""],type_norm:[1,2,1,""],uint16_norm:[1,2,1,""],uint8_norm:[1,2,1,""]},"color_matcher.top_level":{ColorMatcher:[1,1,1,""]},"color_matcher.top_level.ColorMatcher":{__init__:[1,2,1,""],main:[1,2,1,""],transfer:[1,2,1,""]},color_matcher:{ColorMatcher:[0,1,1,""],HistogramMatcher:[0,1,1,""],MatcherBaseclass:[0,1,1,""],ReinhardMatcher:[0,1,1,""],TransferMVGD:[0,1,1,""],baseclass:[1,0,0,"-"],hist_matcher:[1,0,0,"-"],io_handler:[1,0,0,"-"],mvgd_matcher:[1,0,0,"-"],normalizer:[1,0,0,"-"],top_level:[1,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"],"3":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:class","2":"py:method","3":"py:function"},terms:{"0":[1,3],"1":1,"10":3,"1109":3,"16":1,"2":[0,1],"2021":3,"3":[0,1],"30":3,"3095671":3,"6757":3,"6771":3,"8":1,"catch":[0,1],"class":[1,2],"default":[0,1],"float":[0,1],"function":[0,1,3],"import":3,"return":[0,1],"short":2,"static":[0,1],"switch":1,"throw":[0,1],A:[0,3],As:[0,3],It:[0,1],The:[0,1,3],These:3,__init__:[0,1],abov:3,ac:0,across:3,after:[0,1],aggoun:3,al:[0,3],all:0,altern:3,amar:3,an:[0,1],analyt:[0,1,3],analytical_solv:[0,1],api:2,approach:3,ar:[0,1,3],arg:[0,1],argument:[0,1,3],arrai:[0,1],articl:3,author:2,automat:3,b:[0,1],base:[0,1,3],batch:3,behind:3,below:[0,2,3],between:[1,3],bit:1,blue:[0,1],bool:1,both:[0,1],can:[0,3],categori:1,cd:3,cdf:3,cdot:3,channel:[0,1],check:[0,1],check_dim:[0,1],christoph:3,citat:2,classic:3,cli:2,click:2,clone:3,cm:3,color:[0,1],color_match:[0,3],colormatch:[0,1,3],colortransf:0,com:3,come:3,command:3,compound:3,comput:[0,1,3],conduct:[0,1],conjunct:3,consid:[0,1],consist:[0,1,3],convert:[0,1],correct:3,cov_a:[0,1],cov_b:[0,1],covari:[0,1],cs:0,cumul:3,d_2:3,data:[1,3],densiti:3,depend:3,descript:2,detail:3,determin:[0,1],diagram:[0,3],dialog:1,dimens:[0,1],directori:3,dirnam:3,distanc:[0,1,3],distribut:[0,1,3],doi:3,download:3,e:[0,1,3],enabl:3,endswith:3,enter:3,entri:[0,1],enumer:3,equat:[0,1],equival:3,error:[0,1],et:[0,3],except:[0,1],exclud:[0,1],exist:3,experiment:2,extens:0,f:3,field:3,file_ext:3,file_path:1,file_typ:1,filenam:3,filepath:1,film:3,finish:3,fname:3,follow:3,footroom:[0,1],found:[0,3],framework:3,from:[1,3],full:2,fun:[0,1],futur:0,g:[0,1,3],gaussian:[0,1,3],get:1,git:3,github:3,go:3,grade:3,grai:[0,1],green:[0,1],guid:2,h:3,hahn:3,hahnec:3,handi:3,hdtv:[0,1],head:[0,1],help:3,hereaft:0,hierarchi:2,high:[0,1],higher:3,hist_match:0,histogram:[0,1,3],histogrammatch:[0,1],hm:[0,1,3],http:[0,3],i:3,ieee:3,il:0,illustr:3,imag:[0,1,3],imagepap:0,img:1,img_a:[0,1],img_b:[0,1],img_r:3,img_ref:3,img_src:3,indic:3,inform:3,init_dir:1,init_var:[],input:[0,1],instal:2,instanti:[0,1],integ:1,intens:3,interest:0,invari:[0,1],io_handl:3,join:3,journal:3,k:3,kantorovich:[0,1,3],kwarg:[0,1],level:[0,1,3],light:3,line:3,linear:[0,1,3],listdir:3,load:3,load_img_fil:[1,3],low:3,lower:3,main:[0,1],manual:3,map:[0,1,3],match:[0,1,3],matcherbaseclass:[0,1],mathbf:3,matric:[0,1],matrix:[0,1],max:1,mean:[0,1],measur:[0,1],method:[0,1,3],metric:[0,1,3],min:1,mkl:[0,1,3],mkl_solver:[0,1],mong:[0,1,3],monochromat:[0,1],more:3,mu_a:[0,1],mu_b:[0,1],multi:[0,1,3],multivar_transf:[0,1],mvgd:[0,1,3],ndarrai:[0,1],new_max:1,new_min:1,none:[0,1],norm_fun:1,normal:3,note:3,np:[0,1],number:[0,1,3],numpi:[0,1],object:1,onc:3,option:[0,1,3],org:3,origin:0,os:3,otherwis:[0,1],our:3,outperform:3,overview:0,page:3,paint:3,palett:[0,1],paper:[0,3],paramet:[0,1,3],pass:[0,1,3],path:3,pdf:[0,3],perform:[0,1],photograph:3,pip3:3,pip:3,piti:3,plenopticam:3,png:3,point:[0,1],possibl:3,primari:0,principl:0,probabl:3,process:3,propos:[0,3],provid:[0,1,3],py:3,python3:3,python:3,r:3,ran:3,re:[0,1],readm:2,red:[0,1],ref:[0,1,3],refer:[0,1],reinhard:[0,1,3],reinhard_match:1,reinhardmatch:[0,1],repo:3,repres:3,requir:[0,1,3],resolut:[0,1],respect:3,result:[0,1,2],rgb2grai:[0,1],rgb:[0,1],root:3,run:3,s:[2,3],same:[0,1],save_img_fil:[1,3],scalar:[0,1],scale:[0,1],schemat:0,scotland_hous:3,scotland_plain:3,seen:0,select:3,select_fil:1,sequenc:3,serv:[0,1],setup:3,shown:3,similar:[0,1,3],smoothli:3,solut:[0,1,3],solv:[0,1],sourc:[0,1,3],space:[0,1],specifi:3,src:[0,1,3],src_path:3,standard:[0,1],stopmot:3,str:[0,1,3],string:[0,1],suppress_user_warn:1,system:[0,1,3],target:3,tau:0,test:3,thi:[0,1],tip:3,titl:[1,3],tkinter:1,tool:3,transact:3,transfer:[0,1,3],transfer_mat:[0,1],transfermvgd:[0,1],turkel:0,txt:3,type:[0,1,3],type_norm:1,uint16_norm:1,uint8_norm:[1,3],unequ:[0,1],unix:3,unsign:1,us:3,usag:2,user:2,v1:3,valid:[0,1],validate_color_ch:[0,1],validate_img_dim:[0,1],valu:[1,3],variat:[0,1,3],via:3,volum:3,w2_dist:[0,1],w2_img_dist:[0,1],w_1:3,wasserstein:[0,1,3],well:3,where:3,whether:[0,1],which:[0,1,3],win:3,window:3,wise:[0,1],work:0,wrong:[0,1],www:[0,3],year:3,you:3,your:3,z:3},titles:["API documentation","color_matcher package","color-matcher reference document","color-matcher"],titleterms:{"class":0,api:[0,3],author:3,baseclass:1,citat:3,cli:3,color:[2,3],color_match:1,content:[1,2],descript:3,document:[0,2],experiment:3,hierarchi:0,hist_match:1,instal:3,io_handl:1,matcher:[2,3],modul:1,mvgd_matcher:1,normal:1,packag:1,refer:2,result:3,submodul:1,top_level:1,usag:3}}) \ No newline at end of file +Search.setIndex({docnames:["apidoc","color_matcher","index","readme"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,sphinx:56},filenames:["apidoc.rst","color_matcher.rst","index.rst","readme.rst"],objects:{"":{color_matcher:[1,0,0,"-"]},"color_matcher.ColorMatcher":{__init__:[0,2,1,""],main:[0,2,1,""],transfer:[0,2,1,""]},"color_matcher.HistogramMatcher":{__init__:[0,2,1,""],hist_match:[0,2,1,""]},"color_matcher.MatcherBaseclass":{__init__:[0,2,1,""],rgb2gray:[0,2,1,""],validate_color_chs:[0,2,1,""],validate_img_dims:[0,2,1,""]},"color_matcher.ReinhardMatcher":{__init__:[0,2,1,""],reinhard:[0,2,1,""]},"color_matcher.TransferMVGD":{__init__:[0,2,1,""],analytical_solver:[0,2,1,""],check_dims:[0,2,1,""],mkl_solver:[0,2,1,""],multivar_transfer:[0,2,1,""],w2_dist:[0,2,1,""],w2_img_dist:[0,2,1,""]},"color_matcher.baseclass":{MatcherBaseclass:[1,1,1,""]},"color_matcher.baseclass.MatcherBaseclass":{__init__:[1,2,1,""],rgb2gray:[1,2,1,""],validate_color_chs:[1,2,1,""],validate_img_dims:[1,2,1,""]},"color_matcher.hist_matcher":{HistogramMatcher:[1,1,1,""]},"color_matcher.hist_matcher.HistogramMatcher":{__init__:[1,2,1,""],hist_match:[1,2,1,""]},"color_matcher.io_handler":{load_img_file:[1,3,1,""],save_img_file:[1,3,1,""],select_file:[1,3,1,""],suppress_user_warning:[1,3,1,""]},"color_matcher.mvgd_matcher":{TransferMVGD:[1,1,1,""]},"color_matcher.mvgd_matcher.TransferMVGD":{__init__:[1,2,1,""],analytical_solver:[1,2,1,""],check_dims:[1,2,1,""],mkl_solver:[1,2,1,""],multivar_transfer:[1,2,1,""],w2_dist:[1,2,1,""],w2_img_dist:[1,2,1,""]},"color_matcher.normalizer":{Normalizer:[1,1,1,""]},"color_matcher.normalizer.Normalizer":{__init__:[1,2,1,""],norm_fun:[1,2,1,""],type_norm:[1,2,1,""],uint16_norm:[1,2,1,""],uint8_norm:[1,2,1,""]},"color_matcher.top_level":{ColorMatcher:[1,1,1,""]},"color_matcher.top_level.ColorMatcher":{__init__:[1,2,1,""],main:[1,2,1,""],transfer:[1,2,1,""]},color_matcher:{ColorMatcher:[0,1,1,""],HistogramMatcher:[0,1,1,""],MatcherBaseclass:[0,1,1,""],ReinhardMatcher:[0,1,1,""],TransferMVGD:[0,1,1,""],baseclass:[1,0,0,"-"],hist_matcher:[1,0,0,"-"],io_handler:[1,0,0,"-"],mvgd_matcher:[1,0,0,"-"],normalizer:[1,0,0,"-"],top_level:[1,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"],"3":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:class","2":"py:method","3":"py:function"},terms:{"0":[1,3],"1":1,"10":3,"1109":3,"16":1,"2":[0,1],"2021":3,"3":[0,1],"30":3,"3095671":3,"6757":3,"6771":3,"8":1,"catch":[0,1],"class":[1,2],"default":[0,1],"float":[0,1],"function":[0,1,3],"import":3,"return":[0,1],"short":2,"static":[0,1],"switch":1,"throw":[0,1],A:[0,3],As:[0,3],It:[0,1],The:[0,1,3],These:3,__init__:[0,1],abov:3,ac:0,across:3,after:[0,1],aggoun:3,al:[0,3],all:0,altern:3,amar:3,an:[0,1],analyt:[0,1,3],analytical_solv:[0,1],api:2,approach:3,ar:[0,1,3],arg:[0,1],argument:[0,1,3],arrai:[0,1],articl:3,author:2,automat:3,b:[0,1],base:[0,1,3],batch:3,behind:3,below:[0,2,3],between:[1,3],bit:1,blue:[0,1],bool:1,both:[0,1],can:[0,3],categori:1,cd:3,cdf:3,cdot:3,channel:[0,1],check:[0,1],check_dim:[0,1],christoph:3,citat:2,classic:3,cli:2,click:2,clone:3,cm:3,color:[0,1],color_match:[0,3],colormatch:[0,1,3],colortransf:0,com:3,come:3,command:3,compound:3,comput:[0,1,3],conduct:[0,1],conjunct:3,consid:[0,1],consist:[0,1,3],convert:[0,1],correct:3,cov_a:[0,1],cov_b:[0,1],covari:[0,1],cs:0,cumul:3,d_2:3,data:[1,3],densiti:3,depend:3,descript:2,detail:3,determin:[0,1],diagram:[0,3],dialog:1,dimens:[0,1],directori:3,dirnam:3,distanc:[0,1,3],distribut:[0,1,3],doi:3,download:3,e:[0,1,3],enabl:3,endswith:3,enter:3,entri:[0,1],enumer:3,equat:[0,1],equival:3,error:[0,1],et:[0,3],except:[0,1],exclud:[0,1],exist:3,experiment:2,extens:0,f:3,field:3,file_ext:3,file_path:1,file_typ:1,filenam:3,filepath:1,film:3,finish:3,fname:3,follow:3,footroom:[0,1],found:[0,3],framework:3,from:[1,3],full:2,fun:[0,1],futur:0,g:[0,1,3],gaussian:[0,1,3],get:1,git:3,github:3,go:3,grade:3,grai:[0,1],green:[0,1],guid:2,h:3,hahn:3,hahnec:3,handi:3,hdtv:[0,1],head:[0,1],help:3,hereaft:0,hierarchi:2,high:[0,1],higher:3,hist_match:0,histogram:[0,1,3],histogrammatch:[0,1],hm:[0,1,3],http:[0,3],i:3,ieee:3,il:0,illustr:3,imag:[0,1,3],imagepap:0,img:1,img_a:[0,1],img_b:[0,1],img_r:3,img_ref:3,img_src:3,indic:3,inform:3,init_dir:1,init_var:[],input:[0,1],instal:2,instanti:[0,1],integ:1,intens:3,interest:0,invari:[0,1],io_handl:3,join:3,journal:3,k:3,kantorovich:[0,1,3],kwarg:[0,1],level:[0,1,3],light:3,line:3,linear:[0,1,3],listdir:3,load:3,load_img_fil:[1,3],low:3,lower:3,main:[0,1],manual:3,map:[0,1,3],match:[0,1,3],matcherbaseclass:[0,1],mathbf:3,matric:[0,1],matrix:[0,1],max:1,mean:[0,1],measur:[0,1],method:[0,1,3],metric:[0,1,3],min:1,mkl:[0,1,3],mkl_solver:[0,1],mong:[0,1,3],monochromat:[0,1],more:3,mu_a:[0,1],mu_b:[0,1],multi:[0,1,3],multivar_transf:[0,1],mvgd:[0,1,3],ndarrai:[0,1],new_max:1,new_min:1,none:[0,1],norm_fun:1,normal:3,note:3,np:[0,1],number:[0,1,3],numpi:[0,1],object:1,onc:3,option:[0,1,3],org:3,origin:0,os:3,otherwis:[0,1],our:3,outperform:3,overview:0,page:3,paint:3,palett:[0,1],paper:[0,3],paramet:[0,1,3],pass:[0,1,3],path:3,pdf:[0,3],perform:[0,1],photograph:3,pip3:3,pip:3,piti:3,plenopticam:3,png:3,point:[0,1],possibl:3,primari:0,principl:0,probabl:3,process:3,propos:[0,3],provid:[0,1,3],py:3,python3:3,python:3,r:3,ran:3,re:[0,1],readm:2,red:[0,1],ref:[0,1,3],refer:[0,1],reinhard:[0,1,3],reinhard_match:1,reinhardmatch:[0,1],repo:3,repres:3,requir:[0,1,3],resolut:[0,1],respect:3,result:[0,1,2],rgb2grai:[0,1],rgb:[0,1],root:3,run:3,s:[2,3],same:[0,1],save_img_fil:[1,3],scalar:[0,1],scale:[0,1],schemat:0,scotland_hous:3,scotland_plain:3,seen:0,select:3,select_fil:1,sequenc:3,serv:[0,1],setup:3,shown:3,similar:[0,1,3],smoothli:3,solut:[0,1,3],solv:[0,1],sourc:[0,1,3],space:[0,1],specifi:3,src:[0,1,3],src_path:3,standard:[0,1],stopmot:3,str:[0,1,3],string:[0,1],suppress_user_warn:1,system:[0,1,3],target:3,tau:0,test:3,thi:[0,1],tip:3,titl:[1,3],tkinter:1,tool:3,transact:3,transfer:[0,1,3],transfer_mat:[0,1],transfermvgd:[0,1],turkel:0,txt:3,type:[0,1,3],type_norm:1,uint16_norm:1,uint8_norm:[1,3],unequ:[0,1],unix:3,unsign:1,us:3,usag:2,user:2,v1:3,valid:[0,1],validate_color_ch:[0,1],validate_img_dim:[0,1],valu:[1,3],variat:[0,1,3],via:3,volum:3,w2_dist:[0,1],w2_img_dist:[0,1],w_1:3,wasserstein:[0,1,3],well:3,where:3,whether:[0,1],which:[0,1,3],win:3,window:3,wise:[0,1],work:0,wrong:[0,1],www:[0,3],year:3,you:3,your:3,z:3},titles:["API documentation","color_matcher package","color-matcher reference document","color-matcher"],titleterms:{"class":0,api:[0,3],author:3,baseclass:1,citat:3,cli:3,color:[2,3],color_match:1,content:[1,2],descript:3,document:[0,2],experiment:3,hierarchi:0,hist_match:1,instal:3,io_handl:1,matcher:[2,3],modul:1,mvgd_matcher:1,normal:1,packag:1,refer:2,result:3,submodul:1,top_level:1,usag:3}}) \ No newline at end of file