Skip to content

Commit

Permalink
Implement support for "Dyer et al. (2017)" dataset.
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Aug 20, 2019
1 parent 52cc510 commit ea16ec9
Show file tree
Hide file tree
Showing 9 changed files with 1,235 additions and 13 deletions.
28 changes: 17 additions & 11 deletions BIBLIOGRAPHY.bib
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ @article{Breneman1987b
volume = 4,
year = 1987,
}
@misc{Dyer2017,
author = {Dyer, Scott and Forsythe, Alexander and Irons,
Jonathon and Mansencal, Thomas and Zhu, Miaoqi},
title = {{RAW to ACES Utility Data}},
year = 2017,
}
@inproceedings{Ebner1998,
author = {Ebner, Fritz and Fairchild, Mark D.},
booktitle = {Proc. SPIE 3300, Color Imaging: Device-Independent
Expand All @@ -67,30 +73,30 @@ @inproceedings{Ebner1998
url = {http:https://proceedings.spiedigitallibrary.org/proceeding.aspx?articleid=936964},
year = 1998,
}
@misc{Haanpalo,
author = {Haanpalo, Jouni and {University of Kuopio}},
doi = {10.5281/zenodo.3269916},
title = {{Munsell Colors Glossy (Spectrofotometer Measured)}},
url = {http:https://www.uef.fi/web/spectral/munsell-colors-glossy-spectrofotometer-measured},
}
@misc{Haanpaloa,
author = {Haanpalo, Jouni and {University of Kuopio}},
doi = {10.5281/zenodo.3269922},
title = {{Paper Spectra}},
url = {http:https://www.uef.fi/web/spectral/paper-spectra},
}
@misc{Hauta-Kasari,
author = {Hauta-Kasari, Markku and {University of Kuopio}},
doi = {10.5281/zenodo.3269912},
title = {{Munsell Colors Matt (Spectrofotometer Measured)}},
url = {http:https://www.uef.fi/web/spectral/munsell-colors-matt-spectrofotometer-measured},
@misc{Haanpalo,
author = {Haanpalo, Jouni and {University of Kuopio}},
doi = {10.5281/zenodo.3269916},
title = {{Munsell Colors Glossy (Spectrofotometer Measured)}},
url = {http:https://www.uef.fi/web/spectral/munsell-colors-glossy-spectrofotometer-measured},
}
@misc{Hauta-Kasaria,
author = {Hauta-Kasari, Markku and {University of Kuopio}},
doi = {10.5281/zenodo.3269914},
title = {{Munsell Colors Matt (AOTF Measured)}},
url = {http:https://www.uef.fi/web/spectral/munsell-colors-matt-aotf-measured-},
}
@misc{Hauta-Kasari,
author = {Hauta-Kasari, Markku and {University of Kuopio}},
doi = {10.5281/zenodo.3269912},
title = {{Munsell Colors Matt (Spectrofotometer Measured)}},
url = {http:https://www.uef.fi/web/spectral/munsell-colors-matt-spectrofotometer-measured},
}
@misc{Hiltunen,
author = {Hiltunen, Jouni and {University of Kuopio}},
doi = {10.5281/zenodo.3269924},
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ definition:
colour-science-datasets
=======================

Datasets : 15
Datasets : 16
Synced : 1
URL : https://zenodo.org/communities/colour-science-datasets/

Expand All @@ -155,6 +155,7 @@ definition:
[ ] 3245895 : New Color Specifications for ColorChecker SG and Classic Charts
[ ] 3252742 : Observer Function Database
[ ] 3269922 : Paper Spectra
[ ] 3372171 : RAW to ACES Utility Data

A ticked checkbox means that the particular dataset has been synced locally.
A dataset is loaded by using its unique number: *3245895*:
Expand Down
3 changes: 3 additions & 0 deletions colour_datasets/loaders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

from .abstract import AbstractDatasetLoader
from .asano2015 import Asano2015DatasetLoader, build_Asano2015
from .dyer2017 import Dyer2017DatasetLoader, build_Dyer2017
from .ebner1998 import Ebner1998DatasetLoader, build_Ebner1998
from .hung1995 import Hung1995DatasetLoader, build_Hung1995
from .jiang2013 import Jiang2013DatasetLoader, build_Jiang2013
Expand All @@ -20,6 +21,7 @@

__all__ = ['AbstractDatasetLoader']
__all__ += ['Asano2015DatasetLoader', 'build_Asano2015']
__all__ += ['Dyer2017DatasetLoader', 'build_Dyer2017']
__all__ += ['Ebner1998DatasetLoader', 'build_Ebner1998']
__all__ += ['Hung1995DatasetLoader', 'build_Hung1995']
__all__ += ['Jiang2013DatasetLoader', 'build_Jiang2013']
Expand All @@ -30,6 +32,7 @@

DATASET_LOADERS = CaseInsensitiveMapping({
Asano2015DatasetLoader.ID: build_Asano2015,
Dyer2017DatasetLoader.ID: build_Dyer2017,
Ebner1998DatasetLoader.ID: build_Ebner1998,
Hung1995DatasetLoader.ID: build_Hung1995,
Jiang2013DatasetLoader.ID: build_Jiang2013,
Expand Down
Loading

0 comments on commit ea16ec9

Please sign in to comment.