mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-03-24 14:00:17 +00:00
36 lines
635 B
C++
36 lines
635 B
C++
// Precompiled headers stuff
|
|
|
|
#ifndef __STDAFX_h_
|
|
#define __STDAFX_h_
|
|
|
|
// OpenCV includes
|
|
#include <opencv2/core/core.hpp>
|
|
#include <opencv2/imgproc.hpp>
|
|
#include <opencv2/objdetect.hpp>
|
|
#include <opencv2/calib3d.hpp>
|
|
#include <opencv2/imgcodecs.hpp>
|
|
#include <opencv2/highgui/highgui.hpp>
|
|
|
|
// IplImage stuff
|
|
#include <opencv2/core/core_c.h>
|
|
#include <opencv2/imgproc/imgproc_c.h>
|
|
|
|
// C++ stuff
|
|
#include <stdio.h>
|
|
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
#define _USE_MATH_DEFINES
|
|
#include <cmath>
|
|
|
|
// Boost stuff
|
|
#include <filesystem.hpp>
|
|
#include <filesystem/fstream.hpp>
|
|
|
|
#endif
|