.. _program_listing_file_src_navtk_utils_OutlierDetectionThreshold.hpp: Program Listing for File OutlierDetectionThreshold.hpp ====================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/navtk/utils/OutlierDetectionThreshold.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #include namespace navtk { namespace utils { class OutlierDetectionThreshold : public OutlierDetection { public: OutlierDetectionThreshold(size_t buffer_size, double threshold); bool is_last_item_an_outlier(navtk::Vector const& data) const override; private: double threshold; }; } // namespace utils } // namespace navtk