Changeset 132 in pacpussensors
- Timestamp:
- Jan 16, 2017, 6:10:17 PM (8 years ago)
- Location:
- trunk/Vislab
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Vislab/VislabCamera.cpp
r131 r132 24 24 25 25 //ComponentFactory<VislabCamera> sFactory("VislabComponent"); 26 /*! Constructor */26 /*! Constructor with 2 instantiations of DiskWriter and 2 instatiations of Display*/ 27 27 VislabCamera::VislabCamera(const QString& name) 28 28 :diskwriterVideo(name,lib3dv::image::type::RIGHT_RECTIFIED), -
trunk/Vislab/VislabImageProcessor.cpp
r131 r132 9 9 void VislabImageProcessor::image_callback(boost::shared_ptr< const lib3dv::image> image, unsigned int) 10 10 { 11 //std::cout << "[II] 3dv-client: Gruyere" << std::endl;12 11 if(image->m_type == mImageType) 13 12 { 13 /*! Type picture : Mono 8 */ 14 14 if(image->m_format == lib3dv::image::format::MONO8) 15 15 { … … 23 23 } 24 24 25 /*! Type picture : Mono 16 */ 25 26 if(image->m_format == lib3dv::image::format::MONO16) 26 27 {
Note:
See TracChangeset
for help on using the changeset viewer.