forked from AcademySoftwareFoundation/openexr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate chart-to-png conversion, move synonyms to footnotes
Signed-off-by: Peter Hillman <[email protected]>
- Loading branch information
1 parent
707fbf0
commit 9e5ae0e
Showing
5 changed files
with
73 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,6 @@ | |
'sphinx.ext.autodoc', | ||
'sphinx.ext.todo', | ||
'sphinx.ext.viewcode', | ||
'sphinx.ext.graphviz', | ||
'breathe', | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// | ||
// this is a graphviz dot file to create images/imageprocessing.png used on the SceneLinear.rst page | ||
// This is not built automatically. | ||
// To update: | ||
// dot -Tpng imageprocessing.dot > image/imageprocessing.png | ||
// the 'graphviz' package may be required. Remember to commit the updated images/imageprocessing.png image | ||
// | ||
digraph "color processing chain" { | ||
sensor [ label="Sensor"]; | ||
adc [label = "Analog to digital"]; | ||
lin [label = "Linearization"]; | ||
raw [label = "Camera Raw"]; | ||
bayer [label = "Demosaicking"]; | ||
wb [label = "White balance"]; | ||
exr [label = "OpenEXR file"]; | ||
tone [label = "Tone mapping"]; | ||
eotf [label = "Apply EOTF"]; | ||
jpeg [label = "JPEG"]; | ||
display [label = "Output display"]; | ||
|
||
sensor -> adc -> lin [weight=10]; | ||
{ rank=same adc raw;} | ||
adc -> raw; | ||
raw -> lin; | ||
subgraph cluster_input | ||
{ | ||
label="Input referred linear"; | ||
labeljust="r"; | ||
graph[style=dotted]; | ||
lin -> bayer -> wb; | ||
{ rank=same wb exr} | ||
wb -> exr; | ||
} | ||
wb -> tone [weight=10]; | ||
exr ->tone; | ||
subgraph cluster_output | ||
{ | ||
label="output referred"; | ||
labeljust="r"; | ||
graph[style=dotted]; | ||
tone -> eotf [weight=10]; | ||
{ rank=same eotf jpeg;} | ||
eotf->jpeg; | ||
} | ||
jpeg->display; | ||
eotf->display [weight=10]; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.