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 |
"^Cam_.*_(\d)+.h5$" | Luxendo: Open files starting with "Cam", ending on "h5" and containing numbers. |
^Cam_Left_(\d)+.h5$ | Luxendo: Open all "Left" camera images. |
^Cam_Right_(\d)+.h5$ | Luxendo: Open all "Right" camera images. |
... | Leica DSL: ... |
... | Leica DSL: ... |