NANA
algorithm.h
浏览该文件的文档.
1#pragma once
2
14#include "core_global.h"
15#include "error.h"
16#include "nadef.hpp"
17
18
19
20namespace NANA {
21
23public:
24 Algorithm();
25
26 virtual ~Algorithm();
27
33 virtual int Read(std::string const& paramFile);
34
40 virtual int Save(std::string const& paramFile);
41
42
43
44protected:
45};
46
47
48
49}
全局头文件
#define NA_API
兼容windows系统与linux系统
Definition: core_global.h:24
用于抛出异常,移植自OpenCV
数值分析所依赖的定义