Skip to content

Commit a3529eb

Browse files
committed
Merge branch 'release/v0.1.7'
2 parents 452a656 + 7972974 commit a3529eb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1671
-757
lines changed

.github/workflows/continuous-integration.yml

+7-34
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Unix Build
88
strategy:
99
matrix:
10-
os: [ubuntu-18.04, macOS-10.14]
10+
os: [ubuntu-18.04, macOS-latest]
1111
python-version: [2.7, 3.6, 3.7]
1212
runs-on: ${{ matrix.os }}
1313
steps:
@@ -19,17 +19,10 @@ jobs:
1919
CI_PYTHON_VERSION=${{ matrix.python-version }}
2020
CI_PACKAGE=colour_hdri
2121
CI_SHA=${{ github.sha }}
22-
CI_SLACK_WEBHOOK=${{ secrets.SLACK_WEBHOOK }}
23-
CI_SLACK_SUCCESS_NOTIFICATION="payload={\"attachments\": [{\"color\": \"#4CAF50\", \"author_name\": \"Python ${{ matrix.python-version }} build on ${{ matrix.os }}\", \"text\": \"Build for commit *${CI_SHA:0:7}* succeeded!\", \"title\": \"${{ github.repository }}@${{ github.ref }}\", \"title_link\": \"https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks\", \"footer\": \"Triggered by ${{ github.actor }}\"}], \"username\":\"Github Actions @ ${{ github.repository }}\", \"channel\":\"#continuous-integration\", \"icon_url\":\"https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png\"}"
24-
CI_SLACK_FAILURE_NOTIFICATION="${CI_SLACK_SUCCESS_NOTIFICATION/4CAF50/F44336}"
25-
CI_SLACK_FAILURE_NOTIFICATION="${CI_SLACK_FAILURE_NOTIFICATION/succeeded/failed}"
2622
COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }}
2723
echo ::set-env name=CI_PYTHON_VERSION::$CI_PYTHON_VERSION
2824
echo ::set-env name=CI_PACKAGE::$CI_PACKAGE
2925
echo ::set-env name=CI_SHA::$CI_SHA
30-
echo ::set-env name=CI_SLACK_WEBHOOK::$CI_SLACK_WEBHOOK
31-
echo ::set-env name=CI_SLACK_SUCCESS_NOTIFICATION::$CI_SLACK_SUCCESS_NOTIFICATION
32-
echo ::set-env name=CI_SLACK_FAILURE_NOTIFICATION::$CI_SLACK_FAILURE_NOTIFICATION
3326
echo ::set-env name=COVERALLS_REPO_TOKEN::$COVERALLS_REPO_TOKEN
3427
- name: Set up Python ${{ matrix.python-version }}
3528
uses: actions/setup-python@v1
@@ -41,7 +34,7 @@ jobs:
4134
sudo apt-get update
4235
sudo apt-get --yes install dcraw libimage-exiftool-perl
4336
- name: macOS - Install Homebrew Dependencies
44-
if: matrix.os == 'macOS-10.14'
37+
if: matrix.os == 'macOS-latest'
4538
run: |
4639
brew install dcraw exiftool
4740
brew cask install adobe-dng-converter
@@ -51,14 +44,14 @@ jobs:
5144
mkdir -p ~/.config/matplotlib
5245
echo "backend: Agg" > ~/.config/matplotlib/matplotlibrc
5346
- name: macOS - Set up Matplotlib Backend
54-
if: matrix.os == 'macOS-10.14'
47+
if: matrix.os == 'macOS-latest'
5548
run: |
5649
mkdir -p ~/.matplotlib
5750
echo "backend: Agg" > ~/.matplotlib/matplotlibrc
5851
- name: Install Poetry
5952
run: |
6053
curl -L https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
61-
python get-poetry.py --preview
54+
python get-poetry.py --preview --version 1.0.0b3
6255
PATH=$HOME/.poetry/bin:$PATH
6356
echo ::set-env name=PATH::$PATH
6457
# - "rawpy" raises a "UnicodeEncodeError" exception on Python 2.7 during installation thus skipping the "optional" packages.
@@ -67,15 +60,13 @@ jobs:
6760
if: matrix.python-version == '2.7'
6861
run: |
6962
poetry install --extras "plotting"
70-
poetry env use $CI_PYTHON_VERSION
7163
source $(poetry env info -p)/bin/activate
7264
pip install pathlib
7365
python -c "import imageio;imageio.plugins.freeimage.download()"
7466
- name: Python 3.x - Install Package Dependencies
7567
if: matrix.python-version != '2.7'
7668
run: |
7769
poetry install --extras "optional plotting"
78-
poetry env use $CI_PYTHON_VERSION
7970
source $(poetry env info -p)/bin/activate
8071
python -c "import imageio;imageio.plugins.freeimage.download()"
8172
- name: Lint with flake8
@@ -91,11 +82,6 @@ jobs:
9182
run: |
9283
source $(poetry env info -p)/bin/activate
9384
if [ -z "$COVERALLS_REPO_TOKEN" ]; then echo \"COVERALLS_REPO_TOKEN\" secret is undefined!; else coveralls; fi
94-
- name: Notify Slack
95-
if: always()
96-
run: |
97-
if [ "${{ job.status }}" == "Success" ]; then CI_SLACK_NOTIFICATION="$CI_SLACK_SUCCESS_NOTIFICATION"; else CI_SLACK_NOTIFICATION="$CI_SLACK_FAILURE_NOTIFICATION"; fi
98-
if [ -z "$CI_SLACK_WEBHOOK" ]; then echo \"SLACK_WEBHOOK\" secret is undefined!; else curl -k -d "$CI_SLACK_NOTIFICATION" -X POST $CI_SLACK_WEBHOOK; fi
9985
windows-build:
10086
name: Windows Build
10187
strategy:
@@ -112,17 +98,10 @@ jobs:
11298
set CI_PYTHON_VERSION=${{ matrix.python-version }}
11399
set CI_PACKAGE=colour_hdri
114100
set CI_SHA=${{ github.sha }}
115-
set CI_SLACK_WEBHOOK=${{ secrets.SLACK_WEBHOOK }}
116-
set CI_SLACK_SUCCESS_NOTIFICATION="payload={\"attachments\": [{\"color\": \"#4CAF50\", \"author_name\": \"Python ${{ matrix.python-version }} build on ${{ matrix.os }}\", \"text\": \"Build for commit *"%CI_SHA:~0,7%"* succeeded!\", \"title\": \"${{ github.repository }}@${{ github.ref }}\", \"title_link\": \"https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks\", \"footer\": \"Triggered by ${{ github.actor }}\"}], \"username\":\"Github Actions @ ${{ github.repository }}\", \"channel\":\"#continuous-integration\", \"icon_url\":\"https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png\"}"
117-
set CI_SLACK_FAILURE_NOTIFICATION=%CI_SLACK_SUCCESS_NOTIFICATION:4CAF50=F44336%
118-
set CI_SLACK_FAILURE_NOTIFICATION=%CI_SLACK_FAILURE_NOTIFICATION:succeeded=failed%
119101
set COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }}
120102
echo ::set-env name=CI_PYTHON_VERSION::%CI_PYTHON_VERSION%
121103
echo ::set-env name=CI_PACKAGE::%CI_PACKAGE%
122104
echo ::set-env name=CI_SHA::%CI_SHA%
123-
echo ::set-env name=CI_SLACK_WEBHOOK::%CI_SLACK_WEBHOOK%
124-
echo ::set-env name=CI_SLACK_SUCCESS_NOTIFICATION::%CI_SLACK_SUCCESS_NOTIFICATION%
125-
echo ::set-env name=CI_SLACK_FAILURE_NOTIFICATION::%CI_SLACK_FAILURE_NOTIFICATION%
126105
echo ::set-env name=COVERALLS_REPO_TOKEN::%COVERALLS_REPO_TOKEN%
127106
shell: cmd
128107
- name: Set up Python ${{ matrix.python-version }}
@@ -131,8 +110,8 @@ jobs:
131110
python-version: ${{ matrix.python-version }}
132111
- name: Install Command Line Dependencies
133112
run: |
134-
curl -L https://sourceforge.net/projects/exiftool/files/exiftool-11.73.zip/download -o exiftool-11.73.zip
135-
powershell -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('exiftool-11.73.zip', 'exiftool'); }"
113+
curl -L https://www.sno.phy.queensu.ca/~phil/exiftool/exiftool-11.75.zip -o exiftool-11.75.zip
114+
powershell -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('exiftool-11.75.zip', 'exiftool'); }"
136115
copy %CD%\exiftool\"exiftool(-k).exe" %CD%\exiftool\exiftool.exe
137116
dir %CD%\exiftool\
138117
curl -L https://cdn.fastpictureviewer.com/bin/dcraw.zip?v=201605100 -o dcraw.zip
@@ -145,7 +124,7 @@ jobs:
145124
- name: Install Poetry
146125
run: |
147126
curl -L https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
148-
python get-poetry.py --preview
127+
python get-poetry.py --preview --version 1.0.0b3
149128
set PATH=%USERPROFILE%\.poetry\bin;%PATH%
150129
echo ::set-env name=PATH::%PATH%
151130
shell: cmd
@@ -185,9 +164,3 @@ jobs:
185164
call %CI_VIRTUAL_ENVIRONMENT%\scripts\activate
186165
IF "%COVERALLS_REPO_TOKEN%"=="" (echo "COVERALLS_REPO_TOKEN" secret is undefined!) ELSE (coveralls)
187166
shell: cmd
188-
- name: Notify Slack
189-
if: always()
190-
run: |
191-
IF "${{ job.status }}"=="Success" (set CI_SLACK_NOTIFICATION=%CI_SLACK_SUCCESS_NOTIFICATION%) ELSE (set CI_SLACK_NOTIFICATION=%CI_SLACK_FAILURE_NOTIFICATION%)
192-
IF "%CI_SLACK_WEBHOOK%"=="" (echo "SLACK_WEBHOOK" secret is undefined!) ELSE (curl -k -d %CI_SLACK_NOTIFICATION% -X POST %CI_SLACK_WEBHOOK%)
193-
shell: cmd

