MYNT-EYE-S-SDK/src/api/processor/rectify_processor.cc
2018-04-27 09:58:53 +08:00

31 lines
537 B
C++

#include "api/processor/rectify_processor.h"
#include <glog/logging.h>
MYNTEYE_BEGIN_NAMESPACE
RectifyProcessor::RectifyProcessor() : Processor() {
VLOG(2) << __func__;
}
RectifyProcessor::~RectifyProcessor() {
VLOG(2) << __func__;
}
std::string RectifyProcessor::Name() {
return NAME;
}
Object *RectifyProcessor::OnCreateOutput() {
return nullptr;
}
void RectifyProcessor::OnProcess(
Object *const in, Object *const out, Processor *const parent) {
UNUSED(in)
UNUSED(out)
UNUSED(parent)
}
MYNTEYE_END_NAMESPACE