mirror of
https://github.com/overte-org/overte.git
synced 2025-06-20 13:59:59 +02:00
23 lines
523 B
C++
23 lines
523 B
C++
//
|
|
// UVCCameraControl.hpp
|
|
// UVCCameraControl
|
|
//
|
|
// Created by Andrzej Kapolka on 6/18/13.
|
|
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef UVCCameraControl_UVCCameraControl_hpp
|
|
#define UVCCameraControl_UVCCameraControl_hpp
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void configureCamera(int vendorID, int productID, int autoExposure, float exposure, float contrast, float saturation,
|
|
float sharpness, int autoWhiteBalance, float whiteBalance);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|