source: 3DVCSoftware/branches/0.2-poznan-univ/source/App/TAppCommon/TAppComCamPara.h @ 15

Last change on this file since 15 was 12, checked in by poznan-univ, 13 years ago

Poznan Tools

  • Depth base motion vector prediction
  • Property svn:eol-style set to native
File size: 14.7 KB
Line 
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 *
6 * Copyright (c) 2010-2011, ISO/IEC
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 */
33
34
35
36#ifndef __TAPPCOMCAMPARA__
37#define __TAPPCOMCAMPARA__
38
39// Include files
40#include "../../Lib/TLibCommon/CommonDef.h"
41#include "../../Lib/TLibCommon/TComMVDRefData.h"
42#include <vector>
43
44
45#define LOG10_VIEW_NUM_PREC         5  // Precision of view numbering
46#define VIEW_NUM_PREC               pow( 10.0, (Int)LOG10_VIEW_NUM_PREC )
47
48// ====================================================================================================================
49// Class definition
50// ====================================================================================================================
51
52class TAppComCamPara
53{
54private:
55  // camera parameter data
56  std::vector< std::vector<Double> >  m_aadCameraParameters;  ///< buffer for double values from file
57
58  // miscellaneous variables
59  Double              m_dViewNumPrec;                         ///< factor for camera number to create integer representation
60  Int                 m_iLog2Precision;                       ///< shift precision in LUT
61  UInt                m_uiInputBitDepth;                      ///< bit depth of input depth maps
62  UInt                m_uiBitDepthForLUT;                     ///< bit depth used for table look-up
63  UInt                m_uiFirstFrameId;                       ///< first frame id
64  UInt                m_uiLastFrameId;                        ///< last frame id
65  UInt                m_iCurrentFrameId;                      ///< currently set frame id
66
67  Bool                m_bSetupFromCoded;                      ///< setup from coded parameter file
68  Bool                m_bCamParsCodedPrecSet;                 ///< Coded Cam Para precision set for current frame;
69
70  // view lists
71  std::vector<Int>    m_aiViewsInCfgFile;                     ///< views for which parameters are specified in cfg file (from left to right)
72  std::vector<Int>    m_aiSynthViews;                           ///< View numbers of External ViewReferences
73  std::vector<Int>    m_aiRelSynthViewsNum;                   ///< Relative view numbers of External ViewReferences
74  std::vector<Int>    m_aiBaseViews;                          ///< View numbers of Base View References (in coding order)
75  std::vector<Int>    m_aiSortedBaseViews;                    ///< View numbers of Base View References (from left to right)
76  std::vector<Int>    m_aiBaseId2SortedId;                    ///< mapping from coding order to left-right order for base views
77  std::vector<Int>    m_aiBaseSortedId2Id;                    ///< mapping from left-right order to coding order for base views
78  Int                 m_iNumberOfBaseViews;                   ///< number of base views
79  Int                 m_iNumberOfSynthViews;                  ///< number of synthesized views
80
81  // SPS and slice header related variables
82  std::vector<Int>    m_aiViewOrderIndex;                     ///< list of view order indices
83  UInt                m_uiCamParsCodedPrecision;              ///< precision for coding of camera parameters (x: max error in disparity is 2^(-x) luma samples)
84  Bool                m_bCamParsVaryOverTime;                 ///< flag specifying whether camera parameters vary for given frame numbers
85  Int**               m_aaiCodedScale;                        ///< array of coded scaling parameters [RefView][TargetView]
86  Int**               m_aaiCodedOffset;                       ///< array of coded offset  parameters [RefView][TargetView]
87  Int**               m_aaiScaleAndOffsetSet;                 ///< array indicating whether scale and offset have been set
88
89  // parameters for virtual depth map generation
90  Int                 m_iPdmPrecision;                        ///< additional precision for disparity - virtual depth conversion
91  Int**               m_aaiPdmScaleNomDelta;                  ///< [TargetView][RefView] delta for nominator of scale factor
92  Int**               m_aaiPdmOffset;                         ///< [TargetView][RefView] offset parameter
93
94  // scale and offset parameters
95  Double***           m_adBaseViewShiftParameter;                                                       ///< ShiftParameters between BaseViews e.g. [2][1][0] shift scale from view 2 to view 1; [2][1][1] shift offset from view 2 to view 1
96  Int64 ***           m_aiBaseViewShiftParameter;                                       ///< ShiftParameters between BaseViews e.g. [2][1][0] shift scale from view 2 to view 1; [2][1][1] shift offset from view 2 to view 1           /* do we need 64 bit? */
97  Double***           m_adSynthViewShiftParameter;                                        ///< ShiftParameters between BaseViews and ERViews e.g. [2][1][0] shift scale from base view 2 to er view 1;
98  Int64 ***           m_aiSynthViewShiftParameter;                              ///< ShiftParameters between BaseViews and ERViews e.g. [2][1][0] shift scale from base view 2 to er view 1;            /* do we need 64 bit? */
99
100  // look-up tables
101  Double****          m_adBaseViewShiftLUT;                                                                             ///< Disparity LUT
102  Int****             m_aiBaseViewShiftLUT;                                                                       ///< Disparity LUT
103  Double****          m_adSynthViewShiftLUT;                                                                    ///< Disparity LUT
104  Int****             m_aiSynthViewShiftLUT;                                                                    ///< Disparity LUT
105
106#if POZNAN_NONLINEAR_DEPTH
107  Float               m_fDepthPower;
108#endif
109
110protected:
111  // create and delete arrays
112  Void                    xCreateLUTs   ( UInt uiNumberSourceViews, UInt uiNumberTargetViews, Double****& radLUT, Int****& raiLUT, Double***& radShiftParams, Int64***& raiShiftParams );
113  Void                    xCreate2dArray( UInt uiNum1Ids, UInt uiNum2Ids, Int**& raaiArray );
114  Void                    xInit2dArray  ( UInt uiNum1Ids, UInt uiNum2Ids, Int**& raaiArray, Int iValue );
115  template<class T> Void  xDeleteArray  ( T*& rpt, UInt uiSize1, UInt uiSize2, UInt uiSize3 );
116  template<class T> Void  xDeleteArray  ( T*& rpt, UInt uiSize1, UInt uiSize2 );
117  template<class T> Void  xDeleteArray  ( T*& rpt, UInt uiSize );
118
119  // functions for reading, initialization, sorting, getting data, etc.
120  Void  xReadCameraParameterFile  ( Char* pchCfgFileName );
121  Bool  xGetCameraDataRow         ( Int iView, UInt uiFrame, UInt& ruiFoundLine );
122
123  Void  xGetSortedViewList        ( const std::vector<Int>& raiViews, std::vector<Int>& raiSortedViews, std::vector<Int>& raiId2SortedId, std::vector<Int>& raiSortedId2Id );
124  Void  xGetViewOrderIndices      ( const std::vector<Int>& raiId2SortedId, std::vector<Int>& raiVOIdx );
125  Bool  xGetCamParsChangeFlag     ();
126  Int   xGetBaseViewId            ( Int iBaseView );
127  Int   xGetViewId                 ( std::vector<Int> aiViewList, Int iBaseView );
128
129  Bool  xGetLeftRightView         ( Int iView, std::vector<Int> aiSortedViews, Int& riLeftView, Int& riRightView, Int& riLeftSortedViewIdx, Int& riRightSortedViewIdx );
130  Void  xGetPrevAndNextBaseView   ( Int iSourceViewNum, Int iTargetViewNum, Int& riPrevBaseViewNum, Int& riNextBaseViewNum );
131  Void  xGetZNearZFar             ( Int iView, UInt uiFrame, Double& rdZNear, Double& rdZFar );
132  Void  xGetGeometryData          ( Int dView, UInt uiFrame, Double& rdFocalLength, Double& rdPosition, Double& rdCameraShift, Bool& rbInterpolated );
133  Void  xSetupBaseViewsFromCoded  ();
134  Void  xSetupBaseViews           ( Char* pchBaseViewNumbers, UInt uiNumBaseViews );
135
136  // functions for getting and setting scales and offsets
137  Bool  xGetShiftParameterReal    ( UInt uiSourceView, UInt uiTargetView, UInt uiFrame, Bool bExternal, Bool bByIdx, Double& rdScale, Double& rdOffset );
138  Void  xGetShiftParameterCoded   ( UInt uiSourceView, UInt uiTargetView, UInt uiFrame,                 Bool bByIdx, Int&    riScale, Int&    riOffset );
139  Void  xGetShiftParameterInt     ( UInt uiSourceView, UInt uiTargetView, UInt uiFrame, Bool bExternal, Bool bByIdx, Int64&  riScale, Int64&  riOffset );
140  Void  xGetCodedCameraData       ( UInt uiSourceView, UInt uiTargetView, Bool bByIdx,  UInt uiFrame, Int& riScale, Int& riOffset, Int& riPrecision );
141
142  Void  xSetCodedScaleOffset      ( UInt uiFrame );
143  Void  xSetShiftParametersAndLUT ( UInt uiNumViewDim1, UInt uiNumViewDim2, UInt uiFrame, Bool bExternalReference, Double****& radLUT, Int****& raiLUT, Double***& radShiftParams, Int64***& raiShiftParams );
144  Void  xSetShiftParametersAndLUT ( UInt uiFrame );
145
146
147  // getting conversion parameters for disparity to virtual depth conversion
148  Void  xGetCameraShifts          ( UInt uiSourceView, UInt uiTargetView, UInt uiFrame, Double& rdCamPosShift, Double& rdPicPosShift );
149  Void  xSetPdmConversionParams   ();
150
151public:
152  // constructor and destructor
153  TAppComCamPara();
154  ~TAppComCamPara();
155
156  // initialization, check, and and update
157  Void init   ( UInt    uiNumBaseViews,
158                UInt    uiInputBitDepth,
159                UInt    uiCodedCamParsPrecision,
160                UInt    uiStartFrameId,
161                UInt    uiNumFrames,
162                Char*   pchCfgFileName,
163                Char*   pchBaseViewNumbers,
164                Char*   pchSynthViewNumbers,
165                std::vector<Int>* paiSynthViewNumbers,
166                Int     iLog2Precision
167#if POZNAN_NONLINEAR_DEPTH
168                ,Float  fDepthPower
169#endif
170                );
171
172  Void init   ( UInt    uiInputBitDepth,
173                UInt    uiStartFrameId,
174                UInt    uiNumFrames,
175                Char*   pchCfgFileName,
176                Char*   pchSynthViewNumbers,
177                std::vector<Int>* paiSynthViewNumbers,
178                Int     iLog2Precision
179#if POZNAN_NONLINEAR_DEPTH
180                ,Float  fDepthPower
181#endif
182              );
183
184
185
186  Void check  ( Bool    bCheckViewRange,
187                Bool    bCheckFrameRange );
188  Void update ( UInt    uiFrameId );
189
190  // miscellaneous functions
191
192  Int                 synthRelNum2Idx           ( Int iRelNum );
193  Bool getLeftRightBaseView( Int iSynthViewIdx, Int &riLeftViewIdx, Int &riRightViewIdx, Int &riRelDistToLeft, Bool& rbIsBaseView );
194#if POZNAN_CU_SYNTH||POZNAN_CU_SKIP
195  Bool getNearestBaseView( Int iSynthViewIdx, Int &riNearestViewIdx, Int &riRelDistToLeft, Bool& rbRenderFromLeft);
196#endif
197
198  Int                 getRelDistLeft            ( Int iSynthViewIdx, Int   iLeftViewIdx, Int iRightViewIdx );
199  UInt                getCurFrameId             ()  { return m_iCurrentFrameId;   }
200  static Void         convertNumberString       ( Char* pchViewNumberString, std::vector<Int>& raiViewNumbers, Double dViewNumPrec );
201
202#if POZNAN_MP
203  Bool isLeftView( Int iSynthViewIdx, Int iNearestViewIdx);
204#endif
205
206  // function for getting parameters and parameter arrays
207  std::vector<Int>&   getBaseViewNumbers        ()  { return m_aiBaseViews;       }
208  std::vector<Int>&   getSortedBaseViewNumbers  ()  { return m_aiSortedBaseViews; }
209  std::vector<Int>&   getSynthViewNumbers       ()  { return m_aiSynthViews;      }
210  std::vector<Int>&   getRelSynthViewNumbers    ()  { return m_aiRelSynthViewsNum;}
211
212  std::vector<Int>&   getBaseId2SortedId        ()   { return m_aiBaseId2SortedId; }
213  std::vector<Int>&   getBaseSortedId2Id        ()   { return m_aiBaseSortedId2Id; }
214
215
216  Double***           getBaseViewShiftParameterD()  { return         m_adBaseViewShiftParameter;  }
217  Int***              getBaseViewShiftParameterI()  { return (Int***)m_aiBaseViewShiftParameter;  }
218
219  Double****          getSynthViewShiftLUTD     ()  { return m_adSynthViewShiftLUT;  }
220  Double****          getBaseViewShiftLUTD      ()  { return m_adBaseViewShiftLUT;   }
221  Int****             getSynthViewShiftLUTI     ()  { return m_aiSynthViewShiftLUT;  }
222  Int****             getBaseViewShiftLUTI      ()  { return m_aiBaseViewShiftLUT;   }
223
224  Bool                getVaryingCameraParameters()  { return m_bCamParsVaryOverTime;    }
225  UInt                getCamParsCodedPrecision  ()  { return m_uiCamParsCodedPrecision; }
226  std::vector<Int>&   getViewOrderIndex         ()  { return m_aiViewOrderIndex;        }
227  Int**               getCodedScale             ()  { return m_aaiCodedScale;           }
228  Int**               getCodedOffset            ()  { return m_aaiCodedOffset;          }
229
230  // parameters for virtual depth map generation
231  Int                 getPdmPrecision           ()  { return m_iPdmPrecision;           }
232  Int**               getPdmScaleNomDelta       ()  { return m_aaiPdmScaleNomDelta;     }
233  Int**               getPdmOffset              ()  { return m_aaiPdmOffset;            }
234};
235
236
237
238
239
240template <class T>
241Void TAppComCamPara::xDeleteArray( T*& rpt, UInt uiSize1, UInt uiSize2, UInt uiSize3 )
242{
243  if( rpt )
244  {
245    for( UInt uiK = 0; uiK < uiSize1; uiK++ )
246    {
247      for( UInt uiL = 0; uiL < uiSize2; uiL++ )
248      {
249        for( UInt uiM = 0; uiM < uiSize3; uiM++ )
250        {
251          delete[] rpt[ uiK ][ uiL ][ uiM ];
252        }
253        delete[] rpt[ uiK ][ uiL ];
254      }
255      delete[] rpt[ uiK ];
256    }
257    delete[] rpt;
258  }
259  rpt = NULL;
260};
261
262
263template <class T>
264Void TAppComCamPara::xDeleteArray( T*& rpt, UInt uiSize1, UInt uiSize2 )
265{
266  if( rpt )
267  {
268    for( UInt uiK = 0; uiK < uiSize1; uiK++ )
269    {
270      for( UInt uiL = 0; uiL < uiSize2; uiL++ )
271      {
272        delete[] rpt[ uiK ][ uiL ];
273      }
274      delete[] rpt[ uiK ];
275    }
276    delete[] rpt;
277  }
278  rpt = NULL;
279};
280
281
282template <class T>
283Void TAppComCamPara::xDeleteArray( T*& rpt, UInt uiSize )
284{
285  if( rpt )
286  {
287    for( UInt uiK = 0; uiK < uiSize; uiK++ )
288    {
289      delete[] rpt[ uiK ];
290    }
291    delete[] rpt;
292  }
293  rpt = NULL;
294};
295
296
297
298#endif // __TAPPCOMCAMPARA__
299
300
301
Note: See TracBrowser for help on using the repository browser.