TMC3.cpp 39.1 KB
Newer Older
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
1
/* The copyright in this software is being made available under the BSD
David Flynn's avatar
David Flynn committed
2
3
4
 * Licence, included below.  This software may be subject to other third
 * party and contributor rights, including patent rights, and no such
 * rights are granted under this licence.
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
5
 *
David Flynn's avatar
David Flynn committed
6
 * Copyright (c) 2017-2018, ISO/IEC
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
7
8
9
10
11
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
David Flynn's avatar
David Flynn committed
12
13
14
15
16
17
18
19
20
21
 * * Redistributions of source code must retain the above copyright
 *   notice, this list of conditions and the following disclaimer.
 *
 * * Redistributions in binary form must reproduce the above copyright
 *   notice, this list of conditions and the following disclaimer in the
 *   documentation and/or other materials provided with the distribution.
 *
 * * Neither the name of the ISO/IEC nor the names of its contributors
 *   may be used to endorse or promote products derived from this
 *   software without specific prior written permission.
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
22
23
24
25
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
David Flynn's avatar
David Flynn committed
26
27
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
28
29
30
31
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
David Flynn's avatar
David Flynn committed
32
33
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
34
35
36
 */

#include "TMC3.h"
David Flynn's avatar
David Flynn committed
37
38
39
40
41

#include <memory>

#include "PCCTMC3Encoder.h"
#include "PCCTMC3Decoder.h"
42
#include "constants.h"
43
#include "ply.h"
44
#include "pointset_processing.h"
45
#include "program_options_lite.h"
46
#include "io_tlv.h"
47
#include "version.h"
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
48
49
50
51

using namespace std;
using namespace pcc;

52
53
54
55
56
//============================================================================

struct Parameters {
  bool isDecoder;

57
58
59
  // command line parsing should adjust dist2 values according to PQS
  bool positionQuantizationScaleAdjustsDist2;

60
61
62
  // output mode for ply writing (binary or ascii)
  bool outputBinaryPly;

63
64
65
  // when true, configure the encoder as if no attributes are specified
  bool disableAttributeCoding;

66
67
68
69
70
71
  // Frame number of first file in input sequence.
  int firstFrameNum;

  // Number of frames to process.
  int frameCount;

72
73
74
75
  std::string uncompressedDataPath;
  std::string compressedStreamPath;
  std::string reconstructedDataPath;

76
77
78
79
  // Filename for saving recoloured point cloud (encoder).
  std::string postRecolorPath;

  // Filename for saving pre inverse scaled point cloud (decoder).
80
81
  std::string preInvScalePath;

82
83
84
  pcc::EncoderParams encoder;
  pcc::DecoderParams decoder;

85
86
  // perform attribute colourspace conversion on ply input/output.
  bool convertColourspace;
87
88
89

  // todo(df): this should be per-attribute
  int reflectanceScale;
90
91
};

92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//----------------------------------------------------------------------------

class SequenceEncoder : public PCCTMC3Encoder3::Callbacks {
public:
  // NB: params must outlive the lifetime of the decoder.
  SequenceEncoder(Parameters* params);

  int compress(Stopwatch* clock);

protected:
  int compressOneFrame(Stopwatch* clock);

  void onOutputBuffer(const PayloadBuffer& buf) override;
  void onPostRecolour(const PCCPointSet3& cloud) override;

private:
108
109
  ply::PropertyNameMap _plyAttrNames;

110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  Parameters* params;
  PCCTMC3Encoder3 encoder;

  std::ofstream bytestreamFile;

  int frameNum;
};

//----------------------------------------------------------------------------

class SequenceDecoder : public PCCTMC3Decoder3::Callbacks {
public:
  // NB: params must outlive the lifetime of the decoder.
  SequenceDecoder(const Parameters* params);

  int decompress(Stopwatch* clock);

protected:
128
129
130
  void onOutputCloud(
    const SequenceParameterSet& sps,
    const PCCPointSet3& decodedPointCloud) override;
131
132
133
134
135
136
137
138
139
140
141

private:
  const Parameters* params;
  PCCTMC3Decoder3 decoder;

  std::ofstream bytestreamFile;

  int frameNum;
  Stopwatch* clock;
};

142
143
//============================================================================

144
145
146
147
148
void convertToGbr(const SequenceParameterSet& sps, PCCPointSet3& cloud);
void convertFromGbr(const SequenceParameterSet& sps, PCCPointSet3& cloud);

//============================================================================

