Msl.h 310 Bytes
Newer Older
Nianchen Deng's avatar
Nianchen Deng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "../utils/common.h"
#include "Net.h"

class Msl {
public:
    Net *net;

    Msl();

    virtual bool load(const std::string &netDir);
    virtual void bindResources(Resource *resEncoded, Resource *resDepths, Resource *resColors);
    virtual bool infer();
    virtual void dispose();
};