00001 /* 00002 Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke 00003 All rights reserved. 00004 00005 Redistribution and use in source and binary forms, with or without 00006 modification, are permitted provided that the following conditions are met: 00007 * Redistributions of source code must retain the above copyright 00008 notice, this list of conditions and the following disclaimer. 00009 * Redistributions in binary form must reproduce the above copyright 00010 notice, this list of conditions and the following disclaimer in the 00011 documentation and/or other materials provided with the distribution. 00012 * Neither the name of the Universite de Sherbrooke nor the 00013 names of its contributors may be used to endorse or promote products 00014 derived from this software without specific prior written permission. 00015 00016 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 00017 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 00018 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00019 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY 00020 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00021 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00022 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00023 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00024 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00025 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00026 */ 00027 00028 #pragma once 00029 00030 #include "rtabmap/core/RtabmapExp.h" // DLL export/import defines 00031 00032 #include <rtabmap/core/Parameters.h> 00033 #include <rtabmap/utilite/UThread.h> 00034 #include <rtabmap/utilite/UEventsSender.h> 00035 00036 namespace rtabmap 00037 { 00038 00039 class Camera; 00040 class StereoDense; 00041 00046 class RTABMAP_EXP CameraThread : 00047 public UThread, 00048 public UEventsSender 00049 { 00050 public: 00051 // ownership transferred 00052 CameraThread(Camera * camera, const ParametersMap & parameters = ParametersMap()); 00053 virtual ~CameraThread(); 00054 00055 void setMirroringEnabled(bool enabled) {_mirroring = enabled;} 00056 void setColorOnly(bool colorOnly) {_colorOnly = colorOnly;} 00057 void setImageDecimation(int decimation) {_imageDecimation = decimation;} 00058 void setStereoToDepth(bool enabled) {_stereoToDepth = enabled;} 00059 00060 void setScanFromDepth( 00061 bool enabled, 00062 int decimation=4, 00063 float maxDepth=4.0f, 00064 float voxelSize = 0.0f, 00065 int normalsK = 0) 00066 { 00067 _scanFromDepth = enabled; 00068 _scanDecimation=decimation; 00069 _scanMaxDepth = maxDepth; 00070 _scanVoxelSize = voxelSize; 00071 _scanNormalsK = normalsK; 00072 } 00073 00074 //getters 00075 bool isPaused() const {return !this->isRunning();} 00076 bool isCapturing() const {return this->isRunning();} 00077 void setImageRate(float imageRate); 00078 00079 Camera * camera() {return _camera;} // return null if not set, valid until CameraThread is deleted 00080 00081 private: 00082 virtual void mainLoop(); 00083 virtual void mainLoopKill(); 00084 00085 private: 00086 Camera * _camera; 00087 bool _mirroring; 00088 bool _colorOnly; 00089 int _imageDecimation; 00090 bool _stereoToDepth; 00091 bool _scanFromDepth; 00092 int _scanDecimation; 00093 float _scanMaxDepth; 00094 float _scanMinDepth; 00095 float _scanVoxelSize; 00096 int _scanNormalsK; 00097 StereoDense * _stereoDense; 00098 }; 00099 00100 } // namespace rtabmap