Changeset 146 in 3DVCSoftware


Ignore:
Timestamp:
22 Oct 2012, 14:26:21 (12 years ago)
Author:
tech
Message:

Clean up:

  • set WVSO as default
  • removed printf line
  • removed tabs from config-files
Location:
branches/HTM-4.1-dev2-LG
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-4.1-dev2-LG/CommonTestConditionsCfgs/baseCfg_2view+depth.cfg

    r145 r146  
    205205#========== view synthesis optimization (VSO) ==========
    206206VSOConfig                 : [cx0 B(cc1) I(s0.25 s0.5 s0.75)][cx1 B(oo0) I(s0.25 s0.5 s0.75)]  # VSO configuration string
    207 WVSO                      : 1                                                                 # use of WVSO (Depth distortion metric with a weighted depth fidelity term)
    208 VSOWeight                 : 10                                                                # weight of VSO ( in SAD case, cf. squared in SSE case )
    209 VSDWeight                 : 1                                                                 # weight of VSD ( in SAD case, cf. squared in SSE case )
    210 DWeight                   : 1                                                                 # weight of depth distortion itself ( in SAD case, cf. squared in SSE case )
     207WVSO                      : 1                                    # use of WVSO (Depth distortion metric with a weighted depth fidelity term)
     208VSOWeight                 : 10                                   # weight of VSO ( in SAD case, cf. squared in SSE case )
     209VSDWeight                 : 1                                    # weight of VSD ( in SAD case, cf. squared in SSE case )
     210DWeight                   : 1                                    # weight of depth distortion itself ( in SAD case, cf. squared in SSE case )
    211211
    212212#============ Misc. ================
  • branches/HTM-4.1-dev2-LG/CommonTestConditionsCfgs/baseCfg_3view+depth.cfg

    r145 r146  
    209209#========== view synthesis optimization (VSO) ==========
    210210VSOConfig                 : [cx0 B(cc1) I(s0.25 s0.5 s0.75)][cx1 B(oo0) B(oo2) I(s0.25 s0.5 s0.75 s1.25 s1.5 s1.75)][cx2 B(cc1) I(s1.25 s1.5 s1.75)] # VSO configuration string
    211 WVSO                      : 1                                                                 # use of WVSO (Depth distortion metric with a weighted depth fidelity term)
    212 VSOWeight                 : 10                                                                # weight of VSO ( in SAD case, cf. squared in SSE case )
    213 VSDWeight                 : 1                                                                 # weight of VSD ( in SAD case, cf. squared in SSE case )
    214 DWeight                   : 1                                                                 # weight of depth distortion itself ( in SAD case, cf. squared in SSE case )
     211WVSO                       : 1                                     # use of WVSO (Depth distortion metric with a weighted depth fidelity term)
     212VSOWeight                  : 10                                    # weight of VSO ( in SAD case, cf. squared in SSE case )
     213VSDWeight                  : 1                                     # weight of VSD ( in SAD case, cf. squared in SSE case )
     214DWeight                    : 1                                     # weight of depth distortion itself ( in SAD case, cf. squared in SSE case )
    215215
    216216#============ Misc. ================
  • branches/HTM-4.1-dev2-LG/cfg/encoder_mvd.cfg

    r145 r146  
    209209VSOConfig                 : [cx0 B(cc1) I(s0.25 s0.5 s0.75)][cx1 B(oo0) B(oo2) I(s0.25 s0.5 s0.75 s1.25 s1.5 s1.75)][cx2 B(cc1) I(s1.25 s1.5 s1.75)] # VSO configuration string (3 view)
    210210VSOConfig                 : [cx0 B(cc1) I(s0.25 s0.5 s0.75)][cx1 B(oo0)        I(s0.25 s0.5 s0.75)]                                                   # VSO configuration string (2 view)
    211 WVSO                      : 1                                                                 # use of WVSO (Depth distortion metric with a weighted depth fidelity term)
    212 VSOWeight                 : 10                                                                # weight of VSO ( in SAD case, cf. squared in SSE case )
    213 VSDWeight                 : 1                                                                 # weight of VSD ( in SAD case, cf. squared in SSE case )
    214 DWeight                   : 1                                                                 # weight of depth distortion itself ( in SAD case, cf. squared in SSE case )
     211WVSO                      : 1                                    # use of WVSO (Depth distortion metric with a weighted depth fidelity term)
     212VSOWeight                 : 10                                   # weight of VSO ( in SAD case, cf. squared in SSE case )
     213VSDWeight                 : 1                                    # weight of VSD ( in SAD case, cf. squared in SSE case )
     214DWeight                   : 1                                    # weight of depth distortion itself ( in SAD case, cf. squared in SSE case )
    215215
    216216
  • branches/HTM-4.1-dev2-LG/source/App/TAppEncoder/TAppEncCfg.cpp

    r145 r146  
    361361#endif
    362362#if LGE_WVSO_A0119
    363   ("WVSO",                            m_bUseWVSO                , false         , "Use depth fidelity term for VSO" )
     363  ("WVSO",                            m_bUseWVSO                , true          , "Use depth fidelity term for VSO" )
    364364  ("VSOWeight",                       m_iVSOWeight              , 10            , "Synthesized View Distortion Change weight" )
    365365  ("VSDWeight",                       m_iVSDWeight              , 1             , "View Synthesis Distortion estimate weight" )
  • branches/HTM-4.1-dev2-LG/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r145 r146  
    12391239  READ_CODE( 2, uiCode, "weighted_bipred_idc" );      // Use of Bi-Directional Weighting Prediction (B_SLICE)
    12401240  pcPPS->setWPBiPredIdc( uiCode );
    1241 printf("TDecCavlc::parsePPS():\tm_bUseWeightPred=%d\tm_uiBiPredIdc=%d\n", pcPPS->getUseWP(), pcPPS->getWPBiPredIdc());
     1241//printf("TDecCavlc::parsePPS():\tm_bUseWeightPred=%d\tm_uiBiPredIdc=%d\n", pcPPS->getUseWP(), pcPPS->getWPBiPredIdc());
    12421242
    12431243#if H0388
Note: See TracChangeset for help on using the changeset viewer.