ngryman/ribs

View on GitHub
src/operation/decode.h

Summary

Maintainability
Test Coverage
/*!
 * ribs
 * Copyright (c) 2013-2014 Nicolas Gryman <ngryman@gmail.com>
 * LGPL Licensed
 */

#ifndef __RIBS_OPERATION_DECODE_H__
#define __RIBS_OPERATION_DECODE_H__

#include "../operation.h"

namespace ribs {

OPERATION(Decode,
    cv::Mat     inMat;
    std::string inFormat;
    cv::Mat     outMat;
);

}

#endif