Home
last modified time | relevance | path

Searched defs:FLANNException (Results 1 – 8 of 8) sorted by relevance

/dports/math/flann/flann-1.9.1-29-g1d04523/src/cpp/flann/
H A Dgeneral.h45 FLANNException(const char* message) : std::runtime_error(message) { } in FLANNException() function
47 FLANNException(const std::string& message) : std::runtime_error(message) { } in FLANNException() function
/dports/graphics/colmap/colmap-3.6/lib/FLANN/
H A Dgeneral.h45 FLANNException(const char* message) : std::runtime_error(message) { } in FLANNException() function
47 FLANNException(const std::string& message) : std::runtime_error(message) { } in FLANNException() function
/dports/misc/openmvg/openMVG-2.0/src/third_party/flann/src/cpp/flann/
H A Dgeneral.h45 FLANNException(const char* message) : std::runtime_error(message) { } in FLANNException() function
47 FLANNException(const std::string& message) : std::runtime_error(message) { } in FLANNException() function
/dports/graphics/open3d/Open3D-0.2/src/External/flann/
H A Dgeneral.h45 FLANNException(const char* message) : std::runtime_error(message) { } in FLANNException() function
47 FLANNException(const std::string& message) : std::runtime_error(message) { } in FLANNException() function
/dports/graphics/py-open3d-python/Open3D-0.2/src/External/flann/
H A Dgeneral.h45 FLANNException(const char* message) : std::runtime_error(message) { } in FLANNException() function
47 FLANNException(const std::string& message) : std::runtime_error(message) { } in FLANNException() function
/dports/graphics/hugin/hugin-2020.0.0/src/foreign/flann/
H A Dgeneral.h44 FLANNException(const char* message) : std::runtime_error(message) { } in FLANNException() function
46 FLANNException(const std::string& message) : std::runtime_error(message) { } in FLANNException() function
/dports/graphics/opencv/opencv-4.5.3/modules/flann/include/opencv2/flann/
H A Dgeneral.h46 FLANNException(const char* message) : cv::Exception(0, message, "", __FILE__, __LINE__) { } in FLANNException() function
48FLANNException(const cv::String& message) : cv::Exception(0, message, "", __FILE__, __LINE__) { } in FLANNException() function
/dports/math/flann/flann-1.9.1-29-g1d04523/src/python/pyflann/
H A Dexceptions.py30 class FLANNException(Exception): class