| cc_number_folder {nandb} | R Documentation | 
Cross-correlated number calculations for every image in a folder.
Description
Perform cc_number() calculations on all TIFF images in a folder and
save the resulting images to disk.
Usage
cc_number_folder(
  folder_path = ".",
  ch1 = 1,
  ch2 = 2,
  thresh = NULL,
  detrend = FALSE,
  quick = FALSE,
  filt = NULL,
  parallel = FALSE
)
Arguments
| folder_path | The path (relative or absolute) to the folder you wish to process. | 
| ch1 | A natural number. The index of the first channel to use. | 
| ch2 | A natural number. The index of the second channel to use. | 
| thresh | Do you want to apply an intensity threshold prior to
calculating cross-correlated number (via
 | 
| detrend | Detrend your data with  | 
| quick | 
 | 
| filt | Do you want to smooth ( | 
| parallel | Would you like to use multiple cores to speed up this
function? If so, set the number of cores here, or to use all available
cores, use  | 
Examples
## Not run: 
setwd(tempdir())
ijtiff::write_tif(img, "a.tif")
ijtiff::write_tif(img, "ab.tif")
cc_number_folder()
list.files()
## End(Not run)