| 256 | }; |
| 257 | |
| 258 | Color getColor( uint8_t classification ) |
| 259 | { |
| 260 | if ( classification < lasDefaultPalette.size() ) |
| 261 | return lasDefaultPalette.at( classification ); |
| 262 | else |
| 263 | return Color::black(); |
| 264 | } |
| 265 | |
| 266 | Expected<PointCloud> process( lazperf::reader::basic_file& reader, const PointsLoadSettings& settings ) |
| 267 | { |
no test coverage detected