MCPcopy Create free account
hub / github.com/StevenWang30/R-PCC / PYBIND11_MODULE

Function PYBIND11_MODULE

ops/cpp_modules/src/cpp_modules.cpp:597–604  ·  view source on GitHub ↗

feature extractor

Source from the content-addressed store, hash-verified

595
596// feature extractor
597PYBIND11_MODULE(feature_extractor_cpp, m) {
598 m.doc() = "Find point's feature and search key points using pybind11"; // optional module docstring
599
600 m.def("extract_features_with_segment", &extract_features_with_segment, "Find point's feature and search key points after FPS segmentation.");
601 m.def("extract_features", &extract_features, "Find point's feature and search key points for whole range image.");
602
603 m.def("segment_index_clean", &segment_index_clean, "Clean the index map.");
604}
605
606// segmentation modules
607PYBIND11_MODULE(segment_utils_cpp, m) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected