//
// AugmentedReality.hpp
// BlockyFroggy
//
// Created by John Ryland on 16/9/17.
// Copyright © 2017 John Ryland. All rights reserved.
//
#ifndef AugmentedReality_h
#define AugmentedReality_h
#include <stdio.h>
#include <opencv2/videoio/videoio_c.h>
//#include <opencv2/core/core_c.h>
using namespace std;
using namespace cv;
class CameraInput
{
public:
CameraInput();
~CameraInput();
cv::Mat getNextFrame();
private:
//cv::VideoCapture m_captureDevice;
CvCapture* m_capture;
};
class PlaneDetector
{
public:
};
#endif /* AugmentedReality_h */