Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ofxaddons
ofxCloudLib
Commits
603fb48f
Commit
603fb48f
authored
Feb 11, 2018
by
artificiel
Browse files
EuclidianExtractor: augmentation de la limite superieure de points
parent
27af14c4
Changes
1
Show whitespace changes
Inline
Side-by-side
src/ofxCloudLib/EuclidianExtractor.hpp
View file @
603fb48f
...
...
@@ -75,7 +75,7 @@ class EuclidianExtractor : public ofThread
pcl
::
EuclideanClusterExtraction
<
pcl
::
PointXYZ
>
ec
;
ec
.
setClusterTolerance
(
cluster_distance_tolerance
);
ec
.
setMinClusterSize
(
cluster_minimum_points
);
ec
.
setMaxClusterSize
(
25
000
);
// whatever?
ec
.
setMaxClusterSize
(
100
000
);
// whatever?
mettre 100k au lieu de 25k semble regler un crash rare
ec
.
setSearchMethod
(
tree
);
ec
.
setInputCloud
(
cloud
);
ec
.
extract
(
cluster_indices
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment