mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-07-26 14:54:30 +08:00
63 lines
2.3 KiB
C++
63 lines
2.3 KiB
C++
// Copyright 2016 The Draco Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
#ifndef DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_ATTRIBUTE_DECODER_H_
|
|
#define DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_ATTRIBUTE_DECODER_H_
|
|
|
|
#include "compression/attributes/prediction_schemes/prediction_scheme_interface.h"
|
|
#include "compression/point_cloud/point_cloud_decoder.h"
|
|
|
|
namespace draco {
|
|
|
|
// A base class for decoding attribute values encoded by the
|
|
// SequentialAttributeEncoder.
|
|
class SequentialAttributeDecoder {
|
|
public:
|
|
SequentialAttributeDecoder();
|
|
virtual ~SequentialAttributeDecoder() = default;
|
|
|
|
virtual bool Initialize(PointCloudDecoder *decoder, int attribute_id);
|
|
|
|
// Intialization for a specific attribute. This can be used mostly for
|
|
// standalone decoding of an attribute without an PointCloudDecoder.
|
|
virtual bool InitializeStandalone(PointAttribute *attribute);
|
|
|
|
virtual bool Decode(const std::vector<PointIndex> &point_ids,
|
|
DecoderBuffer *in_buffer);
|
|
|
|
const PointAttribute *attribute() const { return attribute_; }
|
|
int attribute_id() const { return attribute_id_; }
|
|
PointCloudDecoder *decoder() const { return decoder_; }
|
|
|
|
protected:
|
|
// Should be used to initialize newly created prediction scheme.
|
|
// Returns false when the initialization failed (in which case the scheme
|
|
// cannot be used).
|
|
virtual bool InitPredictionScheme(PredictionSchemeInterface *ps);
|
|
|
|
// The actual implementation of the attribute decoding. Should be overriden
|
|
// for specialized decoders.
|
|
virtual bool DecodeValues(const std::vector<PointIndex> &point_ids,
|
|
DecoderBuffer *in_buffer);
|
|
|
|
private:
|
|
PointCloudDecoder *decoder_;
|
|
PointAttribute *attribute_;
|
|
int attribute_id_;
|
|
};
|
|
|
|
} // namespace draco
|
|
|
|
#endif // DRACO_COMPRESSION_ATTRIBUTES_SEQUENTIAL_ATTRIBUTE_DECODER_H_
|