Scans a folder and imports all matching .raw files into a list.
Usage
read_thermal_batch(folder_path, pattern = "\\.raw$", recursive = FALSE, ...)
Arguments
- folder_path
String. Path to the folder.
- pattern
String. Regex pattern. Default is "\.raw$".
- recursive
Logical. Default is FALSE.
- ...
Additional arguments passed to read_thermal_raw.
Value
A named list of "BioThermR" objects.
Examples
# \donttest{
# Example using raw thermal files
img_obj_list <- system.file("extdata",package = "BioThermR")
img_list <- read_thermal_batch(img_obj_list)
#> Reading 30 files...
#> Batch read completed. Imported 30 files.
# }