149
150
151
int
main(int argc, char* argv[])
{
152
  cout << "MPEG PCC tmc3 version " << ::pcc::version << endl;
153

Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
154
155
156
157
  Parameters params;
  if (!ParseParameters(argc, argv, params)) {
    return -1;
  }
158
159
160
161
162
163
164

  // Timers to count elapsed wall/user time
  pcc::chrono::Stopwatch<std::chrono::steady_clock> clock_wall;
  pcc::chrono::Stopwatch<pcc::chrono::utime_inc_children_clock> clock_user;

  clock_wall.start();

Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
165
  int ret = 0;
166
  if (params.isDecoder) {
167
    ret = SequenceDecoder(&params).decompress(&clock_user);
168
  } else {
169
    ret = SequenceEncoder(&params).compress(&clock_user);
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
170
171
  }

172
173
174
175
176
177
178
179
  clock_wall.stop();

  using namespace std::chrono;
  auto total_wall = duration_cast<milliseconds>(clock_wall.count()).count();
  auto total_user = duration_cast<milliseconds>(clock_user.count()).count();
  std::cout << "Processing time (wall): " << total_wall / 1000.0 << " s\n";
  std::cout << "Processing time (user): " << total_user / 1000.0 << " s\n";

Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
180
181
182
  return ret;
}

183
184
185
186
187
188
189
190
191
192
193
194
195
//---------------------------------------------------------------------------

std::array<const char*, 3>
axisOrderToPropertyNames(AxisOrder order)
{
  static const std::array<const char*, 3> kAxisOrderToPropertyNames[] = {
    {"z", "y", "x"}, {"x", "y", "z"}, {"x", "z", "y"}, {"y", "z", "x"},
    {"z", "y", "x"}, {"z", "x", "y"}, {"y", "x", "z"}, {"x", "y", "z"},
  };

  return kAxisOrderToPropertyNames[int(order)];
}

196
197
198
//---------------------------------------------------------------------------
// :: Command line / config parsing helpers

199
200
201
202
template<typename T>
static std::istream&
readUInt(std::istream& in, T& val)
{
203
204
205
206
207
208
  unsigned int tmp;
  in >> tmp;
  val = T(tmp);
  return in;
}

209
210
namespace pcc {
static std::istream&
211
operator>>(std::istream& in, ColourMatrix& val)
212
213
214
215
216
{
  return readUInt(in, val);
}
}  // namespace pcc

217
namespace pcc {
218
static std::istream&
219
operator>>(std::istream& in, AxisOrder& val)
220
{
221
222
  return readUInt(in, val);
}
223
}  // namespace pcc
224

225
namespace pcc {
226
static std::istream&
227
operator>>(std::istream& in, AttributeEncoding& val)
228
{
229
  return readUInt(in, val);
230
231
}
}  // namespace pcc
232

233
234
235
236
237
238
239
240
namespace pcc {
static std::istream&
operator>>(std::istream& in, PartitionMethod& val)
{
  return readUInt(in, val);
}
}  // namespace pcc

241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
namespace pcc {
static std::ostream&
operator<<(std::ostream& out, const ColourMatrix& val)
{
  switch (val) {
  case ColourMatrix::kIdentity: out << "0 (Identity)"; break;
  case ColourMatrix::kBt709: out << "1 (Bt709)"; break;
  case ColourMatrix::kUnspecified: out << "2 (Unspecified)"; break;
  case ColourMatrix::kReserved_3: out << "3 (Reserved)"; break;
  case ColourMatrix::kUsa47Cfr73dot682a20:
    out << "4 (Usa47Cfr73dot682a20)";
    break;
  case ColourMatrix::kBt601: out << "5 (Bt601)"; break;
  case ColourMatrix::kSmpte170M: out << "6 (Smpte170M)"; break;
  case ColourMatrix::kSmpte240M: out << "7 (Smpte240M)"; break;
  case ColourMatrix::kYCgCo: out << "8 (kYCgCo)"; break;
  case ColourMatrix::kBt2020Ncl: out << "9 (Bt2020Ncl)"; break;
  case ColourMatrix::kBt2020Cl: out << "10 (Bt2020Cl)"; break;
  case ColourMatrix::kSmpte2085: out << "11 (Smpte2085)"; break;
  default: out << "Unknown"; break;
  }
  return out;
}
}  // namespace pcc

266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
namespace pcc {
static std::ostream&
operator<<(std::ostream& out, const AxisOrder& val)
{
  switch (val) {
  case AxisOrder::kZYX: out << "0 (zyx)"; break;
  case AxisOrder::kXYZ: out << "1 (xyz)"; break;
  case AxisOrder::kXZY: out << "2 (xzy)"; break;
  case AxisOrder::kYZX: out << "3 (yzx)"; break;
  case AxisOrder::kZYX_4: out << "4 (zyx)"; break;
  case AxisOrder::kZXY: out << "5 (zxy)"; break;
  case AxisOrder::kYXZ: out << "6 (yxz)"; break;
  case AxisOrder::kXYZ_7: out << "7 (xyz)"; break;
  }
  return out;
}
}  // namespace pcc

284
namespace pcc {
285
static std::ostream&
286
operator<<(std::ostream& out, const AttributeEncoding& val)
287
{
288
  switch (val) {
289
290
291
  case AttributeEncoding::kPredictingTransform: out << "0 (Pred)"; break;
  case AttributeEncoding::kRAHTransform: out << "1 (RAHT)"; break;
  case AttributeEncoding::kLiftingTransform: out << "2 (Lift)"; break;
292
293
  }
  return out;
294
295
}
}  // namespace pcc
296

297
298
299
300
301
302
namespace pcc {
static std::ostream&
operator<<(std::ostream& out, const PartitionMethod& val)
{
  switch (val) {
  case PartitionMethod::kNone: out << "0 (None)"; break;
303
304
  case PartitionMethod::kUniformGeom: out << "2 (UniformGeom)"; break;
  case PartitionMethod::kOctreeUniform: out << "3 (UniformOctree)"; break;
305
  default: out << int(val) << " (Unknown)"; break;
306
307
308
309
310
  }
  return out;
}
}  // namespace pcc

311
312
313
namespace df {
namespace program_options_lite {
  template<typename T>
314
  struct option_detail<pcc::Vec3<T>> {
315
316
317
318
    static constexpr bool is_container = true;
    static constexpr bool is_fixed_size = true;
    typedef T* output_iterator;

319
320
    static void clear(pcc::Vec3<T>& container){};
    static output_iterator make_output_iterator(pcc::Vec3<T>& container)
321
322
323
324
325
326
327
    {
      return &container[0];
    }
  };
}  // namespace program_options_lite
}  // namespace df

328
329
330
//---------------------------------------------------------------------------
// :: Command line / config parsing

331
332
333
bool
ParseParameters(int argc, char* argv[], Parameters& params)
{
334
335
  namespace po = df::program_options_lite;

336
337
338
  struct {
    AttributeDescription desc;
    AttributeParameterSet aps;
339
    EncoderAttributeParams encoder;
340
341
  } params_attr;

342
343
344
345
346
347
348
349
350
351
352
353
354
  bool print_help = false;

  // a helper to set the attribute
  std::function<po::OptionFunc::Func> attribute_setter =
    [&](po::Options&, const std::string& name, po::ErrorReporter) {
      // copy the current state of parsed attribute parameters
      //
      // NB: this does not cause the default values of attr to be restored
      // for the next attribute block.  A side-effect of this is that the
      // following is allowed leading to attribute foo having both X=1 and
      // Y=2:
      //   "--attr.X=1 --attribute foo --attr.Y=2 --attribute foo"
      //
355
356
357
358
359
360
361
362

      // NB: insert returns any existing element
      const auto& it = params.encoder.attributeIdxMap.insert(
        {name, int(params.encoder.attributeIdxMap.size())});

      if (it.second) {
        params.encoder.sps.attributeSets.push_back(params_attr.desc);
        params.encoder.aps.push_back(params_attr.aps);
363
        params.encoder.attr.push_back(params_attr.encoder);
364
365
366
367
368
369
        return;
      }

      // update existing entry
      params.encoder.sps.attributeSets[it.first->second] = params_attr.desc;
      params.encoder.aps[it.first->second] = params_attr.aps;
370
      params.encoder.attr[it.first->second] = params_attr.encoder;
371
372
    };

373
  /* clang-format off */
374
375
376
377
378
379
380
381
382
383
384
  // The definition of the program/config options, along with default values.
  //
  // NB: when updating the following tables:
  //      (a) please keep to 80-columns for easier reading at a glance,
  //      (b) do not vertically align values -- it breaks quickly
  //
  po::Options opts;
  opts.addOptions()
  ("help", print_help, false, "this help text")
  ("config,c", po::parseConfigFile, "configuration file name")

385
386
  (po::Section("General"))

387
  ("mode", params.isDecoder, false,
388
389
    "The encoding/decoding mode:\n"
    "  0: encode\n"
390
    "  1: decode")
391
392

  // i/o parameters
393
394
395
396
397
398
399
400
401
  ("firstFrameNum",
     params.firstFrameNum, 0,
     "Frame number for use with interpolating %d format specifiers"
     "in input/output filenames")

  ("frameCount",
     params.frameCount, 1,
     "Number of frames to encode")

402
  ("reconstructedDataPath",
403
404
    params.reconstructedDataPath, {},
    "The ouput reconstructed pointcloud file path (decoder only)")
405
406

  ("uncompressedDataPath",
407
408
    params.uncompressedDataPath, {},
    "The input pointcloud file path")
409
410

  ("compressedStreamPath",
411
412
    params.compressedStreamPath, {},
    "The compressed bitstream path (encoder=output, decoder=input)")
413

414
  ("postRecolorPath",
415
    params.postRecolorPath, {},
416
    "Recolored pointcloud file path (encoder only)")
417
418

  ("preInvScalePath",
419
    params.preInvScalePath, {},
420
    "Pre inverse scaled pointcloud file path (decoder only)")
421

422
423
424
425
  ("outputBinaryPly",
    params.outputBinaryPly, false,
    "Output ply files using binary (or otherwise ascii) format")

426
427
428
  ("convertPlyColourspace",
    params.convertColourspace, true,
    "Convert ply colourspace according to attribute colourMatrix")
429

430
  // general
431
432
433
434
435
436
  // todo(df): this should be per-attribute
  ("hack.reflectanceScale",
    params.reflectanceScale, 1,
    "scale factor to be applied to reflectance "
    "pre encoding / post reconstruction")

437
438
439
440
441
442
443
  (po::Section("Decoder"))

  ("skipOctreeLayers",
    params.decoder.minGeomNodeSizeLog2, 0,
    " 0   : Full decode. \n"
    " N>0 : Skip the bottom N layers in decoding process.\n"
    " skipLayerNum indicates the number of skipped lod layers from leaf lod.")
444
445
446

  (po::Section("Encoder"))

447
448
449
450
451
452
453
  ("geometry_axis_order",
    params.encoder.sps.geometry_axis_order, AxisOrder::kXYZ,
    "Sets the geometry axis coding order:\n"
    "  0: (zyx)\n  1: (xyz)\n  2: (xzy)\n"
    "  3: (yzx)\n  4: (zyx)\n  5: (zxy)\n"
    "  6: (yxz)\n  7: (xyz)")

454
455
456
457
458
459
460
461
462
  ("seq_bounding_box_xyz0",
    params.encoder.sps.seq_bounding_box_xyz0, {0},
    "seq_bounding_box_xyz0.  NB: seq_bounding_box_whd must be set for this "
    "parameter to have an effect")

  ("seq_bounding_box_whd",
    params.encoder.sps.seq_bounding_box_whd, {0},
    "seq_bounding_box_whd")

463
  ("positionQuantizationScale",
464
    params.encoder.sps.seq_source_geom_scale_factor, 1.f,
465
    "Scale factor to be applied to point positions during quantization process")
466

467
468
469
470
  ("positionQuantizationScaleAdjustsDist2",
    params.positionQuantizationScaleAdjustsDist2, false,
    "Scale dist2 values by squared positionQuantizationScale")

471
  ("mergeDuplicatedPoints",
472
    params.encoder.gps.geom_unique_points_flag, true,
473
    "Enables removal of duplicated points")
474

475
  ("partitionMethod",
476
    params.encoder.partition.method, PartitionMethod::kUniformGeom,
477
    "Method used to partition input point cloud into slices/tiles:\n"
478
479
    "  0: none\n"
    "  1: none (deprecated)\n"
480
481
    "  2: n Uniform-Geometry partition bins along the longest edge\n"
    "  3: Uniform Geometry partition at n octree depth")
482

483
  ("partitionOctreeDepth",
484
485
486
487
488
489
490
491
492
493
494
495
496
497
    params.encoder.partition.octreeDepth, 1,
    "Depth of octree partition for partitionMethod=4")

  ("sliceMaxPoints",
    params.encoder.partition.sliceMaxPoints, 1100000,
    "Maximum number of points per slice")

  ("sliceMinPoints",
    params.encoder.partition.sliceMinPoints, 550000,
    "Minimum number of points per slice (soft limit)")

  ("tileSize",
    params.encoder.partition.tileSize, 0,
    "Partition input into cubic tiles of given size")
498

499
500
501
502
  ("cabac_bypass_stream_enabled_flag",
    params.encoder.sps.cabac_bypass_stream_enabled_flag, false,
    "Controls coding method for ep(bypass) bins")

503
504
505
506
  ("disableAttributeCoding",
    params.disableAttributeCoding, false,
    "Ignore attribute coding configuration")

507
  (po::Section("Geometry"))
508

509
  // tools
510
511
512
513
514
515
  ("bitwiseOccupancyCoding",
    params.encoder.gps.bitwise_occupancy_coding_flag, true,
    "Selects between bitwise and bytewise occupancy coding:\n"
    "  0: bytewise\n"
    "  1: bitwise")

516
  ("neighbourContextRestriction",
517
    params.encoder.gps.neighbour_context_restriction_flag, false,
518
    "Limit geometry octree occupancy contextualisation to sibling nodes")
519

520
  ("neighbourAvailBoundaryLog2",
521
    params.encoder.gps.neighbour_avail_boundary_log2, 0,
522
523
524
    "Defines the avaliability volume for neighbour occupancy lookups."
    " 0: unconstrained")

525
  ("inferredDirectCodingMode",
526
    params.encoder.gps.inferred_direct_coding_mode_enabled_flag, true,
527
    "Permits early termination of the geometry octree for isolated points")
528

529
530
531
532
  ("adjacentChildContextualization",
    params.encoder.gps.adjacent_child_contextualization_enabled_flag, true,
    "Occupancy contextualization using neighbouring adjacent children")

533
534
535
536
  ("intra_pred_max_node_size_log2",
    params.encoder.gps.intra_pred_max_node_size_log2, 0,
    "octree nodesizes eligible for occupancy intra prediction")

537
538
539
540
  ("ctxOccupancyReductionFactor",
     params.encoder.gps.geom_occupancy_ctx_reduction_factor, 3,
     "Adjusts the number of contexts used in occupancy coding")

541
542
543
544
  ("trisoup_node_size_log2",
    params.encoder.gps.trisoup_node_size_log2, 0,
    "Size of nodes for surface triangulation.\n"
    "  0: disabled\n")
545

546
547
548
549
550
551
552
553
  ("positionQuantisationEnabled",
    params.encoder.gps.geom_scaling_enabled_flag, false,
    "Enable in-loop quantisation of positions")

  ("positionBaseQp",
    params.encoder.gps.geom_base_qp, 4,
    "Base QP used in position quantisation")

554
555
556
557
  ("positionSliceQpOffset",
    params.encoder.gbh.geom_slice_qp_offset, 0,
    "Per-slice QP offset used in position quantisation")

558
  ("positionQuantisationOctreeDepth",
559
560
    params.encoder.gbh.geom_octree_qp_offset_depth, -1,
    "Octree depth used for signalling position QP offsets (-1 => disabled)")
561

562
563
  (po::Section("Attributes"))

564
565
566
  // attribute processing
  //   NB: Attribute options are special in the way they are applied (see above)
  ("attribute",
567
568
569
    attribute_setter,
    "Encode the given attribute (NB, must appear after the"
    "following attribute parameters)")
570

571
572
573
574
  ("bitdepth",
    params_attr.desc.attr_bitdepth, 8,
    "Attribute bitdepth")

575
576
577
578
579
  // todo(df): this should be per-attribute
  ("colourMatrix",
    params_attr.desc.cicp_matrix_coefficients_idx, ColourMatrix::kBt709,
    "Matrix used in colourspace conversion\n"
    "  0: none (identity)\n"
580
581
    "  1: ITU-T BT.709\n"
    "  8: YCgCo")
582

583
  ("transformType",
584
    params_attr.aps.attr_encoding, AttributeEncoding::kPredictingTransform,
585
    "Coding method to use for attribute:\n"
586
    "  0: Hierarchical neighbourhood prediction\n"
587
    "  1: Region Adaptive Hierarchical Transform (RAHT)\n"
588
    "  2: Hierarichical neighbourhood prediction as lifting transform")
589
590

  ("rahtDepth",
591
    params_attr.aps.raht_depth, 21,
592
593
    "Number of bits for morton representation of an RAHT co-ordinate"
    "component")
594

595
596
597
598
  ("rahtPredictionEnabled",
    params_attr.aps.raht_prediction_enabled_flag, true,
    "Controls the use of transform-domain prediction")

599
  ("numberOfNearestNeighborsInPrediction",
600
    params_attr.aps.num_pred_nearest_neighbours, 3,
601
    "Attribute's maximum number of nearest neighbors to be used for prediction")
602

603
604
605
606
607
608
  ("adaptivePredictionThreshold",
    params_attr.aps.adaptive_prediction_threshold, -1,
    "Neighbouring attribute value difference that enables choice of "
    "single|multi predictors. Applies to transformType=2 only.\n"
    "  -1: auto = 2**(bitdepth-2)")

609
610
611
612
  ("attributeSearchRange",
    params_attr.aps.search_range, 128,
    "Range for nearest neighbor search")

613
614
615
616
  ("lod_neigh_bias",
    params_attr.aps.lod_neigh_bias, {1, 1, 1},
    "Attribute's intra prediction weight for Z axis")

617
618
619
620
621
622
  ("lodDecimation",
    params_attr.aps.lod_decimation_enabled_flag, false,
    "Controls LoD generation method:\n"
    " 0: distance based subsampling\n"
    " 1: decimation by 1:3")

623
624
625
626
627
  ("max_num_direct_predictors",
    params_attr.aps.max_num_direct_predictors, 3,
    "Maximum number of nearest neighbour candidates used in direct"
    "attribute prediction")

628
  ("levelOfDetailCount",
629
    params_attr.aps.num_detail_levels, 1,
630
    "Attribute's number of levels of detail")
631

632
633
  ("dist2",
    params_attr.aps.dist2, {},
634
635
    "Attribute's list of squared distances, or initial value for automatic"
    "derivation")
636

637
638
639
640
  ("intraLodPredictionEnabled",
    params_attr.aps.intra_lod_prediction_enabled_flag, false,
    "Permits referring to points in same LoD")

641
642
643
644
645
  ("interComponentPredictionEnabled",
    params_attr.aps.inter_component_prediction_enabled_flag, false,
    "Use primary attribute component to predict values of subsequent "
    "components")

646
647
648
649
  ("aps_scalable_enable_flag",
    params_attr.aps.scalable_lifting_enabled_flag, false,
    "Enable scalable attritube coding")

650
651
652
653
654
655
656
  ("qp",
    params_attr.aps.init_qp, 4,
    "Attribute's luma quantisation parameter")

  ("qpChromaOffset",
    params_attr.aps.aps_chroma_qp_offset, 0,
    "Attribute's chroma quantisation parameter offset (relative to luma)")
657
658
659
660

  ("aps_slice_qp_deltas_present_flag",
    params_attr.aps.aps_slice_qp_deltas_present_flag, false,
    "Enable signalling of per-slice QP values")
661

662
  ("qpLayerOffsetsLuma",
663
664
    params_attr.encoder.abh.attr_layer_qp_delta_luma, {},
      "Attribute's per layer luma QP offsets")
665
666

  ("qpLayerOffsetsChroma",
667
668
      params_attr.encoder.abh.attr_layer_qp_delta_chroma, {},
      "Attribute's per layer chroma QP offsets")
669

670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
  // This section is just dedicated to attribute recolouring (encoder only).
  // parameters are common to all attributes.
  (po::Section("Recolouring"))

  ("recolourSearchRange",
    params.encoder.recolour.searchRange, 8,
    "")

  ("recolourNumNeighboursFwd",
    params.encoder.recolour.numNeighboursFwd, 8,
    "")

  ("recolourNumNeighboursBwd",
    params.encoder.recolour.numNeighboursBwd, 1,
    "")

  ("recolourUseDistWeightedAvgFwd",
    params.encoder.recolour.useDistWeightedAvgFwd, true,
    "")

  ("recolourUseDistWeightedAvgBwd",
    params.encoder.recolour.useDistWeightedAvgBwd, true,
    "")

  ("recolourSkipAvgIfIdenticalSourcePointPresentFwd",
    params.encoder.recolour.skipAvgIfIdenticalSourcePointPresentFwd, true,
    "")

  ("recolourSkipAvgIfIdenticalSourcePointPresentBwd",
    params.encoder.recolour.skipAvgIfIdenticalSourcePointPresentBwd, false,
    "")

  ("recolourDistOffsetFwd",
    params.encoder.recolour.distOffsetFwd, 4.,
    "")

  ("recolourDistOffsetBwd",
    params.encoder.recolour.distOffsetBwd, 4.,
    "")

  ("recolourMaxGeometryDist2Fwd",
    params.encoder.recolour.maxGeometryDist2Fwd, 1000.,
    "")

  ("recolourMaxGeometryDist2Bwd",
    params.encoder.recolour.maxGeometryDist2Bwd, 1000.,
    "")

  ("recolourMaxAttributeDist2Fwd",
    params.encoder.recolour.maxAttributeDist2Fwd, 1000.,
    "")

  ("recolourMaxAttributeDist2Bwd",
    params.encoder.recolour.maxAttributeDist2Bwd, 1000.,
    "")

726
  ;
727
  /* clang-format on */
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742

  po::setDefaults(opts);
  po::ErrorReporter err;
  const list<const char*>& argv_unhandled =
    po::scanArgv(opts, argc, (const char**)argv, err);

  for (const auto arg : argv_unhandled) {
    err.warn() << "Unhandled argument ignored: " << arg << "\n";
  }

  if (argc == 1 || print_help) {
    po::doHelp(std::cout, opts, 78);
    return false;
  }

743
744
  // Certain coding modes are not available when trisoup is enabled.
  // Disable them, and warn if set (they may be set as defaults).
745
  if (params.encoder.gps.trisoup_node_size_log2 > 0) {
746
747
748
749
750
751
752
753
754
755
    if (!params.encoder.gps.geom_unique_points_flag)
      err.warn() << "TriSoup geometry does not preserve duplicated points\n";

    if (params.encoder.gps.inferred_direct_coding_mode_enabled_flag)
      err.warn() << "TriSoup geometry is incompatable with IDCM\n";

    params.encoder.gps.geom_unique_points_flag = true;
    params.encoder.gps.inferred_direct_coding_mode_enabled_flag = false;
  }

756
757
758
759
760
761
762
  // support disabling attribute coding (simplifies configuration)
  if (params.disableAttributeCoding) {
    params.encoder.attributeIdxMap.clear();
    params.encoder.sps.attributeSets.clear();
    params.encoder.aps.clear();
  }

763
  // fixup any per-attribute settings
764
  for (const auto& it : params.encoder.attributeIdxMap) {
765
    auto& attr_sps = params.encoder.sps.attributeSets[it.second];
766
    auto& attr_aps = params.encoder.aps[it.second];
767
    auto& attr_enc = params.encoder.attr[it.second];
768

769
770
771
772
773
    // default values for attribute
    attr_sps.cicp_colour_primaries_idx = 2;
    attr_sps.cicp_transfer_characteristics_idx = 2;
    attr_sps.cicp_video_full_range_flag = true;

774
    if (it.first == "reflectance") {
775
      // Avoid wasting bits signalling chroma quant step size for reflectance
776
      attr_aps.aps_chroma_qp_offset = 0;
777
      attr_enc.abh.attr_layer_qp_delta_chroma.clear();
778
779
780
781
782
783
784
785
786
787

      // There is no matrix for reflectace
      attr_sps.cicp_matrix_coefficients_idx = ColourMatrix::kUnspecified;
      attr_sps.attr_num_dimensions = 1;
      attr_sps.attributeLabel = KnownAttributeLabel::kReflectance;
    }

    if (it.first == "color") {
      attr_sps.attr_num_dimensions = 3;
      attr_sps.attributeLabel = KnownAttributeLabel::kColour;
788
789
    }

790
791
792
793
794
    // Derive the secondary bitdepth
    // todo(df): this needs to be a command line argument
    //  -- but there are a few edge cases to handle
    attr_sps.attr_bitdepth_secondary = attr_sps.attr_bitdepth;

795
796
797
798
    // Assume that YCgCo is actually YCgCoR for now
    if (attr_sps.cicp_matrix_coefficients_idx == ColourMatrix::kYCgCo)
      attr_sps.attr_bitdepth_secondary++;

799
800
801
802
803
    bool isLifting =
      attr_aps.attr_encoding == AttributeEncoding::kPredictingTransform
      || attr_aps.attr_encoding == AttributeEncoding::kLiftingTransform;

    // derive the dist2 values based on an initial value
804
805
    if (isLifting) {
      if (attr_aps.dist2.size() > attr_aps.num_detail_levels) {
806
        attr_aps.dist2.resize(attr_aps.num_detail_levels);
807
808
809
810
811
812
813
814
815
816
817
      } else if (
        attr_aps.dist2.size() < attr_aps.num_detail_levels
        && !attr_aps.dist2.empty()) {
        if (attr_aps.dist2.size() < attr_aps.num_detail_levels) {
          attr_aps.dist2.resize(attr_aps.num_detail_levels);
          const double distRatio = 4.0;
          uint64_t d2 = attr_aps.dist2[0];
          for (int i = 0; i < attr_aps.num_detail_levels; ++i) {
            attr_aps.dist2[i] = d2;
            d2 = uint64_t(std::round(distRatio * d2));
          }
818
819
820
        }
      }
    }
821
822
823
824
825
826
827
828
829
830
831
    // In order to simplify specification of dist2 values, which are
    // depending on the scale of the coded point cloud, the following
    // adjust the dist2 values according to PQS.  The user need only
    // specify the unquantised PQS value.
    if (params.positionQuantizationScaleAdjustsDist2) {
      double pqs = params.encoder.sps.seq_source_geom_scale_factor;
      double pqs2 = pqs * pqs;
      for (auto& dist2 : attr_aps.dist2)
        dist2 = int64_t(std::round(pqs2 * dist2));
    }

832
833
834
835
836
837
838
839
    // Set default threshold based on bitdepth
    if (attr_aps.adaptive_prediction_threshold == -1) {
      attr_aps.adaptive_prediction_threshold = 1
        << (attr_sps.attr_bitdepth - 2);
    }

    if (attr_aps.attr_encoding == AttributeEncoding::kLiftingTransform) {
      attr_aps.adaptive_prediction_threshold = 0;
840
      attr_aps.intra_lod_prediction_enabled_flag = false;
841
842
843
    }

    // For RAHT, ensure that the unused lod count = 0 (prevents mishaps)
844
    if (attr_aps.attr_encoding == AttributeEncoding::kRAHTransform) {
845
      attr_aps.num_detail_levels = 0;
846
      attr_aps.adaptive_prediction_threshold = 0;
847
848
849
    }
  }

850
  // sanity checks
851

852
853
854
855
856
857
  if (
    params.encoder.partition.sliceMaxPoints
    < params.encoder.partition.sliceMinPoints)
    err.error()
      << "sliceMaxPoints must be greater than or equal to sliceMinPoints\n";

858
859
860
861
862
  if (params.encoder.gps.intra_pred_max_node_size_log2)
    if (!params.encoder.gps.neighbour_avail_boundary_log2)
      err.error() << "Geometry intra prediction requires finite"
                     "neighbour_avail_boundary_log2\n";

863
864
865
  for (const auto& it : params.encoder.attributeIdxMap) {
    const auto& attr_sps = params.encoder.sps.attributeSets[it.second];
    const auto& attr_aps = params.encoder.aps[it.second];
866
867
868
869
870
871
872
873
874
875
    auto& attr_enc = params.encoder.attr[it.second];

    if (it.first == "color") {
      if (
        attr_enc.abh.attr_layer_qp_delta_luma.size()
        != attr_enc.abh.attr_layer_qp_delta_chroma.size()) {
        err.error() << it.first
                    << ".qpLayerOffsetsLuma length != .qpLayerOffsetsChroma\n";
      }
    }
876
877
878
879
880

    bool isLifting =
      attr_aps.attr_encoding == AttributeEncoding::kPredictingTransform
      || attr_aps.attr_encoding == AttributeEncoding::kLiftingTransform;

881
882
    if (attr_sps.attr_bitdepth > 16)
      err.error() << it.first << ".bitdepth must be less than 17\n";
883

884
885
    if (attr_sps.attr_bitdepth_secondary > 16)
      err.error() << it.first << ".bitdepth_secondary must be less than 17\n";
886

887
    if (isLifting) {
888
      int lod = attr_aps.num_detail_levels;
889
      if (lod > 255 || lod < 0) {
890
        err.error() << it.first
891
                    << ".levelOfDetailCount must be in the range [0,255]\n";
892
      }
893
894
      if (attr_aps.dist2.size() != lod) {
        err.error() << it.first << ".dist2 does not have " << lod
895
                    << " entries\n";
896
      }
897

898
899
900
901
902
      if (attr_aps.adaptive_prediction_threshold < 0) {
        err.error() << it.first
                    << ".adaptivePredictionThreshold must be positive\n";
      }

903
      if (
904
        attr_aps.num_pred_nearest_neighbours
905
        > kAttributePredictionMaxNeighbourCount) {
906
907
        err.error() << it.first
                    << ".numberOfNearestNeighborsInPrediction must be <= "
908
                    << kAttributePredictionMaxNeighbourCount << "\n";
909
      }
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
      if (attr_aps.scalable_lifting_enabled_flag) {
        if (attr_aps.attr_encoding != AttributeEncoding::kLiftingTransform) {
          err.error() << it.first << "AttributeEncoding must be "
                      << (int)AttributeEncoding::kLiftingTransform << "\n";
        }

        if (attr_aps.lod_decimation_enabled_flag) {
          err.error() << it.first
                      << ".lod_decimation_enabled_flag must be = 0 \n";
        }

        if (params.encoder.gps.trisoup_node_size_log2 > 0) {
          err.error() << it.first
                      << "trisoup_node_size_log2 must be disabled \n";
        }
      }
926
    }
927
928
929
930
931
932
933
934

    if (attr_aps.init_qp < 4)
      err.error() << it.first << ".qp must be greater than 3\n";

    if (attr_aps.init_qp + attr_aps.aps_chroma_qp_offset < 4) {
      err.error() << it.first << ".qpChromaOffset must be greater than "
                  << attr_aps.init_qp - 5 << "\n";
    }
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
935
936
  }

937
938
  // check required arguments are specified

939
  if (!params.isDecoder && params.uncompressedDataPath.empty())
940
941
    err.error() << "uncompressedDataPath not set\n";

942
  if (params.isDecoder && params.reconstructedDataPath.empty())
943
944
945
946
947
948
949
950
951
952
    err.error() << "reconstructedDataPath not set\n";

  if (params.compressedStreamPath.empty())
    err.error() << "compressedStreamPath not set\n";

  // report the current configuration (only in the absence of errors so
  // that errors/warnings are more obvious and in the same place).
  if (err.is_errored)
    return false;

953
954
  // Dump the complete derived configuration
  cout << "+ Effective configuration parameters\n";
955

956
  po::dumpCfg(cout, opts, "General", 4);
957
  if (params.isDecoder) {
958
    po::dumpCfg(cout, opts, "Decoder", 4);
959
  } else {
960
961
    po::dumpCfg(cout, opts, "Encoder", 4);
    po::dumpCfg(cout, opts, "Geometry", 4);
962
    po::dumpCfg(cout, opts, "Recolouring", 4);
963

964
    for (const auto& it : params.encoder.attributeIdxMap) {
965
      // NB: when dumping the config, opts references params_attr
966
967
      params_attr.desc = params.encoder.sps.attributeSets[it.second];
      params_attr.aps = params.encoder.aps[it.second];
968
      params_attr.encoder = params.encoder.attr[it.second];
969
970
971
      cout << "    " << it.first << "\n";
      po::dumpCfg(cout, opts, "Attributes", 8);
    }
Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
972
973
  }

974
975
  cout << endl;

Khaled Mammou's avatar
TMC3v0  
Khaled Mammou committed
976
977
  return true;
}
978

979
980
981
//============================================================================

SequenceEncoder::SequenceEncoder(Parameters* params) : params(params)
982
983
984
985
986
{
  // determine the naming (ordering) of ply properties
  _plyAttrNames.position =
    axisOrderToPropertyNames(params->encoder.sps.geometry_axis_order);
}
987
988
989
990
991
992
993
994
995
996
997
998
999
1000

//----------------------------------------------------------------------------

int
SequenceEncoder::compress(Stopwatch* clock)
{
  bytestreamFile.open(params->compressedStreamPath, ios::binary);
  if (!bytestreamFile.is_open()) {
    return -1;
  }

  const int lastFrameNum = params->firstFrameNum + params->frameCount;
  for (frameNum = params->firstFrameNum; frameNum < lastFrameNum; frameNum++) {
    if (compressOneFrame(clock))
For faster browsing, not all history is shown. View entire blame