|
@@ -1,15 +1,15 @@
|
1
|
1
|
# Resolution
|
2
|
2
|
|
3
|
|
-A `Resolution` is a setting defined by a string. It is mapped to a size measured in pixels according to special rules. You may use it, for example, to change the resolution of a video captured by a webcam, to adjust the resolution of a video when it is processed by a tracker, or to set the resolution of the virtual scene when it is rendered.
|
|
3
|
+A `Resolution` is a setting defined by a string. It is mapped to a size measured in pixels according to special rules. You may use it, for example, to change the resolution of a video captured by a webcam, to adjust the resolution of a video when it is processed by a tracker, or to set the rendering resolution of a virtual scene.
|
4
|
4
|
|
5
|
5
|
The table below shows examples of how resolution strings are converted to pixels:
|
6
|
6
|
|
7
|
|
-| Resolution | 16:9 landscape | 16:10 landscape | 4:3 landscape | Notes |
|
8
|
|
-| ---------- | -------------- | --------------- | ------------- | ----- |
|
|
7
|
+| Resolution | 16:9 | 16:10 | 4:3 | Notes |
|
|
8
|
+| ---------- | ---- | ----- | --- | ----- |
|
9
|
9
|
| `"xs"` | 214x120 | 192x120 | 160x120 | |
|
10
|
|
-| `"xs+"` | 284x160 | 256x160 | 214x160 | |
|
11
|
|
-| `"sm"` | 356x200 | 320x200 | 266x200 | |
|
12
|
|
-| `"sm+"` | 426x240 | 384x240 | 320x240 | 240p |
|
|
10
|
+| `"xs+"` | 256x144 | 230x144 | 192x144 | 144p |
|
|
11
|
+| `"sm"` | 426x240 | 384x240 | 320x240 | 240p |
|
|
12
|
+| `"sm+"` | 512x288 | 460x288 | 384x288 | |
|
13
|
13
|
| `"md"` | 568x320 | 512x320 | 426x320 | |
|
14
|
14
|
| `"md+"` | 640x360 | 576x360 | 480x360 | 360p |
|
15
|
15
|
| `"lg"` | 854x480 | 768x480 | 640x480 | 480p |
|
|
@@ -17,4 +17,4 @@ The table below shows examples of how resolution strings are converted to pixels
|
17
|
17
|
| `"xl"` | 1280x720 | 1152x720 | 960x720 | 720p |
|
18
|
18
|
| `"xl+"` | 1366x768 | 1228x768 | 1024x768 | |
|
19
|
19
|
| `"xxl"` | 1600x900 | 1440x900 | 1200x900 | |
|
20
|
|
-| `"xxl+"` | 1706x960 | 1536x960 | 1280x960 | 960p |
|
|
20
|
+| `"xxl+"` | 1706x960 | 1536x960 | 1280x960 | |
|