orbbec-sdk-sys 0.1.2+2.5.5

Low-level Rust bindings for https://github.com/orbbec/OrbbecSDK_v2
Documentation
// Copyright (c) Orbbec Inc. All Rights Reserved.
// Licensed under the MIT License.

#pragma once

#include "IFrameMetadataModifier.hpp"
#include "DeviceComponentBase.hpp"

namespace libobsensor {

class DabaiALGMSLMetadataModifier : public IFrameMetadataModifier, public DeviceComponentBase {
public:
    DabaiALGMSLMetadataModifier(IDevice *owner);
    virtual ~DabaiALGMSLMetadataModifier() override;

    void modify(std::shared_ptr<Frame> frame) override;
};

}  // namespace libobsensor