Skip to content

Commit

Permalink
Merge pull request #2986 from ev-mp/current
Browse files Browse the repository at this point in the history
Disable save_to_ply option - python 3.6 CI
  • Loading branch information
ev-mp authored Dec 30, 2018
2 parents 1aa6c24 + 90a61f6 commit 308be29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wrappers/python/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,8 @@ PYBIND11_MODULE(NAME, m) {

/* rs_export.hpp */
py::class_<rs2::save_to_ply, rs2::filter> save_to_ply(m, "save_to_ply");
save_to_ply.def(py::init<std::string, rs2::pointcloud>(), "filename"_a = "RealSense Pointcloud ", "pc"_a = rs2::pointcloud())
.def_readonly_static("option_ignore_color", &rs2::save_to_ply::OPTION_IGNORE_COLOR);
save_to_ply.def(py::init<std::string, rs2::pointcloud>(), "filename"_a = "RealSense Pointcloud ", "pc"_a = rs2::pointcloud());
//TODO - Fix Linux/Python3_6 .def_readonly_static("option_ignore_color", &rs2::save_to_ply::OPTION_IGNORE_COLOR);

py::class_<rs2::save_single_frameset, rs2::filter> save_single_frameset(m, "save_single_frameset");
save_single_frameset.def(py::init<std::string>(), "filename"_a = "RealSense Frameset ");
Expand Down

0 comments on commit 308be29

Please sign in to comment.