1 | |
---|
2 | ######################################### |
---|
3 | ### |
---|
4 | ### encoding |
---|
5 | ### |
---|
6 | ######################################### |
---|
7 | |
---|
8 | An encoder configuration file can be generated by |
---|
9 | concatenating three of the given configuration files, |
---|
10 | one for the base configuration, one for sequence |
---|
11 | parameters, and one for QP settings. |
---|
12 | |
---|
13 | For example, in order to obtain the encoder configuration |
---|
14 | file for coding the sequence Balloons with 3 views including |
---|
15 | depth and a base QP of 30, the encoder configuration file |
---|
16 | can be created under Linux using: |
---|
17 | |
---|
18 | cat baseCfg_3view+depth.cfg > encoder.cfg |
---|
19 | cat seqCfg_Balloons.cfg >> encoder.cfg |
---|
20 | cat qpCfg_QP30.cfg >> encoder.cfg |
---|
21 | |
---|
22 | For Windows, the command "cat" can by replaced with "type". |
---|
23 | As another example (for Windows), the encoder configuration |
---|
24 | file for coding the sequence Kendo with 2 views without |
---|
25 | depth and a base QP of 40, the encoder configuration file |
---|
26 | can be created using: |
---|
27 | |
---|
28 | type baseCfg_2view.cfg > encoder.cfg |
---|
29 | type seqCfg_Kendo.cfg >> encoder.cfg |
---|
30 | type qpCfg_QP40.cfg >> encoder.cfg |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | ######################################### |
---|
37 | ### |
---|
38 | ### rendering |
---|
39 | ### |
---|
40 | ######################################### |
---|
41 | |
---|
42 | The folder contain four examples for renderer configuration files: |
---|
43 | |
---|
44 | rendering_2view_orgData.cfg : 2 view case with original data |
---|
45 | rendering_3view_orgData.cfg : 3 view case with original data |
---|
46 | rendering_2view_decData.cfg : 2 view case with decoded data |
---|
47 | rendering_3view_decData.cfg : 3 view case with decoded data |
---|
48 | |
---|
49 | The following parameters in these configuraton files have to be |
---|
50 | replaced with the actual parameters: |
---|
51 | |
---|
52 | FramesToBeRendered : number of frames |
---|
53 | |
---|
54 | SourceWidth : frame width |
---|
55 | |
---|
56 | SourceHeight : frame height |
---|
57 | |
---|
58 | BaseViewCameraNumbers : base view camera numbers |
---|
59 | |
---|
60 | |
---|
61 | |
---|