12 lines
302 B
C++
12 lines
302 B
C++
// ImageMan.h : Include file for standard system include files,
|
|
// or project specific include files.
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
#include "opencv2/imgproc.hpp"
|
|
#include "opencv2/imgcodecs.hpp"
|
|
#include "opencv2/highgui.hpp"
|
|
|
|
// TODO: Reference additional headers your program requires here.
|