source: 3DVCSoftware/branches/HTM-5.1-dev0-MERL-Mediatek/CommonTestConditionsCfgs/_README.txt @ 285

Last change on this file since 285 was 18, checked in by hschwarz, 13 years ago

added configuration files

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