Signapse
CNNProcessor.cpp
Go to the documentation of this file.
1#include "CNNProcessor.h"
2
7void CNNProcessor::LoadModel(std::string modelPath){
8 net = cv::dnn::readNetFromTensorflow(modelPath);
9}
10
17}
18
19
26 int x = scene.regionOfInterest.UpperLeft.x; int y = scene.regionOfInterest.UpperLeft.y;
27 int width = scene.regionOfInterest.LowerRight.x - x;
28 int height = scene.regionOfInterest.LowerRight.y - y;
29 cv::Mat roi = scene.frame(cv::Range(y, y+height), cv::Range(x, x+width));
30 cv::Mat small;
31 cv::resize(roi, small, cv::Size(settings.InputDim_x,settings.InputDim_y));
32 cv::Mat blob;
33 cv::dnn::blobFromImage(small, blob, (1.0 / 255.0));
34 return blob;
35}
36
43 if(scene.frame.empty()) return scene;
44 cv::Mat blob = MakeBlob(scene);
45 net.setInput(blob);
46 cv::Mat prob = net.forward();
47 cv::Point classIdPoint;
48 double confidence;
49 minMaxLoc(prob.reshape(1, 1), 0, &confidence, 0, &classIdPoint);
50 int classId = classIdPoint.x;
51 scene.result = SignapseUtils::getLetterFromDigit(classId);
52 return scene;
53}
54
55
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)
Point LowerRight
Definition: Scene.h:25
Point UpperLeft
Definition: Scene.h:24
int y
Definition: Scene.h:13
int x
Definition: Scene.h:13
Struct Scene.
Definition: Scene.h:36
std::string result
Member variable.
Definition: Scene.h:47
cv::Mat frame
Member variable.
Definition: Scene.h:42
BoundingBox regionOfInterest
Member variable.
Definition: Scene.h:52