Converts a PET image database (created via databaseCreator
) into
a matrix format suitable for functional data analysis.
Each row of the resulting matrix corresponds to a subject, and each column to a voxel's PET intensity
values at a specified brain slice.
Arguments
- database
A data frame created by
databaseCreator
, containing voxel-level PET image data, including subject identifiers, coordinates, and intensity values.- paramZ
An integer specifying the z-coordinate (slice) to extract. Default is
35
.- useSequentialNumbering
logical
. IfTRUE
, assigns sequential subject IDs instead of extracting them from filenames. Not currently used inside this function. Default isFALSE
.- quiet
logical
. IfTRUE
, suppresses progress messages. Default isFALSE
.
Value
A numeric matrix where
Each row represents one subject's PET values at the selected z-slice.
Each column corresponds to a voxel (flattened as a 1D row).
Details
This function performs the following steps
Verifies that the specified z-slice exists in the database.
Identifies the correct subject grouping column (
CN_number
orAD_number
).Determines the matrix dimensions using
x
andy
coordinates.Extracts PET intensities per subject at the given slice.
Replaces any
NaN
values with0
to ensure numerical stability.
This function typically follows databaseCreator
and precedes
meanNormalization
in the neuroSCC workflow.
See also
databaseCreator
for generating the input database. meanNormalization
for scaling matrix data prior to SCC computation.
Examples
# NOTE: To keep example runtime short, only one synthetic PET file is used.
# For full analysis, expand the filename pattern accordingly.
# Step 1: Generate a database for a single subject
controlPattern <- "^syntheticControl1\\.nii\\.gz$"
databaseControls <- databaseCreator(pattern = controlPattern, control = TRUE, quiet = TRUE)
# Step 2: Convert the database into a matrix format
matrixControls <- matrixCreator(databaseControls, paramZ = 35, quiet = TRUE)
# Display dimensions of the matrix
dim(matrixControls)
#> [1] 1 9919