-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColorChecker.pov
61 lines (50 loc) · 1.57 KB
/
ColorChecker.pov
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//================================================================================
// POV-Ray spectral rendering example
//
// This renders the GretagMacbeth(tm) ColorChecker Color Rendition Chart.
// Like the old one I do actually own.
//
// Useful as reference for the usage of the diffuse colors available within the
// "spectral-materials" include file.
//
// The DeltaE (for the L*a*b values using CIE 1994 graphic art and CIE 2000) of the
// spectral render compared to the reference values from the GretagMacbeth data
// sheet is less than 1.0 for all color patches, so the accuracy for diffuse
// reflectance of the spectral renderer rig is really good.
//
// - Ive, September 2012
//
//================================================================================
//
// suggested command line:
// +W800 +H600 +A0.1 +FE
//
// spectral calculation command line:
// +KI1 +KF36 +KFI38 +KFF73
//
// settings for the spectral composer:
// FName = "ColorChecker";
// Exposure = 1.0;
// Luminance = 1.0;
// Exponent = 1.0;
// Saturation = 1.0;
// Whitepoint = 6504;
//
//================================================================================
#version 3.7;
global_settings {
assumed_gamma 1
}
#include "spectral.inc"
#include "ccc.inc"
camera {
location <0, 0, -60>
look_at <0, 0, 0>
right x*image_width/image_height
angle 30
}
light_source {<0, 0, -100>,
SpectralEmission(E_D65)
}
object {ColorChecker rotate -x*90}
//================================================================================