Changeset 120 in 3DVCSoftware for trunk/source/App/TAppEncoder
- Timestamp:
- 30 Aug 2012, 19:52:58 (12 years ago)
- Location:
- trunk/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppEncoder/TAppEncCfg.cpp
r116 r120 336 336 #endif 337 337 #if LGE_WVSO_A0119 338 ("WVSO", m_b WVSO , true , "Use WVSO" )339 ("VSOWeight", m_iVSOWeight , 10 , " VSO Weight" )340 ("VSDWeight", m_iVSDWeight , 1 , " SAIT Weight" )341 ("DWeight", m_iDWeight , 1 , " SSE Weight" )338 ("WVSO", m_bUseWVSO , false , "Use depth fidelity term for VSO" ) 339 ("VSOWeight", m_iVSOWeight , 10 , "Synthesized View Distortion Change weight" ) 340 ("VSDWeight", m_iVSDWeight , 1 , "View Synthesis Distortion estimate weight" ) 341 ("DWeight", m_iDWeight , 1 , "Depth Distortion weight" ) 342 342 #endif 343 343 344 344 #if OL_DEPTHLIMIT_A0044 345 ("DPL", m_bDepthPartitionLimiting, false , "Use DepthPartitionLimiting" )345 ("DPL", m_bDepthPartitionLimiting , false , "Use DepthPartitionLimiting" ) 346 346 #endif 347 347 … … 655 655 656 656 #if LGE_WVSO_A0119 657 m_b WVSO = m_bUseVSO && m_bWVSO && m_bUsingDepthMaps;657 m_bUseWVSO = m_bUseVSO && m_bUseWVSO && m_bUsingDepthMaps; 658 658 #endif 659 659 xCleanUpVectors(); … … 1703 1703 #endif 1704 1704 #if LGE_WVSO_A0119 1705 printf("WVSO:%d ", m_b WVSO );1705 printf("WVSO:%d ", m_bUseWVSO ); 1706 1706 #endif 1707 1707 #if OL_DEPTHLIMIT_A0044 … … 1715 1715 #endif 1716 1716 #if LGE_WVSO_A0119 1717 printf("\nVSO : SAIT: SAD weight = %d : %d : %d ", m_iVSOWeight, m_iVSDWeight, m_iDWeight );1717 printf("\nVSO : VSD : SAD weight = %d : %d : %d ", m_iVSOWeight, m_iVSDWeight, m_iDWeight ); 1718 1718 #endif 1719 1719 printf("\n\n"); -
trunk/source/App/TAppEncoder/TAppEncCfg.h
r116 r120 298 298 #endif 299 299 #if LGE_WVSO_A0119 300 Bool m_b WVSO; ///< flag for using View Synthesis Optimization300 Bool m_bUseWVSO; ///< flag for using View Synthesis Optimization 301 301 Int m_iVSOWeight; 302 302 Int m_iVSDWeight; -
trunk/source/App/TAppEncoder/TAppEncTop.cpp
r116 r120 208 208 #endif 209 209 #if LGE_WVSO_A0119 210 m_acTEncTopList[iViewIdx]->set WVSO( false );210 m_acTEncTopList[iViewIdx]->setUseWVSO ( false ); 211 211 #endif 212 212 #endif … … 531 531 #endif 532 532 #if LGE_WVSO_A0119 533 m_acTEncDepthTopList[iViewIdx]->set WVSO ( m_bWVSO);533 m_acTEncDepthTopList[iViewIdx]->setUseWVSO ( m_bUseWVSO ); 534 534 #endif 535 535 #endif … … 708 708 { 709 709 TEncTop* pcEncTop = ( iContent == 0 ) ? m_acTEncTopList[iViewNum] : m_acTEncDepthTopList[iViewNum]; 710 pcEncTop->set WVSO( m_bWVSO );710 pcEncTop->setUseWVSO ( m_bUseWVSO ); 711 711 pcEncTop->setVSOWeight( m_iVSOWeight ); 712 712 pcEncTop->setVSDWeight( m_iVSDWeight ); 713 pcEncTop->setDWeight ( m_iDWeight );713 pcEncTop->setDWeight ( m_iDWeight ); 714 714 } 715 715 }
Note: See TracChangeset for help on using the changeset viewer.