File tree 2 files changed +8
-0
lines changed
octree/include/pcl/octree
sample_consensus/include/pcl/sample_consensus
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,10 @@ class OctreeKey {
138
138
(!!(this ->z & depthMask)));
139
139
}
140
140
141
+ PCL_DEPRECATED (1 , 18 , " Use getMaxDepth() instead." )
142
+ static const unsigned char maxDepth =
143
+ static_cast <unsigned char >(sizeof (uindex_t ) * 8 );
144
+
141
145
static unsigned char
142
146
getMaxDepth ()
143
147
{
Original file line number Diff line number Diff line change @@ -567,6 +567,10 @@ namespace pcl
567
567
/* * \brief A pointer to the vector of point indices to use. */
568
568
IndicesPtr indices_;
569
569
570
+ /* * The maximum number of samples to try until we get a good one */
571
+ PCL_DEPRECATED (1 , 18 , " Use getMaxSampleSize() instead." )
572
+ static const unsigned int max_sample_checks_ = 1000 ;
573
+
570
574
/* * \brief The minimum and maximum radius limits for the model.
571
575
* Applicable to all models that estimate a radius.
572
576
*/
You can’t perform that action at this time.
0 commit comments