Spatially filters each recorded image in the STC files of an FMR project in the frequency domain.
objDocument.SpatialSmoothingFD2DEx(intHighPass, intLowPass, strNewFMRFileName, strNewSTCPrefix)
Valid only if objDocument is of type FMR. The method operates identical as the SpatialSmoothingFD2D version. In addition to the specification of the high-pass and low pass filter values, the name of the resulting FMR project (strNewFMRFileName) and the resulting STC prefix (strNewSTCPrefix) must be specified.
' VBScript
Set doc = BrainVoyager.OpenDocument("cg_objects.fmr")
doc.SpatialSmoothingFD2DEx
1, 32, "cg_objects_SSFD-1-32.fmr", "slice_SSFD-"
// JScript
doc = BrainVoyager.OpenDocument("cg_objects.fmr");
doc.SpatialSmoothingFD2DEx(1,
32, "cg_objects_SSFD-1-32.fmr", "slice_SSFD-");
# PerlScript
$doc = $BrainVoyager->OpenDocument("cg_objects.fmr");
$doc->SpatialSmoothingFD2DEx(1,
32, "cg_objects_SSFD-1-32.fmr", "slice_SSFD-");