Signapse
Scene.h
Go to the documentation of this file.
1#ifndef SIGNAPSE_SCENE_H
2#define SIGNAPSE_SCENE_H
3
4
5#include <opencv2/core.hpp>
6
8
11struct Point
12{
13 int x, y;
14 Point() : x(0), y(0) {}
15 Point(const Point& cpy) : x(cpy.x), y(cpy.y) {}
16 Point(int x, int y) : x(x), y(y) {}
17};
18
20
27 BoundingBox(int upperLeftX, int upperLeftY, int lowerRightX, int lowerRightY): UpperLeft(upperLeftX, upperLeftY),
28 LowerRight(lowerRightX, lowerRightY) {}
29 BoundingBox(Point upperLeft, Point lowerRight): UpperLeft(upperLeft), LowerRight(lowerRight) {}
30};
31
33
36struct Scene{
39
42 cv::Mat frame;
44
47 std::string result = "";
49
53};
54
55#endif
Struct BoundingBox.
Definition: Scene.h:23
BoundingBox(Point upperLeft, Point lowerRight)
Definition: Scene.h:29
Point LowerRight
Definition: Scene.h:25
BoundingBox()
Definition: Scene.h:26
Point UpperLeft
Definition: Scene.h:24
BoundingBox(int upperLeftX, int upperLeftY, int lowerRightX, int lowerRightY)
Definition: Scene.h:27
Struct Point.
Definition: Scene.h:12
Point(int x, int y)
Definition: Scene.h:16
int y
Definition: Scene.h:13
Point(const Point &cpy)
Definition: Scene.h:15
int x
Definition: Scene.h:13
Point()
Definition: Scene.h:14
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
Scene()
Definition: Scene.h:37