Skip to content

Commit

Permalink
move point cloud to the right directory
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Aug 13, 2024
1 parent 1f5d7fc commit a8d7bd1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ typedef Classification::Feature::Vertical_dispersion<Kernel, Point_range, Pmap>

int main (int argc, char** argv)
{
const std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("meshes/b9.ply");
const std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("points_3/b9.ply");

std::cerr << "Reading input" << std::endl;
std::vector<Point> pts;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ typedef Classification::Cluster<Point_set, Pmap> Clu

int main (int argc, char** argv)
{
std::string filename = CGAL::data_file_path("meshes/b9.ply");
std::string filename = CGAL::data_file_path("points_3/b9.ply");
std::string filename_config = "data/b9_clusters_config.bin";

if (argc > 1)
Expand Down
2 changes: 1 addition & 1 deletion Classification/examples/Classification/example_feature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class My_feature : public CGAL::Classification::Feature_base

int main (int argc, char** argv)
{
std::string filename (argc > 1 ? argv[1] : CGAL::data_file_path("meshes/b9.ply"));
std::string filename (argc > 1 ? argv[1] : CGAL::data_file_path("points_3/b9.ply"));
std::vector<Point> pts;

std::cerr << "Reading input" << std::endl;
Expand Down
File renamed without changes.

0 comments on commit a8d7bd1

Please sign in to comment.