Skip to content

Commit a2bec9b

Browse files
committed
deploy: 54d1afc
1 parent 9cd5cf1 commit a2bec9b

File tree

9 files changed

+43
-43
lines changed

9 files changed

+43
-43
lines changed

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,7 +1658,7 @@ <h4 id="units-44" tabindex="-1"><a class="anchor" href="#units-44" aria-hidden="
16581658
<h4 id="sampling-44" tabindex="-1"><a class="anchor" href="#sampling-44" aria-hidden="true"><span class="octicon octicon-link"></span></a> Sampling</h4>
16591659
<p>Regular</p>
16601660
<h4 id="constraints-44" tabindex="-1"><a class="anchor" href="#constraints-44" aria-hidden="true"><span class="octicon octicon-link"></span></a> Constraints</h4>
1661-
<p>The parameter shall be a non-negative real number.</p>
1661+
<p>The parameter shall be a real number greater than 0.</p>
16621662
<h3 id="pinholefocallength" tabindex="-1"><a class="anchor" href="#pinholefocallength" aria-hidden="true"><span class="octicon octicon-link"></span></a> <code>pinholeFocalLength</code></h3>
16631663
<h4 id="description-45" tabindex="-1"><a class="anchor" href="#description-45" aria-hidden="true"><span class="octicon octicon-link"></span></a> Description</h4>
16641664
<p>Distance between the pinhole and the image plane in the simple CGI pinhole camera model.</p>
@@ -1667,7 +1667,7 @@ <h4 id="units-45" tabindex="-1"><a class="anchor" href="#units-45" aria-hidden="
16671667
<h4 id="sampling-45" tabindex="-1"><a class="anchor" href="#sampling-45" aria-hidden="true"><span class="octicon octicon-link"></span></a> Sampling</h4>
16681668
<p>Regular</p>
16691669
<h4 id="constraints-45" tabindex="-1"><a class="anchor" href="#constraints-45" aria-hidden="true"><span class="octicon octicon-link"></span></a> Constraints</h4>
1670-
<p>The parameter shall be a non-negative real number.</p>
1670+
<p>The parameter shall be a real number greater than 0.</p>
16711671
<h3 id="focusdistance" tabindex="-1"><a class="anchor" href="#focusdistance" aria-hidden="true"><span class="octicon octicon-link"></span></a> <code>focusDistance</code></h3>
16721672
<h4 id="description-46" tabindex="-1"><a class="anchor" href="#description-46" aria-hidden="true"><span class="octicon octicon-link"></span></a> Description</h4>
16731673
<p>Focus distance/position of the lens</p>
@@ -1707,7 +1707,7 @@ <h4 id="units-49" tabindex="-1"><a class="anchor" href="#units-49" aria-hidden="
17071707
<h4 id="sampling-49" tabindex="-1"><a class="anchor" href="#sampling-49" aria-hidden="true"><span class="octicon octicon-link"></span></a> Sampling</h4>
17081708
<p>Regular</p>
17091709
<h4 id="constraints-49" tabindex="-1"><a class="anchor" href="#constraints-49" aria-hidden="true"><span class="octicon octicon-link"></span></a> Constraints</h4>
1710-
<p>The parameter shall be a non-negative real number.</p>
1710+
<p>The parameter shall be a real number greater than 0.</p>
17111711
<h3 id="protocol" tabindex="-1"><a class="anchor" href="#protocol" aria-hidden="true"><span class="octicon octicon-link"></span></a> <code>protocol</code></h3>
17121712
<h4 id="description-50" tabindex="-1"><a class="anchor" href="#description-50" aria-hidden="true"><span class="octicon octicon-link"></span></a> Description</h4>
17131713
<p>Name of the protocol in which the sample is being employed, and
@@ -2808,12 +2808,12 @@ <h2 id="clip-json-schema" tabindex="-1"><a class="anchor" href="#clip-json-schem
28082808
},
28092809
"fStop": {
28102810
"type": "number",
2811-
"minimum": 0.0,
2811+
"exclusiveMinimum": 0.0,
28122812
"description": "The linear f-number of the lens, equal to the focal length divided\nby the diameter of the entrance pupil.\n"
28132813
},
28142814
"pinholeFocalLength": {
28152815
"type": "number",
2816-
"minimum": 0.0,
2816+
"exclusiveMinimum": 0.0,
28172817
"description": "Distance between the pinhole and the image plane in the simple CGI pinhole camera model.",
28182818
"units": "millimeter"
28192819
},
@@ -2882,7 +2882,7 @@ <h2 id="clip-json-schema" tabindex="-1"><a class="anchor" href="#clip-json-schem
28822882
},
28832883
"tStop": {
28842884
"type": "number",
2885-
"minimum": 0.0,
2885+
"exclusiveMinimum": 0.0,
28862886
"description": "Linear t-number of the lens, equal to the F-number of the lens\ndivided by the square root of the transmittance of the lens.\n"
28872887
}
28882888
},

index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ Regular
10071007

10081008
#### Constraints
10091009

1010-
The parameter shall be a non-negative real number.
1010+
The parameter shall be a real number greater than 0.
10111011

10121012
### `pinholeFocalLength`
10131013

@@ -1025,7 +1025,7 @@ Regular
10251025

10261026
#### Constraints
10271027

1028-
The parameter shall be a non-negative real number.
1028+
The parameter shall be a real number greater than 0.
10291029

10301030
### `focusDistance`
10311031

@@ -1106,7 +1106,7 @@ Regular
11061106

11071107
#### Constraints
11081108

1109-
The parameter shall be a non-negative real number.
1109+
The parameter shall be a real number greater than 0.
11101110

11111111
### `protocol`
11121112

@@ -1986,12 +1986,12 @@ The following table indicates the camera parameters supported by each of the rea
19861986
},
19871987
"fStop": {
19881988
"type": "number",
1989-
"minimum": 0.0,
1989+
"exclusiveMinimum": 0.0,
19901990
"description": "The linear f-number of the lens, equal to the focal length divided\nby the diameter of the entrance pupil.\n"
19911991
},
19921992
"pinholeFocalLength": {
19931993
"type": "number",
1994-
"minimum": 0.0,
1994+
"exclusiveMinimum": 0.0,
19951995
"description": "Distance between the pinhole and the image plane in the simple CGI pinhole camera model.",
19961996
"units": "millimeter"
19971997
},
@@ -2060,7 +2060,7 @@ The following table indicates the camera parameters supported by each of the rea
20602060
},
20612061
"tStop": {
20622062
"type": "number",
2063-
"minimum": 0.0,
2063+
"exclusiveMinimum": 0.0,
20642064
"description": "Linear t-number of the lens, equal to the F-number of the lens\ndivided by the square root of the transmittance of the lens.\n"
20652065
}
20662066
},

index.pdf

12 Bytes
Binary file not shown.

opentrackio/examples/complete_dynamic_example.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@
129129
1
130130
]
131131
},
132-
"sampleId": "urn:uuid:26139df0-c929-475b-9867-ee0598c4b510",
133-
"sourceId": "urn:uuid:554fdfde-9f21-4643-8536-86e7e0a67fd6",
132+
"sampleId": "urn:uuid:b05c01fd-2d80-4b9b-b2f7-98df69a35b9c",
133+
"sourceId": "urn:uuid:49396427-3b52-4f55-be04-2ae6934e15db",
134134
"sourceNumber": 1,
135135
"relatedSampleIds": [
136-
"urn:uuid:c06b8ba0-e7c4-48dd-ac08-34a1197040c5",
137-
"urn:uuid:5513410c-d2fc-4527-8727-3f6f7cb1759a"
136+
"urn:uuid:4d02c3a8-c8c9-4f5c-89a1-eb4a45cf8db7",
137+
"urn:uuid:653407eb-ad13-417a-bcca-6fc0303684e1"
138138
],
139139
"globalStage": {
140140
"E": 100.0,

opentrackio/examples/complete_static_example.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"denom": 1
2828
},
2929
"isoSpeed": 4000,
30-
"fdlLink": "urn:uuid:871b5637-feb8-496a-bbdb-fde48adabeba",
30+
"fdlLink": "urn:uuid:1f2accad-1fe3-420b-a24a-b167f69420b6",
3131
"shutterAngle": 45.0
3232
},
3333
"lens": {
@@ -176,12 +176,12 @@
176176
1
177177
]
178178
},
179-
"sampleId": "urn:uuid:13ffa9e0-6879-4426-9025-b838254d26a8",
180-
"sourceId": "urn:uuid:d5d6b3b5-a7df-4749-8e98-6ee8d85dc8bf",
179+
"sampleId": "urn:uuid:9bab35c7-fdfb-41a3-8ca8-cb0cedf31398",
180+
"sourceId": "urn:uuid:a269c548-c084-4929-a066-98909770b855",
181181
"sourceNumber": 1,
182182
"relatedSampleIds": [
183-
"urn:uuid:b3bb4173-ca2f-42fc-83a7-b19173263524",
184-
"urn:uuid:77dcb0fd-c25f-415b-93ca-9cd183f49daf"
183+
"urn:uuid:091507e6-d6b1-49bf-ae34-059685516c5c",
184+
"urn:uuid:fcb9bf16-cbc6-4c3a-b667-4797dc51ab19"
185185
],
186186
"globalStage": {
187187
"E": 100.0,

opentrackio/examples/recommended_dynamic_example.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
1
5959
]
6060
},
61-
"sampleId": "urn:uuid:9d9c2b2b-3c53-4826-b46c-f04508a9c57e",
62-
"sourceId": "urn:uuid:56d4632e-2b6c-4368-9252-3723c8894612",
61+
"sampleId": "urn:uuid:d6b914ee-11f6-4f52-b6ae-77c318a59cf7",
62+
"sourceId": "urn:uuid:93de4617-9e73-4456-85da-6f837ce4ad67",
6363
"sourceNumber": 1,
6464
"transforms": [
6565
{

opentrackio/examples/recommended_static_example.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
1
7272
]
7373
},
74-
"sampleId": "urn:uuid:3909211c-2d28-43d7-8dc4-277536bf3bf9",
75-
"sourceId": "urn:uuid:be640b94-914c-48cc-9a90-7f70613f7e54",
74+
"sampleId": "urn:uuid:9a1b2445-4083-4bf4-9d0a-7b40ed7cf517",
75+
"sourceId": "urn:uuid:f15597cb-3480-4dac-bc80-6c51db46a33b",
7676
"sourceNumber": 1,
7777
"transforms": [
7878
{

opentrackio/index.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ <h2 id="recommended">OpenTrackIO sample</h2>
110110
1
111111
]
112112
},
113-
&#34;sampleId&#34;: &#34;urn:uuid:9d9c2b2b-3c53-4826-b46c-f04508a9c57e&#34;,
114-
&#34;sourceId&#34;: &#34;urn:uuid:56d4632e-2b6c-4368-9252-3723c8894612&#34;,
113+
&#34;sampleId&#34;: &#34;urn:uuid:d6b914ee-11f6-4f52-b6ae-77c318a59cf7&#34;,
114+
&#34;sourceId&#34;: &#34;urn:uuid:93de4617-9e73-4456-85da-6f837ce4ad67&#34;,
115115
&#34;sourceNumber&#34;: 1,
116116
&#34;transforms&#34;: [
117117
{
@@ -209,8 +209,8 @@ <h2>Providing additional static data</h2>
209209
1
210210
]
211211
},
212-
&#34;sampleId&#34;: &#34;urn:uuid:3909211c-2d28-43d7-8dc4-277536bf3bf9&#34;,
213-
&#34;sourceId&#34;: &#34;urn:uuid:be640b94-914c-48cc-9a90-7f70613f7e54&#34;,
212+
&#34;sampleId&#34;: &#34;urn:uuid:9a1b2445-4083-4bf4-9d0a-7b40ed7cf517&#34;,
213+
&#34;sourceId&#34;: &#34;urn:uuid:f15597cb-3480-4dac-bc80-6c51db46a33b&#34;,
214214
&#34;sourceNumber&#34;: 1,
215215
&#34;transforms&#34;: [
216216
{
@@ -264,7 +264,7 @@ <h2>Complete sample</h2>
264264
&#34;denom&#34;: 1
265265
},
266266
&#34;isoSpeed&#34;: 4000,
267-
&#34;fdlLink&#34;: &#34;urn:uuid:871b5637-feb8-496a-bbdb-fde48adabeba&#34;,
267+
&#34;fdlLink&#34;: &#34;urn:uuid:1f2accad-1fe3-420b-a24a-b167f69420b6&#34;,
268268
&#34;shutterAngle&#34;: 45.0
269269
},
270270
&#34;lens&#34;: {
@@ -413,12 +413,12 @@ <h2>Complete sample</h2>
413413
1
414414
]
415415
},
416-
&#34;sampleId&#34;: &#34;urn:uuid:13ffa9e0-6879-4426-9025-b838254d26a8&#34;,
417-
&#34;sourceId&#34;: &#34;urn:uuid:d5d6b3b5-a7df-4749-8e98-6ee8d85dc8bf&#34;,
416+
&#34;sampleId&#34;: &#34;urn:uuid:9bab35c7-fdfb-41a3-8ca8-cb0cedf31398&#34;,
417+
&#34;sourceId&#34;: &#34;urn:uuid:a269c548-c084-4929-a066-98909770b855&#34;,
418418
&#34;sourceNumber&#34;: 1,
419419
&#34;relatedSampleIds&#34;: [
420-
&#34;urn:uuid:b3bb4173-ca2f-42fc-83a7-b19173263524&#34;,
421-
&#34;urn:uuid:77dcb0fd-c25f-415b-93ca-9cd183f49daf&#34;
420+
&#34;urn:uuid:091507e6-d6b1-49bf-ae34-059685516c5c&#34;,
421+
&#34;urn:uuid:fcb9bf16-cbc6-4c3a-b667-4797dc51ab19&#34;
422422
],
423423
&#34;globalStage&#34;: {
424424
&#34;E&#34;: 100.0,
@@ -898,9 +898,9 @@ <h2>Description of all fields</h2>
898898

