@@ -139,7 +139,7 @@ namespace pcl
139
139
* but the mean of the points. If 0.0 it is equivalent to a normal z-buffer and
140
140
* will always take the minimum per cell.
141
141
* \param min_range the minimum visible range (defaults to 0)
142
- * \param border_size the border size (defaults to 0)
142
+ * \param border_size the border size (defaults to 0). Set to `std::numeric_limits<int>::min()` to turn cropping off.
143
143
*/
144
144
template <typename PointCloudType> void
145
145
createFromPointCloud (const PointCloudType& point_cloud, float angular_resolution=pcl::deg2rad (0 .5f ),
@@ -163,7 +163,7 @@ namespace pcl
163
163
* but the mean of the points. If 0.0 it is equivalent to a normal z-buffer and
164
164
* will always take the minimum per cell.
165
165
* \param min_range the minimum visible range (defaults to 0)
166
- * \param border_size the border size (defaults to 0)
166
+ * \param border_size the border size (defaults to 0). Set to `std::numeric_limits<int>::min()` to turn cropping off.
167
167
*/
168
168
template <typename PointCloudType> void
169
169
createFromPointCloud (const PointCloudType& point_cloud,
@@ -186,7 +186,7 @@ namespace pcl
186
186
* but the mean of the points. If 0.0 it is equivalent to a normal z-buffer and
187
187
* will always take the minimum per cell.
188
188
* \param min_range the minimum visible range (defaults to 0)
189
- * \param border_size the border size (defaults to 0)
189
+ * \param border_size the border size (defaults to 0). Set to `std::numeric_limits<int>::min()` to turn cropping off.
190
190
*/
191
191
template <typename PointCloudType> void
192
192
createFromPointCloudWithKnownSize (const PointCloudType& point_cloud, float angular_resolution,
@@ -211,7 +211,7 @@ namespace pcl
211
211
* but the mean of the points. If 0.0 it is equivalent to a normal z-buffer and
212
212
* will always take the minimum per cell.
213
213
* \param min_range the minimum visible range (defaults to 0)
214
- * \param border_size the border size (defaults to 0)
214
+ * \param border_size the border size (defaults to 0). Set to `std::numeric_limits<int>::min()` to turn cropping off.
215
215
*/
216
216
template <typename PointCloudType> void
217
217
createFromPointCloudWithKnownSize (const PointCloudType& point_cloud,
@@ -232,7 +232,7 @@ namespace pcl
232
232
* but the mean of the points. If 0.0 it is equivalent to a normal z-buffer and
233
233
* will always take the minimum per cell.
234
234
* \param min_range the minimum visible range (defaults to 0)
235
- * \param border_size the border size (defaults to 0)
235
+ * \param border_size the border size (defaults to 0). Set to `std::numeric_limits<int>::min()` to turn cropping off.
236
236
* \note If wrong_coordinate_system is true, the sensor pose will be rotated to change from a coordinate frame
237
237
* with x to the front, y to the left and z to the top to the coordinate frame we use here (x to the right, y
238
238
* to the bottom and z to the front) */
@@ -256,7 +256,7 @@ namespace pcl
256
256
* but the mean of the points. If 0.0 it is equivalent to a normal z-buffer and
257
257
* will always take the minimum per cell.
258
258
* \param min_range the minimum visible range (defaults to 0)
259
- * \param border_size the border size (defaults to 0)
259
+ * \param border_size the border size (defaults to 0). Set to `std::numeric_limits<int>::min()` to turn cropping off.
260
260
* \note If wrong_coordinate_system is true, the sensor pose will be rotated to change from a coordinate frame
261
261
* with x to the front, y to the left and z to the top to the coordinate frame we use here (x to the right, y
262
262
* to the bottom and z to the front) */
0 commit comments