-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Velodyne VLP LiDAR Grabber; Refactored Velodyne HDL…
… Grabber as a result
- Loading branch information
Showing
7 changed files
with
808 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* Software License Agreement (BSD License) | ||
* | ||
* Point Cloud Library (PCL) - www.pointclouds.org | ||
* Copyright (c) 2012 The MITRE Corporation | ||
* | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. | ||
* * Neither the name of the copyright holder(s) nor the names of its | ||
* contributors may be used to endorse or promote products derived | ||
* from this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
*/ | ||
|
||
#include "pcl/pcl_config.h" | ||
|
||
#ifndef PCL_IO_VLP_GRABBER_H_ | ||
#define PCL_IO_VLP_GRABBER_H_ | ||
|
||
#include <pcl/io/hdl_grabber.h> | ||
#include <pcl/io/grabber.h> | ||
#include <pcl/point_types.h> | ||
#include <pcl/point_cloud.h> | ||
#include <boost/asio.hpp> | ||
#include <string> | ||
|
||
namespace pcl | ||
{ | ||
|
||
/** \brief Grabber for the Velodyne LiDAR (VLP), based on the Velodyne High Definition Laser (HDL) | ||
* \author Keven Ring <keven@mitre.org> | ||
* \ingroup io | ||
*/ | ||
class PCL_EXPORTS VLPGrabber : public HDLGrabber | ||
{ | ||
public: | ||
/** \brief Constructor taking an optional path to an vlp corrections file. The Grabber will listen on the default IP/port for data packets [192.168.3.255/2368] | ||
* \param[in] pcapFile Path to a file which contains previously captured data packets. This parameter is optional | ||
*/ | ||
VLPGrabber (const std::string& pcapFile = ""); | ||
|
||
/** \brief Constructor taking a specified IP/port | ||
* \param[in] ipAddress IP Address that should be used to listen for VLP packets | ||
* \param[in] port UDP Port that should be used to listen for VLP packets | ||
*/ | ||
VLPGrabber (const boost::asio::ip::address& ipAddress, | ||
const unsigned short port); | ||
|
||
/** \brief virtual Destructor inherited from the Grabber interface. It never throws. */ | ||
virtual | ||
~VLPGrabber () throw (); | ||
|
||
/** \brief Obtains the name of this I/O Grabber | ||
* \return The name of the grabber | ||
*/ | ||
virtual std::string | ||
getName () const; | ||
|
||
private: | ||
virtual void | ||
toPointClouds (HDLDataPacket *dataPacket); | ||
boost::asio::ip::address | ||
getDefaultNetworkAddress (); | ||
void | ||
loadVLP16Corrections (); | ||
}; | ||
} | ||
|
||
#endif /* PCL_IO_VLP_GRABBER_H_ */ |
Oops, something went wrong.