[5] | 1 | /* The copyright in this software is being made available under the BSD |
---|
| 2 | * License, included below. This software may be subject to other third party |
---|
| 3 | * and contributor rights, including patent rights, and no such rights are |
---|
| 4 | * granted under this license. |
---|
| 5 | * |
---|
[1405] | 6 | * Copyright (c) 2010-2016, ITU/ISO/IEC |
---|
[5] | 7 | * All rights reserved. |
---|
| 8 | * |
---|
| 9 | * Redistribution and use in source and binary forms, with or without |
---|
| 10 | * modification, are permitted provided that the following conditions are met: |
---|
| 11 | * |
---|
| 12 | * * Redistributions of source code must retain the above copyright notice, |
---|
| 13 | * this list of conditions and the following disclaimer. |
---|
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
| 15 | * this list of conditions and the following disclaimer in the documentation |
---|
| 16 | * and/or other materials provided with the distribution. |
---|
| 17 | * * Neither the name of the ISO/IEC nor the names of its contributors may |
---|
| 18 | * be used to endorse or promote products derived from this software without |
---|
| 19 | * specific prior written permission. |
---|
| 20 | * |
---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
| 22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
| 25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
| 26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
| 27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
| 28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
| 29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
| 30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
| 31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 32 | */ |
---|
[2] | 33 | |
---|
| 34 | |
---|
[5] | 35 | |
---|
[608] | 36 | |
---|
[2] | 37 | #include <stdlib.h> |
---|
| 38 | #include <math.h> |
---|
| 39 | #include <cassert> |
---|
| 40 | #include <cstring> |
---|
| 41 | #include <string> |
---|
| 42 | |
---|
| 43 | #include "TAppRendererCfg.h" |
---|
[56] | 44 | #include "../../Lib/TAppCommon/program_options_lite.h" |
---|
[2] | 45 | |
---|
[1396] | 46 | #if NH_3D_VSO || NH_3D |
---|
[2] | 47 | |
---|
| 48 | using namespace std; |
---|
| 49 | namespace po = df::program_options_lite; |
---|
| 50 | |
---|
| 51 | // ==================================================================================================================== |
---|
| 52 | // Local constants |
---|
| 53 | // ==================================================================================================================== |
---|
| 54 | |
---|
[100] | 55 | #define MAX_INPUT_VIEW_NUM 10 |
---|
[2] | 56 | #define MAX_OUTPUT_VIEW_NUM 64 |
---|
| 57 | |
---|
| 58 | // ==================================================================================================================== |
---|
| 59 | // Constructor / destructor / initialization / destroy |
---|
| 60 | // ==================================================================================================================== |
---|
[608] | 61 | |
---|
| 62 | |
---|
[2] | 63 | TAppRendererCfg::TAppRendererCfg() |
---|
| 64 | { |
---|
[608] | 65 | |
---|
[2] | 66 | } |
---|
| 67 | |
---|
| 68 | TAppRendererCfg::~TAppRendererCfg() |
---|
| 69 | { |
---|
| 70 | for(Int i = 0; i< m_pchVideoInputFileList.size(); i++ ) |
---|
| 71 | { |
---|
| 72 | if ( m_pchVideoInputFileList[i] != NULL ) |
---|
| 73 | free (m_pchVideoInputFileList[i]); |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | for(Int i = 0; i< m_pchDepthInputFileList.size(); i++ ) |
---|
| 77 | { |
---|
| 78 | if ( m_pchDepthInputFileList[i] != NULL ) |
---|
| 79 | free (m_pchDepthInputFileList[i]); |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | for(Int i = 0; i< m_pchSynthOutputFileList.size(); i++ ) |
---|
| 83 | { |
---|
| 84 | if ( m_pchSynthOutputFileList[i] != NULL ) |
---|
| 85 | free (m_pchSynthOutputFileList[i]); |
---|
| 86 | } |
---|
| 87 | |
---|
| 88 | if ( m_pchVideoInputFileBaseName ) free( m_pchVideoInputFileBaseName ); |
---|
| 89 | if ( m_pchDepthInputFileBaseName ) free( m_pchDepthInputFileBaseName ); |
---|
| 90 | if ( m_pchSynthOutputFileBaseName ) free( m_pchSynthOutputFileBaseName); |
---|
| 91 | if ( m_pchCameraParameterFile ) free( m_pchCameraParameterFile ); |
---|
| 92 | if ( m_pchBaseViewCameraNumbers ) free( m_pchBaseViewCameraNumbers ); |
---|
| 93 | if ( m_pchSynthViewCameraNumbers ) free( m_pchSynthViewCameraNumbers ); |
---|
| 94 | if ( m_pchViewConfig ) free( m_pchViewConfig ); |
---|
| 95 | } |
---|
| 96 | |
---|
| 97 | Void TAppRendererCfg::create() |
---|
| 98 | { |
---|
| 99 | } |
---|
| 100 | |
---|
| 101 | Void TAppRendererCfg::destroy() |
---|
| 102 | { |
---|
| 103 | } |
---|
| 104 | |
---|
| 105 | // ==================================================================================================================== |
---|
| 106 | // Public member functions |
---|
| 107 | // ==================================================================================================================== |
---|
| 108 | |
---|
| 109 | /** \param argc number of arguments |
---|
| 110 | \param argv array of arguments |
---|
| 111 | \retval true when success |
---|
| 112 | */ |
---|
[1386] | 113 | Bool TAppRendererCfg::parseCfg( Int argc, TChar* argv[] ) |
---|
[2] | 114 | { |
---|
| 115 | bool do_help = false; |
---|
| 116 | |
---|
| 117 | po::Options opts; |
---|
| 118 | opts.addOptions() |
---|
| 119 | ("help", do_help, false, "this help text") |
---|
| 120 | ("c", po::parseConfigFile, "configuration file name") |
---|
| 121 | |
---|
| 122 | /* File I/O */ |
---|
[1386] | 123 | ("VideoInputFileBaseName,v", m_pchVideoInputFileBaseName, (TChar*) 0, "Basename to generate video input file names") |
---|
| 124 | ("DepthInputFileBaseName,d", m_pchDepthInputFileBaseName, (TChar*) 0, "Basename to generate depth input file names") |
---|
| 125 | ("SynthOutputFileBaseName,s", m_pchSynthOutputFileBaseName, (TChar*) 0, "Basename to generate synthesized output file names") |
---|
[2] | 126 | ("ContOutputFileNumbering", m_bContOutputFileNumbering , false , "Continuous Output File Numbering") |
---|
| 127 | ("Sweep" , m_bSweep , false , "Store all views in first Output File") |
---|
| 128 | |
---|
[1386] | 129 | ("VideoInputFile_%d,v_%d", m_pchVideoInputFileList , (TChar *) 0, MAX_INPUT_VIEW_NUM , "Original Yuv video input file name %d") |
---|
| 130 | ("DepthInputFile_%d,d_%d", m_pchDepthInputFileList , (TChar *) 0, MAX_INPUT_VIEW_NUM , "Original Yuv depth input file name %d") |
---|
| 131 | ("SynthOutputFile_%d,s_%d", m_pchSynthOutputFileList, (TChar *) 0, MAX_OUTPUT_VIEW_NUM, "Synthesized Yuv output file name %d") |
---|
[2] | 132 | |
---|
[1313] | 133 | ("InputBitDepth", m_inputBitDepth[0], 8, "Bit-depth of input file") |
---|
| 134 | ("OutputBitDepth", m_outputBitDepth[0], 0, "Bit-depth of output file (default:InternalBitDepth)") |
---|
| 135 | ("InternalBitDepth", m_internalBitDepth[0], 0, "Bit-depth the renderer operates at. (default:InputBitDepth)" "If different to InputBitDepth, source data will be converted") |
---|
[608] | 136 | |
---|
[1313] | 137 | ("InputBitDepthC", m_inputBitDepth[1], 0, "As per InputBitDepth but for chroma component. (default:InputBitDepth)") |
---|
| 138 | ("OutputBitDepthC", m_outputBitDepth[1], 0, "As per OutputBitDepth but for chroma component. (default:InternalBitDepthC)") |
---|
| 139 | ("InternalBitDepthC", m_internalBitDepth[1], 0, "As per InternalBitDepth but for chroma component. (default:IntrenalBitDepth)") |
---|
[608] | 140 | |
---|
[2] | 141 | /* Source Specification */ |
---|
| 142 | ("SourceWidth,-wdt", m_iSourceWidth, 0, "Source picture width") |
---|
| 143 | ("SourceHeight,-hgt", m_iSourceHeight, 0, "Source picture height") |
---|
| 144 | ("FrameSkip,-fs", m_iFrameSkip, 0, "Number of frames to skip at start of input YUV") |
---|
| 145 | ("FramesToBeRendered,f", m_iFramesToBeRendered, 0, "Number of frames to be rendered (default=all)") |
---|
| 146 | |
---|
| 147 | /* Camera Specification */ |
---|
[1386] | 148 | ("CameraParameterFile,-cpf", m_pchCameraParameterFile, (TChar *) 0, "Camera Parameter File Name") |
---|
| 149 | ("BaseViewCameraNumbers" , m_pchBaseViewCameraNumbers, (TChar *) 0, "Numbers of base views") |
---|
| 150 | ("SynthViewCameraNumbers" , m_pchSynthViewCameraNumbers, (TChar *) 0, "Numbers of views to synthesis") |
---|
| 151 | ("ViewConfig" , m_pchViewConfig, (TChar *) 0, "View Configuration" ) |
---|
[2] | 152 | |
---|
| 153 | /* Renderer Modes */ |
---|
| 154 | ("Log2SamplingFactor", m_iLog2SamplingFactor, 0, "Factor for horizontal up sampling before processing" ) |
---|
| 155 | ("UVup" , m_bUVUp , true, "Up sampling of chroma planes before processing" ) |
---|
| 156 | ("PreProcMode" , m_iPreProcMode , 0, "Depth preprocessing: 0 = None, 1 = Binomial filtering" ) |
---|
| 157 | ("PreFilterSize" , m_iPreFilterSize , 0, "For PreProcMode 1: Half Size of filter kernel" ) |
---|
[5] | 158 | ("SimEnhance" , m_bSimEnhance , true, "Similarity enhancement of video" ) |
---|
[2] | 159 | ("BlendMode" , m_iBlendMode , 0, "Blending of left and right image: 0: average, 1: only holes from right, 2: only holes from left, 3: first view in BaseViewOrder as main view" ) |
---|
[5] | 160 | ("BlendZThresPerc" , m_iBlendZThresPerc , 30, "Z-difference threshold for blending in percent of total Z-range" ) |
---|
[2] | 161 | ("BlendUseDistWeight", m_bBlendUseDistWeight , true, "0: blend using average; 1: blend factor depends on view distance" ) |
---|
[5] | 162 | ("BlendHoleMargin" , m_iBlendHoleMargin , 6, "Margin around holes to fill with other view" ) |
---|
| 163 | ("InterpolationMode" , m_iInterpolationMode , 4, "0: NN, 1:linear (int), 2:linear (double) , 3:cubic Hermite spline (double), 4: 8-tap (int)" ) |
---|
[2] | 164 | ("HoleFillingMode" , m_iHoleFillingMode , 1, "0: None, 1: line wise background extension" ) |
---|
| 165 | ("PostProcMode" , m_iPostProcMode , 0, "0: None, 1: horizontal 3-tap median" ) |
---|
| 166 | ("RenderMode" , m_iRenderMode , 0, "0: Use renderer, 1: use model renderer, 10: create used pels map") |
---|
[5] | 167 | ("ShiftPrecision" , m_iShiftPrecision , 2, "Shift Precision for Interpolation Mode 4" ) |
---|
[2] | 168 | ("TemporalDepthFilter", m_bTempDepthFilter , false, "Temporal depth filtering" ) |
---|
| 169 | ("RenderDirection" , m_iRenderDirection , 0, "0: Interpolate, 1: Extrapolate from left, 2: Extrapolate from right") |
---|
| 170 | ("UsedPelMapMarExt" , m_iUsedPelMapMarExt , 0, "Margin Extension in Pels for used pels map generation" ); |
---|
| 171 | |
---|
| 172 | po::setDefaults(opts); |
---|
| 173 | po::scanArgv(opts, argc, (const char**) argv); |
---|
| 174 | |
---|
| 175 | if (argc == 1 || do_help) |
---|
| 176 | { |
---|
| 177 | /* argc == 1: no options have been specified */ |
---|
| 178 | po::doHelp(cout, opts); |
---|
| 179 | xPrintUsage(); |
---|
| 180 | return false; |
---|
| 181 | } |
---|
| 182 | |
---|
| 183 | /* |
---|
| 184 | * Set any derived parameters before checking |
---|
| 185 | */ |
---|
| 186 | |
---|
[608] | 187 | /* rules for input, output and internal bitdepths as per help text */ |
---|
[1313] | 188 | if (!m_internalBitDepth[0]) { m_internalBitDepth[0] = m_inputBitDepth[0]; } |
---|
| 189 | if (!m_internalBitDepth[1]) { m_internalBitDepth[1] = m_internalBitDepth[0]; } |
---|
| 190 | if (!m_inputBitDepth[1]) { m_inputBitDepth[1] = m_inputBitDepth[0]; } |
---|
| 191 | if (!m_outputBitDepth[0]) { m_outputBitDepth[0] = m_internalBitDepth[0]; } |
---|
| 192 | if (!m_outputBitDepth[1]) { m_outputBitDepth[1] = m_internalBitDepth[1]; } |
---|
[608] | 193 | |
---|
[2] | 194 | UInt uiInputBitDepth = 8; |
---|
| 195 | UInt uiCamParPrecision = 5; |
---|
| 196 | |
---|
| 197 | m_bUseSetupString = ( m_pchViewConfig != NULL ) && ( m_iRenderMode != 0); |
---|
| 198 | |
---|
| 199 | if ( m_iRenderMode == 10 ) |
---|
| 200 | { |
---|
| 201 | m_cCameraData.init( MAX_INPUT_VIEW_NUM, uiInputBitDepth, uiCamParPrecision, (UInt)m_iFrameSkip, (UInt)m_iFramesToBeRendered, |
---|
| 202 | m_pchCameraParameterFile, m_pchBaseViewCameraNumbers, NULL, NULL, m_iLog2SamplingFactor+m_iShiftPrecision ); |
---|
| 203 | m_iNumberOfInputViews = (Int) m_cCameraData.getBaseViewNumbers() .size(); |
---|
| 204 | m_iNumberOfOutputViews = m_iNumberOfInputViews - 1; |
---|
| 205 | m_iRenderDirection = 1; |
---|
| 206 | } |
---|
| 207 | else |
---|
| 208 | { |
---|
[1396] | 209 | #if NH_3D_VSO |
---|
| 210 | if ( m_bUseSetupString ) |
---|
| 211 | { |
---|
| 212 | std::vector<Int> iaTempViews; |
---|
| 213 | std::vector<Int>* piaTempViews; |
---|
| 214 | m_cCameraData .convertNumberString( m_pchBaseViewCameraNumbers, iaTempViews, VIEW_NUM_PREC ); |
---|
| 215 | m_cRenModStrParser.setString( (Int) iaTempViews.size(), m_pchViewConfig ); |
---|
| 216 | piaTempViews = m_cRenModStrParser.getSynthViews(); |
---|
| 217 | m_iNumberOfOutputViews = (Int) m_cRenModStrParser.getNumOfModels(); |
---|
| 218 | m_iNumberOfInputViews = (Int) m_cRenModStrParser.getNumOfBaseViews(); |
---|
| 219 | m_bContOutputFileNumbering = true; |
---|
[2] | 220 | |
---|
[1396] | 221 | m_cCameraData.init( MAX_INPUT_VIEW_NUM, uiInputBitDepth, uiCamParPrecision, (UInt)m_iFrameSkip, (UInt)m_iFramesToBeRendered, |
---|
| 222 | m_pchCameraParameterFile, m_pchBaseViewCameraNumbers, NULL, piaTempViews, m_iLog2SamplingFactor+m_iShiftPrecision ); |
---|
| 223 | } |
---|
| 224 | else |
---|
| 225 | { |
---|
| 226 | m_cCameraData.init( MAX_INPUT_VIEW_NUM, uiInputBitDepth, uiCamParPrecision, (UInt)m_iFrameSkip, (UInt)m_iFramesToBeRendered, |
---|
| 227 | m_pchCameraParameterFile, m_pchBaseViewCameraNumbers, m_pchSynthViewCameraNumbers, NULL, m_iLog2SamplingFactor+m_iShiftPrecision ); |
---|
| 228 | m_iNumberOfOutputViews = (Int) m_cCameraData.getSynthViewNumbers().size(); |
---|
| 229 | m_iNumberOfInputViews = (Int) m_cCameraData.getBaseViewNumbers() .size(); |
---|
| 230 | } |
---|
| 231 | #else |
---|
| 232 | AOF( false ); // Compile with VSO enabled to use this option. |
---|
| 233 | #endif |
---|
[2] | 234 | } |
---|
| 235 | |
---|
| 236 | if (m_pchSynthOutputFileBaseName != NULL) |
---|
| 237 | xConfirmParameter( strrchr(m_pchSynthOutputFileBaseName,'$') == 0, "'$' must be a character in SynthOutputFileBaseName"); |
---|
| 238 | |
---|
| 239 | if (m_pchDepthInputFileBaseName != NULL) |
---|
| 240 | xConfirmParameter( strrchr(m_pchDepthInputFileBaseName, '$') == 0, "'$' must be a character in DepthInputFileBaseName" ); |
---|
| 241 | |
---|
| 242 | if (m_pchVideoInputFileBaseName != NULL) |
---|
| 243 | xConfirmParameter( strrchr(m_pchVideoInputFileBaseName, '$') == 0, "'$' must be a character in VideoInputFileBaseName" ); |
---|
| 244 | |
---|
| 245 | xCreateFileNames(); |
---|
| 246 | |
---|
| 247 | /* |
---|
| 248 | * check validity of input parameters |
---|
| 249 | */ |
---|
| 250 | xCheckParameter(); |
---|
| 251 | m_cCameraData.check( m_iRenderDirection == 0, m_iFramesToBeRendered != 0 ); |
---|
| 252 | |
---|
| 253 | // print-out parameters |
---|
| 254 | xPrintParameter(); |
---|
| 255 | |
---|
| 256 | return true; |
---|
| 257 | } |
---|
| 258 | |
---|
| 259 | |
---|
| 260 | // ==================================================================================================================== |
---|
| 261 | // Private member functions |
---|
| 262 | // ==================================================================================================================== |
---|
| 263 | |
---|
| 264 | Void TAppRendererCfg::xCheckParameter() |
---|
| 265 | { |
---|
| 266 | bool check_failed = false; /* abort if there is a fatal configuration problem */ |
---|
| 267 | #define xConfirmPara(a,b) check_failed |= xConfirmParameter(a,b) |
---|
| 268 | // check range of parameters |
---|
| 269 | |
---|
| 270 | /// File I/O |
---|
| 271 | |
---|
| 272 | // source specification |
---|
| 273 | xConfirmPara( m_iSourceWidth <= 0, "Source width must be greater than 0" ); |
---|
| 274 | xConfirmPara( m_iSourceHeight <= 0, "Source height must be greater than 0" ); |
---|
| 275 | xConfirmPara( m_iFrameSkip < 0, "Frame Skipping must be more than or equal to 0" ); |
---|
| 276 | xConfirmPara( m_iFramesToBeRendered < 0, "Total Number Of Frames rendered must be more than 1" ); |
---|
| 277 | |
---|
[608] | 278 | // bit depth |
---|
[1313] | 279 | xConfirmPara( m_internalBitDepth[0] != m_internalBitDepth[1], "InternalBitDepth for luma and chroma must be equal. "); |
---|
| 280 | xConfirmPara( m_inputBitDepth[0] < 8, "InputBitDepth must be at least 8" ); |
---|
| 281 | xConfirmPara( m_inputBitDepth[1] < 8, "InputBitDepthC must be at least 8" ); |
---|
[2] | 282 | |
---|
| 283 | // camera specification |
---|
| 284 | xConfirmPara( m_iNumberOfInputViews > MAX_INPUT_VIEW_NUM , "NumberOfInputViews must be less than of equal to MAX_INPUT_VIEW_NUM"); |
---|
| 285 | xConfirmPara( m_iNumberOfOutputViews > MAX_OUTPUT_VIEW_NUM, "NumberOfOutputViews must be less than of equal to MAX_OUTPUT_VIEW_NUM"); |
---|
| 286 | |
---|
| 287 | |
---|
| 288 | xConfirmPara( m_iRenderDirection < 0 || m_iRenderDirection > 2 , "RenderDirection must be greater than or equal to 0 and less than 3"); |
---|
| 289 | xConfirmPara(m_iNumberOfOutputViews < 1, "Number of OutputViews must be greater or equal to 1"); |
---|
| 290 | if ( m_iRenderDirection == 0 ) |
---|
| 291 | { |
---|
| 292 | xConfirmPara( m_iNumberOfInputViews < 2, "Number of InputViews must be more than or equal to 2"); |
---|
| 293 | } |
---|
| 294 | else |
---|
| 295 | { |
---|
| 296 | xConfirmPara( m_iNumberOfInputViews < 1, "Number of InputViews must be more than or equal to 1"); |
---|
| 297 | } |
---|
| 298 | |
---|
| 299 | xConfirmPara( m_iLog2SamplingFactor < 0 || m_iLog2SamplingFactor > 4, "Log2SamplingFactor must be more than or equal to 0 and less than 5" ); |
---|
| 300 | xConfirmPara( m_iPreProcMode < 0 || m_iPreProcMode > 1, "PreProcMode must be more than or equal to 0 and less than 2" ); |
---|
| 301 | |
---|
| 302 | |
---|
| 303 | xConfirmPara( m_iPreFilterSize < 0 || m_iPreFilterSize > 3, "PreFilterSize must be more than or equal to 0 and less than 4" ); |
---|
| 304 | xConfirmPara( m_iBlendMode < 0 || m_iBlendMode > 3, "BlendMode must be more than or equal to 0 and less than 4" ); |
---|
| 305 | xConfirmPara( m_iBlendZThresPerc < 0 || m_iBlendZThresPerc > 100,"BlendZThresPerc must be more than or equal to 0 and less than 101" ); |
---|
| 306 | xConfirmPara( m_iBlendHoleMargin < 0 || m_iBlendHoleMargin > 20,"BlendHoleMargin must be more than or equal to 0 and less than 19" ); |
---|
| 307 | xConfirmPara( m_iInterpolationMode < 0 || m_iInterpolationMode > 4, "InterpolationMode must be more than or equal to 0 and less than 5" ); |
---|
| 308 | xConfirmPara( m_iHoleFillingMode < 0 || m_iHoleFillingMode > 1, "HoleFillingMode must be more than or equal to 0 and less than 2" ); |
---|
| 309 | xConfirmPara( m_iPostProcMode < 0 || m_iPostProcMode > 2, "PostProcMode must be more than or equal to 0 and less than 3" ); |
---|
| 310 | |
---|
| 311 | Int iNumNonNULL; |
---|
[1313] | 312 | for (iNumNonNULL = 0; (iNumNonNULL < m_iNumberOfInputViews) && m_pchDepthInputFileList[iNumNonNULL]; iNumNonNULL++) {}; xConfirmPara( iNumNonNULL < m_iNumberOfInputViews, "Number of DepthInputFiles must be greater than or equal to number of BaseViewNumbers" ); |
---|
| 313 | for (iNumNonNULL = 0; (iNumNonNULL < m_iNumberOfInputViews) && m_pchVideoInputFileList[iNumNonNULL]; iNumNonNULL++) {}; xConfirmPara( iNumNonNULL < m_iNumberOfInputViews, "Number of DepthInputFiles must be greater than or equal to number of BaseViewNumbers" ); |
---|
[2] | 314 | |
---|
| 315 | |
---|
| 316 | if ( !m_bSweep ) |
---|
| 317 | { |
---|
[1313] | 318 | for (iNumNonNULL = 0; (iNumNonNULL < m_iNumberOfOutputViews) && m_pchSynthOutputFileList[iNumNonNULL]; iNumNonNULL++) {}; xConfirmPara( iNumNonNULL < m_iNumberOfOutputViews, "Number of SynthOutputFiles must be greater than or equal to number of SynthViewNumbers" ); |
---|
[2] | 319 | } |
---|
| 320 | else |
---|
| 321 | { |
---|
| 322 | xConfirmPara( iNumNonNULL < 1, "Number of SynthOutputFiles must be equal to or more than 1" ); |
---|
| 323 | } |
---|
| 324 | |
---|
| 325 | #undef xConfirmPara |
---|
| 326 | if ( check_failed ) |
---|
| 327 | { |
---|
| 328 | exit(EXIT_FAILURE); |
---|
| 329 | } |
---|
| 330 | |
---|
| 331 | } |
---|
| 332 | |
---|
| 333 | |
---|
| 334 | |
---|
| 335 | Void TAppRendererCfg::xPrintParameter() |
---|
| 336 | { |
---|
| 337 | printf("\n"); |
---|
| 338 | for( Int iCounter = 0; iCounter < m_iNumberOfInputViews; iCounter++) |
---|
| 339 | { |
---|
| 340 | printf("InputVideoFile_%i : %s\n", iCounter, m_pchVideoInputFileList[iCounter]); |
---|
| 341 | } |
---|
| 342 | for( Int iCounter = 0; iCounter < m_iNumberOfInputViews; iCounter++) |
---|
| 343 | { |
---|
| 344 | printf("InputDepthFile_%i : %s\n", iCounter, m_pchDepthInputFileList[iCounter]); |
---|
| 345 | } |
---|
| 346 | |
---|
| 347 | for( Int iCounter = 0; iCounter < m_iNumberOfOutputViews; iCounter++) |
---|
| 348 | { |
---|
| 349 | printf("SynthOutputFile_%i : %s\n", iCounter, m_pchSynthOutputFileList[iCounter]); |
---|
| 350 | } |
---|
| 351 | |
---|
| 352 | printf("Format : %dx%d \n", m_iSourceWidth, m_iSourceHeight ); |
---|
| 353 | printf("Frame index : %d - %d (%d frames)\n", m_iFrameSkip, m_iFrameSkip+m_iFramesToBeRendered-1, m_iFramesToBeRendered); |
---|
| 354 | printf("CameraParameterFile : %s\n", m_pchCameraParameterFile ); |
---|
| 355 | printf("BaseViewNumbers : %s (%d views) \n", m_pchBaseViewCameraNumbers , m_iNumberOfInputViews ); |
---|
| 356 | printf("Sweep : %d\n", m_bSweep ); |
---|
| 357 | |
---|
| 358 | if ( m_bUseSetupString ) |
---|
| 359 | { |
---|
| 360 | printf("ViewConfig : %s\n", m_pchViewConfig ); |
---|
| 361 | } |
---|
| 362 | else |
---|
| 363 | { |
---|
| 364 | printf("SynthViewNumbers : %s (%d views) \n", m_pchSynthViewCameraNumbers, m_iNumberOfOutputViews ); |
---|
| 365 | } |
---|
| 366 | |
---|
| 367 | printf("Log2SamplingFactor : %d\n", m_iLog2SamplingFactor ); |
---|
| 368 | printf("UVUp : %d\n", m_bUVUp ); |
---|
| 369 | printf("PreProcMode : %d\n", m_iPreProcMode ); |
---|
| 370 | printf("PreFilterSize : %d\n", m_iPreFilterSize ); |
---|
| 371 | printf("SimEnhance : %d\n", m_bSimEnhance ); |
---|
| 372 | printf("BlendMode : %d\n", m_iBlendMode ); |
---|
| 373 | printf("BlendZThresPerc : %d\n", m_iBlendZThresPerc ); |
---|
| 374 | printf("BlendUseDistWeight : %d\n", m_bBlendUseDistWeight ); |
---|
| 375 | printf("BlendHoleMargin : %d\n", m_iBlendHoleMargin ); |
---|
| 376 | printf("InterpolationMode : %d\n", m_iInterpolationMode ); |
---|
| 377 | printf("HoleFillingMode : %d\n", m_iHoleFillingMode ); |
---|
| 378 | printf("PostProcMode : %d\n", m_iPostProcMode ); |
---|
| 379 | printf("ShiftPrecision : %d\n", m_iShiftPrecision ); |
---|
| 380 | printf("TemporalDepthFilter : %d\n", m_bTempDepthFilter ); |
---|
| 381 | printf("RenderMode : %d\n", m_iRenderMode ); |
---|
| 382 | printf("RendererDirection : %d\n", m_iRenderDirection ); |
---|
| 383 | |
---|
| 384 | if (m_iRenderMode == 10 ) |
---|
| 385 | { |
---|
| 386 | printf("UsedPelMapMarExt : %d\n", m_iUsedPelMapMarExt ); |
---|
| 387 | } |
---|
| 388 | |
---|
| 389 | printf("\n"); |
---|
| 390 | |
---|
| 391 | // printf("TOOL CFG: "); |
---|
| 392 | // printf("ALF:%d ", m_bUseALF ); |
---|
| 393 | // printf("\n"); |
---|
| 394 | |
---|
| 395 | fflush(stdout); |
---|
| 396 | } |
---|
| 397 | |
---|
| 398 | Void TAppRendererCfg::xPrintUsage() |
---|
| 399 | { |
---|
| 400 | printf( "\n" ); |
---|
| 401 | printf( " Example: TAppRenderer.exe -c test.cfg\n\n"); |
---|
| 402 | } |
---|
| 403 | |
---|
| 404 | Bool TAppRendererCfg::xConfirmParameter(Bool bflag, const char* message) |
---|
| 405 | { |
---|
| 406 | if (!bflag) |
---|
| 407 | return false; |
---|
| 408 | |
---|
| 409 | printf("Error: %s\n",message); |
---|
| 410 | return true; |
---|
| 411 | } |
---|
| 412 | |
---|
| 413 | |
---|
| 414 | Void TAppRendererCfg::xCreateFileNames() |
---|
| 415 | { |
---|
| 416 | if ( m_iRenderMode == 10 ) |
---|
| 417 | return; |
---|
| 418 | |
---|
| 419 | Int iPrecBefore; |
---|
| 420 | Int iPrecAfter; |
---|
| 421 | |
---|
| 422 | xGetMaxPrecision( m_cCameraData.getSynthViewNumbers(), iPrecBefore, iPrecAfter ); |
---|
| 423 | |
---|
| 424 | |
---|
| 425 | if (iPrecBefore > LOG10_VIEW_NUM_PREC ) |
---|
| 426 | { |
---|
| 427 | std::cerr << "Error: View Numbers with more than " << LOG10_VIEW_NUM_PREC << " digits are not supported" << std::endl; |
---|
| 428 | exit(EXIT_FAILURE); |
---|
| 429 | } |
---|
| 430 | |
---|
| 431 | AOT( !m_bContOutputFileNumbering && (m_cCameraData.getSynthViewNumbers().size() != m_iNumberOfOutputViews )); |
---|
| 432 | for(Int iIdx = 0; iIdx < m_iNumberOfOutputViews; iIdx++) |
---|
| 433 | { |
---|
| 434 | //GT; Create ReconFileNames |
---|
| 435 | if (m_pchSynthOutputFileList[iIdx] == NULL ) |
---|
| 436 | { |
---|
| 437 | if ( m_bContOutputFileNumbering ) |
---|
| 438 | { |
---|
| 439 | xAddNumberToFileName( m_pchSynthOutputFileBaseName, m_pchSynthOutputFileList[iIdx], (Int) ((iIdx+1) * VIEW_NUM_PREC) , 2, 0 ); |
---|
| 440 | } |
---|
| 441 | else |
---|
| 442 | { |
---|
| 443 | xAddNumberToFileName( m_pchSynthOutputFileBaseName, m_pchSynthOutputFileList[iIdx], m_cCameraData.getSynthViewNumbers()[iIdx], iPrecBefore, iPrecAfter ); |
---|
| 444 | } |
---|
| 445 | } |
---|
| 446 | } |
---|
| 447 | |
---|
| 448 | xGetMaxPrecision( m_cCameraData.getBaseViewNumbers(), iPrecBefore, iPrecAfter ); |
---|
| 449 | for(Int iIdx = 0; iIdx < m_cCameraData.getBaseViewNumbers().size() ; iIdx++) |
---|
| 450 | { |
---|
| 451 | //GT; Create ReconFileNames |
---|
| 452 | if (m_pchVideoInputFileList[iIdx] == NULL ) |
---|
| 453 | { |
---|
| 454 | xAddNumberToFileName( m_pchVideoInputFileBaseName, m_pchVideoInputFileList[iIdx], m_cCameraData.getBaseViewNumbers()[iIdx], iPrecBefore, iPrecAfter ); |
---|
| 455 | } |
---|
| 456 | |
---|
| 457 | if (m_pchDepthInputFileList[iIdx] == NULL ) |
---|
| 458 | { |
---|
| 459 | xAddNumberToFileName( m_pchDepthInputFileBaseName, m_pchDepthInputFileList[iIdx], m_cCameraData.getBaseViewNumbers()[iIdx], iPrecBefore, iPrecAfter ); |
---|
| 460 | } |
---|
| 461 | } |
---|
| 462 | } |
---|
| 463 | |
---|
[1386] | 464 | Void TAppRendererCfg::xAddNumberToFileName( TChar* pchSourceFileName, TChar*& rpchTargetFileName, Int iNumberToAdd, UInt uiPrecBefore, UInt uiPrecAfter ) |
---|
[2] | 465 | { |
---|
| 466 | |
---|
| 467 | if ( pchSourceFileName == NULL ) |
---|
| 468 | { |
---|
| 469 | std::cerr << "No BaseName for file name generation given." << std::endl; |
---|
| 470 | AOT(true); |
---|
| 471 | exit(EXIT_FAILURE); |
---|
| 472 | } |
---|
| 473 | |
---|
[1386] | 474 | TChar pchNumberBuffer[2* LOG10_VIEW_NUM_PREC + 2]; |
---|
| 475 | TChar pchPrintBuffer[10]; |
---|
[2] | 476 | |
---|
| 477 | Double dNumberToAdd = ( (Double) iNumberToAdd ) / VIEW_NUM_PREC; |
---|
| 478 | |
---|
| 479 | UInt uiWidth = uiPrecBefore; |
---|
| 480 | |
---|
| 481 | if (uiPrecAfter != 0) |
---|
| 482 | { |
---|
| 483 | uiWidth += uiPrecAfter + 1; |
---|
| 484 | } |
---|
| 485 | |
---|
| 486 | sprintf( pchPrintBuffer, "%%0%d.%df", uiWidth, uiPrecAfter ); |
---|
| 487 | sprintf( pchNumberBuffer, pchPrintBuffer, dNumberToAdd ); |
---|
| 488 | |
---|
| 489 | if ( uiPrecAfter > 0 ) pchNumberBuffer[ uiPrecBefore ] = '_'; |
---|
| 490 | |
---|
| 491 | size_t iInLength = strlen(pchSourceFileName); |
---|
| 492 | size_t iAddLength = strlen(pchNumberBuffer); |
---|
| 493 | |
---|
[1386] | 494 | rpchTargetFileName = (TChar*) malloc(iInLength+iAddLength+1); |
---|
[2] | 495 | |
---|
[1386] | 496 | TChar* pchPlaceHolder = strrchr(pchSourceFileName,'$'); |
---|
[2] | 497 | assert( pchPlaceHolder ); |
---|
| 498 | |
---|
| 499 | size_t iCharsToPlaceHolder = pchPlaceHolder - pchSourceFileName; |
---|
| 500 | size_t iCharsToEnd = iInLength - iCharsToPlaceHolder; |
---|
| 501 | |
---|
| 502 | strncpy(rpchTargetFileName , pchSourceFileName , iCharsToPlaceHolder); |
---|
| 503 | strncpy(rpchTargetFileName+iCharsToPlaceHolder , pchNumberBuffer , iAddLength ); |
---|
| 504 | strncpy(rpchTargetFileName+iCharsToPlaceHolder+iAddLength, pchSourceFileName+iCharsToPlaceHolder+1, iCharsToEnd-1 ); |
---|
| 505 | rpchTargetFileName[iInLength+iAddLength-1] = '\0'; |
---|
| 506 | } |
---|
| 507 | |
---|
[1313] | 508 | Void TAppRendererCfg::xGetMaxPrecision( IntAry1d aiIn, Int& iPrecBefore, Int& iPrecAfter ) |
---|
[2] | 509 | { |
---|
| 510 | iPrecBefore = 0; |
---|
| 511 | iPrecAfter = 0; |
---|
| 512 | |
---|
| 513 | for (UInt uiK = 0; uiK < aiIn.size(); uiK ++ ) |
---|
| 514 | { |
---|
| 515 | if ( aiIn[uiK] == 0 ) continue; |
---|
| 516 | |
---|
| 517 | Int iCurPrec; |
---|
| 518 | iCurPrec = 0; |
---|
| 519 | for ( Int iCur = aiIn[uiK]; iCur != 0; iCur /= 10, iCurPrec++ ); |
---|
[56] | 520 | iPrecBefore = max(iPrecBefore, iCurPrec - LOG10_VIEW_NUM_PREC ); |
---|
[2] | 521 | |
---|
| 522 | iCurPrec = 0; |
---|
| 523 | for ( Int iCur = 1; aiIn[uiK] % iCur == 0; iCur *= 10, iCurPrec++); |
---|
[608] | 524 | iCurPrec = LOG10_VIEW_NUM_PREC - std::min((Int) LOG10_VIEW_NUM_PREC, iCurPrec-1 ); |
---|
[56] | 525 | iPrecAfter = max(iPrecAfter, iCurPrec ); |
---|
[2] | 526 | } |
---|
| 527 | } |
---|
| 528 | |
---|
[210] | 529 | #endif |
---|