899899
<tr><td>fStop</td><td>lens</td><td>Regular</td><td>The linear f-number of the lens, equal to the focal length divided
900900
by the diameter of the entrance pupil.
901-
</td><td>None</td><td>The parameter shall be a non-negative real number.</td></tr>
901+
</td><td>None</td><td>The parameter shall be a real number greater than 0.</td></tr>
902902

903-
<tr><td>pinholeFocalLength</td><td>lens</td><td>Regular</td><td>Distance between the pinhole and the image plane in the simple CGI pinhole camera model.</td><td>millimeter</td><td>The parameter shall be a non-negative real number.</td></tr>
903+
<tr><td>pinholeFocalLength</td><td>lens</td><td>Regular</td><td>Distance between the pinhole and the image plane in the simple CGI pinhole camera model.</td><td>millimeter</td><td>The parameter shall be a real number greater than 0.</td></tr>
904904

905905
<tr><td>focusDistance</td><td>lens</td><td>Regular</td><td>Focus distance/position of the lens</td><td>meter</td><td>The parameter shall be a real number greater than 0.</td></tr>
906906

@@ -917,7 +917,7 @@ <h2>Description of all fields</h2>
917917

918918
<tr><td>tStop</td><td>lens</td><td>Regular</td><td>Linear t-number of the lens, equal to the F-number of the lens
919919
divided by the square root of the transmittance of the lens.
920-
</td><td>None</td><td>The parameter shall be a non-negative real number.</td></tr>
920+
</td><td>None</td><td>The parameter shall be a real number greater than 0.</td></tr>
921921

922922
<tr><td>protocol</td><td>None</td><td>Regular</td><td>Name of the protocol in which the sample is being employed, and
923923
version of that protocol
@@ -1679,12 +1679,12 @@ <h2 id="schema">JSON schema</h2>
16791679
},
16801680
&#34;fStop&#34;: {
16811681
&#34;type&#34;: &#34;number&#34;,
1682-
&#34;minimum&#34;: 0.0,
1682+
&#34;exclusiveMinimum&#34;: 0.0,
16831683
&#34;description&#34;: &#34;The linear f-number of the lens, equal to the focal length divided\nby the diameter of the entrance pupil.\n&#34;
16841684
},
16851685
&#34;pinholeFocalLength&#34;: {
16861686
&#34;type&#34;: &#34;number&#34;,
1687-
&#34;minimum&#34;: 0.0,
1687+
&#34;exclusiveMinimum&#34;: 0.0,
16881688
&#34;description&#34;: &#34;Distance between the pinhole and the image plane in the simple CGI pinhole camera model.&#34;,
16891689
&#34;units&#34;: &#34;millimeter&#34;
16901690
},
@@ -1753,7 +1753,7 @@ <h2 id="schema">JSON schema</h2>
17531753
},
17541754
&#34;tStop&#34;: {
17551755
&#34;type&#34;: &#34;number&#34;,
1756-
&#34;minimum&#34;: 0.0,
1756+
&#34;exclusiveMinimum&#34;: 0.0,
17571757
&#34;description&#34;: &#34;Linear t-number of the lens, equal to the F-number of the lens\ndivided by the square root of the transmittance of the lens.\n&#34;
17581758
}
17591759
},

opentrackio/schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,12 +694,12 @@
694694
},
695695
"fStop": {
696696
"type": "number",
697-
"minimum": 0.0,
697+
"exclusiveMinimum": 0.0,
698698
"description": "The linear f-number of the lens, equal to the focal length divided\nby the diameter of the entrance pupil.\n"
699699
},
700700
"pinholeFocalLength": {
701701
"type": "number",
702-
"minimum": 0.0,
702+
"exclusiveMinimum": 0.0,
703703
"description": "Distance between the pinhole and the image plane in the simple CGI pinhole camera model.",
704704
"units": "millimeter"
705705
},
@@ -768,7 +768,7 @@
768768
},
769769
"tStop": {
770770
"type": "number",
771-
"minimum": 0.0,
771+
"exclusiveMinimum": 0.0,
772772
"description": "Linear t-number of the lens, equal to the F-number of the lens\ndivided by the square root of the transmittance of the lens.\n"
773773
}
774774
},

0 commit comments

Comments
 (0)