mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 16:10:40 +02:00
28 lines
489 B
C++
28 lines
489 B
C++
//
|
|
// Visage.h
|
|
// interface
|
|
//
|
|
// Created by Andrzej Kapolka on 2/11/14.
|
|
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __interface__Visage__
|
|
#define __interface__Visage__
|
|
|
|
namespace VisageSDK {
|
|
class VisageTracker2;
|
|
}
|
|
|
|
/// Handles input from the Visage webcam feature tracking software.
|
|
class Visage {
|
|
public:
|
|
|
|
Visage();
|
|
~Visage();
|
|
|
|
private:
|
|
|
|
VisageSDK::VisageTracker2* _tracker;
|
|
};
|
|
|
|
#endif /* defined(__interface__Visage__) */
|