| 1154 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_intensity, above_intensity); }; |
| 1155 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_INTENSITY; }; |
| 1156 | inline BOOL filter(const LASpoint* point) { return (point->get_intensity() < below_intensity) || (point->get_intensity() > above_intensity); }; |
| 1157 | LAScriterionKeepIntensity(U16 below_intensity, U16 above_intensity) { this->below_intensity = below_intensity; this->above_intensity = above_intensity; }; |
| 1158 | private: |
| 1159 | U16 below_intensity, above_intensity; |
nothing calls this directly
no outgoing calls
no test coverage detected