ToFDepthFrameGenerator.h 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * TI Voxel Lib component.
  3. *
  4. * Copyright (c) 2014 Texas Instruments Inc.
  5. */
  6. #ifndef VOXEL_TOF_DEPTH_FRAME_GENERATOR_H
  7. #define VOXEL_TOF_DEPTH_FRAME_GENERATOR_H
  8. #include <FrameGenerator.h>
  9. #include <TI3DToFExports.h>
  10. #include "ToFFrameGenerator.h"
  11. namespace Voxel
  12. {
  13. namespace TI
  14. {
  15. class TI3DTOF_EXPORT ToFDepthFrameGenerator: public DepthFrameGenerator
  16. {
  17. float _amplitudeScalingFactor, _depthScalingFactor;
  18. FramePtr _intermediate;
  19. ToFFrameGeneratorPtr _tofFrameGenerator;
  20. virtual bool _onReadConfiguration();
  21. virtual bool _onWriteConfiguration();
  22. public:
  23. ToFDepthFrameGenerator();
  24. virtual bool generate(const FramePtr &in, FramePtr &out);
  25. bool setParameters(float amplitudeScalingFactor, float depthScalingFactor);
  26. virtual bool setProcessedFrameGenerator(FrameGeneratorPtr &p);
  27. virtual ~ToFDepthFrameGenerator() {}
  28. };
  29. }
  30. }
  31. #endif