Signapse
CNNProcessor.h
Go to the documentation of this file.
1#ifndef SIGNAPSE_CNNPROCESSOR_H
2#define SIGNAPSE_CNNPROCESSOR_H
3
4#include <opencv2/dnn.hpp>
5#include <opencv2/imgproc.hpp>
6#include <opencv2/imgproc/imgproc.hpp>
7
8#include <stdio.h>
9#include <chrono>
10#include <thread>
11
12#include "SchedulableLink.h"
14#include "SignapseUtils.h"
15
16
21public:
24 cv::Mat MakeBlob(Scene scene);
25
26protected:
28 void LoadModel(std::string modelPath);
29 cv::dnn::Net net;
30};
31
32#endif
cv::dnn::Net net
Definition: CNNProcessor.h:29
CNNProcessor(CNNProcessorSettings s)
void LoadModel(std::string modelPath)
Definition: CNNProcessor.cpp:7
Scene ProcessScene(Scene s)
CNNProcessorSettings settings
Definition: CNNProcessor.h:27
cv::Mat MakeBlob(Scene scene)
Struct Scene.
Definition: Scene.h:36