31 lines
521 B
C++
31 lines
521 B
C++
|
#include "api/processor/depth_processor.h"
|
||
|
|
||
|
#include <glog/logging.h>
|
||
|
|
||
|
MYNTEYE_BEGIN_NAMESPACE
|
||
|
|
||
|
DepthProcessor::DepthProcessor() : Processor() {
|
||
|
VLOG(2) << __func__;
|
||
|
}
|
||
|
|
||
|
DepthProcessor::~DepthProcessor() {
|
||
|
VLOG(2) << __func__;
|
||
|
}
|
||
|
|
||
|
std::string DepthProcessor::Name() {
|
||
|
return NAME;
|
||
|
}
|
||
|
|
||
|
Object *DepthProcessor::OnCreateOutput() {
|
||
|
return nullptr;
|
||
|
}
|
||
|
|
||
|
void DepthProcessor::OnProcess(
|
||
|
Object *const in, Object *const out, Processor *const parent) {
|
||
|
UNUSED(in)
|
||
|
UNUSED(out)
|
||
|
UNUSED(parent)
|
||
|
}
|
||
|
|
||
|
MYNTEYE_END_NAMESPACE
|