Changeset 137 in flair-src for trunk/lib/FlairSensorActuator/src/V4LCamera.cpp
- Timestamp:
- Feb 14, 2017, 3:06:20 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/V4LCamera.cpp
r124 r137 20 20 #include <DoubleSpinBox.h> 21 21 #include <CheckBox.h> 22 #include <GridLayout.h>23 22 #include <Label.h> 24 23 #include <cvimage.h> … … 33 32 namespace sensor { 34 33 35 V4LCamera::V4LCamera( const FrameworkManager *parent,string name,34 V4LCamera::V4LCamera(string name, 36 35 uint8_t camera_index, uint16_t width, uint16_t height, 37 36 cvimage::Type::Format format, uint8_t priority) 38 : Thread( parent, name, priority),39 Camera( parent,name, width, height, format) {37 : Thread(getFrameworkManager(), name, priority), 38 Camera(name, width, height, format) { 40 39 capture = cvCaptureFromCAM(camera_index); // a mettre apres l'init dsp 41 40
Note:
See TracChangeset
for help on using the changeset viewer.