BIBLIOGRAPHY.bib

+65-49
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
@misc{AdobeSystems2015d,
2-
author = {{Adobe Systems}},
3-
title = {{Adobe DNG SDK 1.4}},
4-
url = {http://download.adobe.com/pub/adobe/dng/dng_sdk_1_4.zip},
5-
year = 2015,
6-
}
7-
@incollection{AdobeSystems2012d,
1+
@misc{AdobeSystems2012f,
82
abstract = {This publication and the information herein is
93
furnished AS IS, is subject to change without notice, and should
104
not be construed as a commitment by Adobe Systems Incorporated.
@@ -15,13 +9,11 @@ @incollection{AdobeSystems2012d
159
fitness for particular purposes, and noninfringement of third
1610
party rights.},
1711
author = {{Adobe Systems}},
18-
booktitle = {Digital Negative (DNG) Specification},
19-
pages = 80,
20-
title = {{Translating White Balance xy Coordinates to Camera
21-
Neutral Coordinates}},
12+
pages = {1--101},
13+
title = {{Digital Negative (DNG) Specification}},
2214
year = 2012,
2315
}
24-
@incollection{AdobeSystems2012e,
16+
@incollection{AdobeSystems2012d,
2517
abstract = {This publication and the information herein is
2618
furnished AS IS, is subject to change without notice, and should
2719
not be construed as a commitment by Adobe Systems Incorporated.
@@ -33,27 +25,12 @@ @incollection{AdobeSystems2012e
3325
party rights.},
3426
author = {{Adobe Systems}},
3527
booktitle = {Digital Negative (DNG) Specification},
36-
pages = {80--81},
37-
title = {{Translating Camera Neutral Coordinates to White
38-
Balance xy Coordinates}},
28+
pages = 80,
29+
title = {{Translating White Balance xy Coordinates to Camera
30+
Neutral Coordinates}},
3931
year = 2012,
4032
}
41-
@misc{AdobeSystems2015c,
42-
author = {{Adobe Systems}},
43-
title = {{Adobe DNG SDK 1.4 -
44-
dng_sdk_1_4/dng_sdk/source/dng_camera_profile.cpp -
45-
dng_camera_profile::IlluminantToTemperature}},
46-
url = {http://download.adobe.com/pub/adobe/dng/dng_sdk_1_4.zip},
47-
year = 2015,
48-
}
49-
@misc{AdobeSystems2015e,
50-
author = {{Adobe Systems}},
51-
title = {{Adobe DNG SDK 1.4 -
52-
dng_sdk_1_4/dng_sdk/source/dng_tag_values.h - LightSource tag}},
53-
url = {http://download.adobe.com/pub/adobe/dng/dng_sdk_1_4.zip},
54-
year = 2015,
55-
}
56-
@misc{AdobeSystems2012f,
33+
@incollection{AdobeSystems2012g,
5734
abstract = {This publication and the information herein is
5835
furnished AS IS, is subject to change without notice, and should
5936
not be construed as a commitment by Adobe Systems Incorporated.
@@ -64,11 +41,18 @@ @misc{AdobeSystems2012f
6441
fitness for particular purposes, and noninfringement of third
6542
party rights.},
6643
author = {{Adobe Systems}},
67-
pages = {1--101},
68-
title = {{Digital Negative (DNG) Specification}},
44+
booktitle = {Digital Negative (DNG) Specification},
45+
pages = 81,
46+
title = {{Camera to XYZ (D50) Transform}},
6947
year = 2012,
7048
}
71-
@incollection{AdobeSystems2012g,
49+
@misc{AdobeSystems2015d,
50+
author = {{Adobe Systems}},
51+
title = {{Adobe DNG SDK 1.4}},
52+
url = {http://download.adobe.com/pub/adobe/dng/dng_sdk_1_4.zip},
53+
year = 2015,
54+
}
55+
@incollection{AdobeSystems2012e,
7256
abstract = {This publication and the information herein is
7357
furnished AS IS, is subject to change without notice, and should
7458
not be construed as a commitment by Adobe Systems Incorporated.
@@ -80,29 +64,45 @@ @incollection{AdobeSystems2012g
8064
party rights.},
8165
author = {{Adobe Systems}},
8266
booktitle = {Digital Negative (DNG) Specification},
83-
pages = 81,
84-
title = {{Camera to XYZ (D50) Transform}},
67+
pages = {80--81},
68+
title = {{Translating Camera Neutral Coordinates to White
69+
Balance xy Coordinates}},
8570
year = 2012,
8671
}
87-
@book{Banterle2011n,
72+
@misc{AdobeSystems2015e,
73+
author = {{Adobe Systems}},
74+
title = {{Adobe DNG SDK 1.4 -
75+
dng_sdk_1_4/dng_sdk/source/dng_tag_values.h - LightSource tag}},
76+
url = {http://download.adobe.com/pub/adobe/dng/dng_sdk_1_4.zip},
77+
year = 2015,
78+
}
79+
@misc{AdobeSystems2015c,
80+
author = {{Adobe Systems}},
81+
title = {{Adobe DNG SDK 1.4 -
82+
dng_sdk_1_4/dng_sdk/source/dng_camera_profile.cpp -
83+
dng_camera_profile::IlluminantToTemperature}},
84+
url = {http://download.adobe.com/pub/adobe/dng/dng_sdk_1_4.zip},
85+
year = 2015,
86+
}
87+
@incollection{Banterle2011k,
8888
author = {Banterle, Francesco and Artusi, Alessandro and
8989
Debattista, Kurt and Chalmers, Alan},
9090
booktitle = {Advanced High Dynamic Range Imaging},
9191
isbn = {978-1568817194},
92-
pages = {12--17},
92+
pages = {38--41},
9393
publisher = {A K Peters/CRC Press},
94-
title = {{2.1.1 Generating HDR Content by Combining Multiple
95-
Exposures}},
94+
title = {{3.2.1 Simple Mapping Methods}},
9695
year = 2011,
9796
}
98-
@incollection{Banterle2011k,
97+
@book{Banterle2011n,
9998
author = {Banterle, Francesco and Artusi, Alessandro and
10099
Debattista, Kurt and Chalmers, Alan},
101100
booktitle = {Advanced High Dynamic Range Imaging},
102101
isbn = {978-1568817194},
103-
pages = {38--41},
102+
pages = {12--17},
104103
publisher = {A K Peters/CRC Press},
105-
title = {{3.2.1 Simple Mapping Methods}},
104+
title = {{2.1.1 Generating HDR Content by Combining Multiple
105+
Exposures}},
106106
year = 2011,
107107
}
108108
@misc{Banterle2014a,
@@ -193,20 +193,36 @@ @article{Grossberg2003g
193193
volume = 25,
194194
year = 2003,
195195
}
196-
@misc{Habble2010e,
196+
@misc{Habble2010d,
197197
author = {Habble, John},
198-
title = {{Uncharted 2: HDR Lighting}},
199-
url = {http://www.slideshare.net/ozlael/hable-john-uncharted2-hdr-lighting},
198+
title = {{Filmic Tonemapping Operators}},
199+
url = {http://filmicgames.com/archives/75},
200200
urldate = {2015-03-15},
201201
year = 2010,
202202
}
203-
@misc{Habble2010d,
203+
@misc{Habble2010e,
204204
author = {Habble, John},
205-
title = {{Filmic Tonemapping Operators}},
206-
url = {http://filmicgames.com/archives/75},
205+
title = {{Uncharted 2: HDR Lighting}},
206+
url = {http://www.slideshare.net/ozlael/hable-john-uncharted2-hdr-lighting},
207207
urldate = {2015-03-15},
208208
year = 2010,
209209
}
210+
@misc{ISO2006,
211+
author = {ISO},
212+
title = {{INTERNATIONAL STANDARD ISO12232-2006 - Photography
213+
- Digital still cameras - Determination of exposure index, ISO
214+
speed ratings, standard output sensitivity, and recommended
215+
exposure index}},
216+
year = 2006,
217+
}
218+
@article{Lagarde2014,
219+
author = {Lagarde, S{\'{e}}bastian and de Rousiers, Charles},
220+
journal = {Siggraph 2014},
221+
keywords = {frostbite,pbr,physically based rendering},
222+
pages = 119,
223+
title = {{Moving Frostbite to Physically Based Rendering 3.0}},
224+
year = 2014,
225+
}
210226
@misc{Lagarde2016b,
211227
author = {Lagarde, Sebastien and Lachambre, Sebastien and
212228
Jover, Cyril},

CONTRIBUTORS.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ About
1212
-----
1313

1414
| **Colour - HDRI** by Colour Developers
15-
| Copyright © 2015-2019 – Colour Developers – `colour-science@googlegroups.com <colour-science@googlegroups.com>`__
15+
| Copyright © 2015-2020 – Colour Developers – `colour-developers@colour-science.org <colour-developers@colour-science.org>`__
1616
| This software is released under terms of New BSD License: https://opensource.org/licenses/BSD-3-Clause
1717
| `https://github.com/colour-science/colour-hdri <https://github.com/colour-science/colour-hdri>`__

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015-2019, Colour Developers
1+
Copyright (c) 2015-2020, Colour Developers
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Colour - HDRI
55
66
|actions| |coveralls| |codacy| |version|
77

8-
.. |actions| image:: https://github.com/colour-science/colour-hdri/workflows/Continuous%20Integration/badge.svg
8+
.. |actions| image:: https://img.shields.io/github/workflow/status/colour-science/colour-hdri/Continuous%20Integration?label=actions&logo=github&style=flat-square
99
:target: https://github.com/colour-science/colour-hdri/actions
1010
:alt: Develop Build Status
1111
.. |coveralls| image:: http://img.shields.io/coveralls/colour-science/colour-hdri/develop.svg?style=flat-square
@@ -46,6 +46,7 @@ The following features are available:
4646
- Global Tonemapping Operators
4747
- Adobe DNG SDK Colour Processing
4848
- Absolute Luminance Calibration
49+
- Digital Still Camera (DSC) Exposure Model
4950
- Raw Processing Helpers
5051

5152
Installation
@@ -137,6 +138,6 @@ About
137138
-----
138139

139140
| **Colour - HDRI** by Colour Developers
140-
| Copyright © 2015-2019 – Colour Developers – `colour-science@googlegroups.com <colour-science@googlegroups.com>`__
141+
| Copyright © 2015-2020 – Colour Developers – `colour-developers@colour-science.org <colour-developers@colour-science.org>`__
141142
| This software is released under terms of New BSD License: https://opensource.org/licenses/BSD-3-Clause
142143
| `https://github.com/colour-science/colour-hdri <https://github.com/colour-science/colour-hdri>`__

TODO.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TODO
66

77
- colour_hdri/__init__.py
88

9-
- Line 146 : # TODO: Remove legacy printing support when deemed appropriate.
9+
- Line 158 : # TODO: Remove legacy printing support when deemed appropriate.
1010

1111

1212
- colour_hdri/calibration/debevec1997.py
@@ -22,6 +22,6 @@ About
2222
-----
2323

2424
| **Colour - HDRI** by Colour Developers
25-
| Copyright © 2015-2019 – Colour Developers – `colour-science@googlegroups.com <colour-science@googlegroups.com>`_
25+
| Copyright © 2015-2020 – Colour Developers – `colour-developers@colour-science.org <colour-developers@colour-science.org>`__
2626
| This software is released under terms of New BSD License: https://opensource.org/licenses/BSD-3-Clause
27-
| `https://github.com/colour-science/colour-hdri <https://github.com/colour-science/colour-hdri>`_
27+
| `https://github.com/colour-science/colour-hdri <https://github.com/colour-science/colour-hdri>`__

0 commit comments

Comments
 (0)