| 780 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_RGB; }; |
| 781 | inline BOOL filter(const LASpoint* point) { return ((point->rgb[channel] < below_RGB) || (above_RGB < point->rgb[channel])); }; |
| 782 | LAScriterionKeepRGB(I32 below_RGB, I32 above_RGB, I32 channel) { if (above_RGB < below_RGB) { this->below_RGB = above_RGB; this->above_RGB = below_RGB; } else { this->below_RGB = below_RGB; this->above_RGB = above_RGB; }; this->channel = channel; }; |
| 783 | private: |
| 784 | I32 below_RGB, above_RGB, channel; |
| 785 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected