We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to extend scalars to vector of same length for multi-channel images:
library(ANTsRCore) #> #> Attaching package: 'ANTsRCore' #> The following objects are masked from 'package:stats': #> #> sd, var #> The following objects are masked from 'package:base': #> #> all, any, apply, max, min, prod, range, sum fname = system.file("extdata", "multi_component_image.nii.gz", package="ANTsRCore") img = ANTsRCore::antsImageRead(fname) img > 0 #> Invalid S4 object type in itk::Image<float,2>::Pointer Rcpp::as() #> [1] NA img > c(0, 0) #> antsImage #> Pixel Type : float #> Components Per Pixel: 3 #> Dimensions : 30x30 #> Voxel Spacing : 1xNA #> Origin : 0 NA #> Direction : 1 0 0 1
Created on 2019-06-19 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Need to extend scalars to vector of same length for multi-channel images:
Created on 2019-06-19 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: