- Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdev.cpp
More file actions
Latest commit
21 lines (16 loc) · 411 Bytes
/
Copy pathdev.cpp
File metadata and controls
21 lines (16 loc) · 411 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/imgproc.hpp>
#include<opencv2/core/core.hpp>
#include<chrono>
#include<iostream>
#include"debugger.hpp"
#include"functions.hpp"
usingnamespacestd;
usingnamespacecv;
intmain(int argc, char *argv[]) {
debugger &d = debugger::instance();
// d.active = true;
d.start("test");
d.end("test");
d.print("hello");
}