Regular expressions are a powerful way to subset files.
They are not only used here in the BigDataProcessor2 but are widely used in many software packages.
Regular expression documentation
Test regular expressions
| .* | Selects all files |
| .*.tif$ | Only open files ending with .tif |
| .*.h5$ | Only open files ending with .h5 |
| ^((?!_All).)*.h5$ | Luxendo: Only open files ending with .h5, but not containing the text "All". |
| ^Cam_Left_(\d)+.h5$ | Luxendo: Only all left camera images. |
| ^Cam_Right_(\d)+.h5$ | Luxendo: Only all right camera images. |
| ... | Leica DSL: ... |
| ... | Leica DSL: ... |