R/f_combineimages.R

##Prior Based Prediction using combined imaging modalities & SparseDecom2

library(ANTsR)
library(knitr)

setwd( '/Users/alex/GitHub/adforesight' )
output.path <- '/Users/alex/GitHub/adforesight/mydata/outdata/sd2_projall_noscale/'
#setwd( '/Users/omega/alex/adforesight' )
#output.path <- '/Users/omega/alex/adforesight/mydata/outdata/sd2_projall_noscale/'


if (dir.exists(output.path)){ 1} else {dir.create(output.path, recursive=TRUE)}

# Load in Behavior and Imaging Data
behavior <- read.csv('./mydata/All_Behavior.csv')
labled.set <-read.csv('./mydata/legendsCHASS2symmetric.csv')
labeled.brain.img <-antsImageRead('./mydata/MDT_labels_chass_symmetric.nii.gz')
mask <-antsImageRead('./mydata/MDT_mask_e3.nii')
mang_files<-list.files(path = "./mydata/imdata/", pattern = "T2_to_MDT",full.names = T,recursive = T)
mang_mat <-imagesToMatrix(mang_files,mask)
jac_files<-list.files(path = "./mydata/imdata/", pattern = "jac_to_MDT",full.names = T,recursive = T)
jac_mat <-imagesToMatrix(jac_files,mask)
suscept_files<-list.files(path = "./mydata/imdata/", pattern = "X_to_MDT",full.names = T,recursive = T)
suscept_mat <-imagesToMatrix(suscept_files,mask)

rows.test <-as.integer(c(2,3,4,9,15,17))
rows.train <-as.integer(c(23,8,18,13,14,19,16,12,11,24,20,7,6,1,22,10,5,21))

mang.train <- mang_mat[rows.train, ]
mang.test <- mang_mat[rows.test, ]
jac.train <- jac_mat[rows.train, ]
jac.test <- jac_mat[rows.test, ]
suscept.train <- suscept_mat[rows.train, ]
suscept.test <- suscept_mat[rows.test, ]
behav.train <- behavior[rows.train, ]
behav.test <-behavior[rows.test, ]
#name labels
label.ind <- c(19,20,42,47,51,54,57,59,62,63,64,65,73,81,83,91,119,121,123)

j=1

#Both (Left and Right) ROIS
##for ( j in 1:length(label.ind)){
  
  labels<-c(label.ind[j],label.ind[j]+1000)
  initmat<-matrix( rep(0,sum(mask==1)*length(labels)), nrow=length(labels) )
  output.file <- paste(output.path, as.character(labled.set$Abbreviation[label.ind[j]]),'LR_all.png',sep = "_")
  #fill the matrix with the aal region locations
  for ( i in 1:length(labels) )
  {
    vec<-( labeled.brain.img[ mask == 1 ] == labels[i] )
    initmat[i,]<-as.numeric( vec )
  }
  newmat <- as.matrix(colSums(initmat))
  newmat <- t(newmat)
  ccainit<-initializeEigenanatomy(newmat,mask)

  dist4.train <-behav.train[,'d4']
  dist4.test  <-behav.test[,'d4']
  behav.matrix <-as.matrix(dist4.train)
  eanat_region_jac<-sparseDecom2(inmatrix = list(jac.train,behav.matrix), inmask = c(mask, NA), sparseness = c(0.01,1),nvecs = 1, its = 5, cthresh = c(100, 0), mycoption = 0, smooth = 0.01, initializationList = ccainit$initlist,priorWeight = 0.5)
  eanat_region_mang<-sparseDecom2(inmatrix = list(mang.train,behav.matrix), inmask = c(mask, NA), sparseness = c(0.01,1),nvecs = 1, its = 5, cthresh = c(100, 0), mycoption = 0, smooth = 0.01, initializationList = ccainit$initlist,priorWeight = 0.5)
  eanat_region_suscept<-sparseDecom2(inmatrix = list(suscept.train,behav.matrix), inmask = c(mask, NA), sparseness = c(0.01,1), nvecs = 1, its = 5, cthresh = c(100, 0), mycoption = 0, smooth = 0.01, initializationList = ccainit$initlist,priorWeight = 0.5)

  imgmat_jac<-imageListToMatrix( eanat_region_jac$eig1 , mask )
  imgmat_mang<-imageListToMatrix( eanat_region_mang$eig1 , mask )
  imgmat_sus<-imageListToMatrix( eanat_region_suscept$eig1, mask )
  
  imgpredtrain_jac<-jac.train %*% t(imgmat_jac)
  imgpredtest_jac<-jac.test %*% t(imgmat_jac)
  imgpredtrain_mang<-mang.train %*% t(imgmat_mang)
  imgpredtest_mang<-mang.test %*% t(imgmat_mang)
  imgpredtrain_suscept<-suscept.train %*% t(imgmat_sus)
  imgpredtest_suscept<-suscept.test %*% t(imgmat_sus)
  projs.train <- data.frame(cbind(dist4.train, imgpredtrain_jac , imgpredtrain_mang ,imgpredtrain_suscept)) # column combind the behavior wth the projections
  colnames(projs.train) <- c('Dist_4','Jac','Mang','Suscept') # insert column names
  projs.test <- data.frame(cbind(dist4.test, imgpredtest_jac,  imgpredtest_mang , imgpredtest_suscept)) # column combind the behavior wth the projections
  colnames(projs.test) <- c('Dist_4','Jac','Mang','Suscept') # insert column names
  mylm <- lm('Dist_4 ~ .', data=projs.train) # behavior correlation with the number of projections
  distpred <- predict.lm(mylm, newdata=projs.test) # based on the linear model predict the distances for the same day
  modsum <-summary(lm(distpred~dist4.test))
  r2 <- modsum$adj.r.squared
  my.p <- modsum$coefficients[2,4]
  tiff(filename = output.file, width = 556, height = 579,units = "px")
  plot(dist4.test, distpred, xlab = 'Real Swim Distance on Day 4', ylab = 'Predicted Swim Distance on day 4', main='Predicted vs. Real Swim Distance on Day 4', ylim = c(0,1000),xlim = c(0,1000)) # generate plot
  abline(lm(distpred~dist4.test))
  abline(a = 0, b =1, pch=22, lty=2, col="red")
  rp = vector('expression',2)
  rp[1] = substitute(expression(italic(R)^2 == MYVALUE), list(MYVALUE = format(r2, digits = 3)))[2]
  rp[2] = substitute(expression(italic(p) == MYOTHERVALUE), list(MYOTHERVALUE = format(my.p, digits = 2)))[2]
  legend('topleft', legend = rp, bty = 'n')
  dev.off()
##}
portokalh/adforesight documentation built on May 7, 2019, 8:03 a.m.