예제 #1
0
파일: Faces.py 프로젝트: saaperezru/Quantum
def createBasisViewer(basisDirectory, htmlPath, Reducer, QLSA):
    try:
        os.mkdir(basisDirectory)
    except:
        print "Error Creating folder"
    return Control.imageViewGenerator(
        Reducer.reduction.basisM.max(), Reducer.reduction.basisM.min(), basisDirectory, htmlPath, 19, True, QLSA
    )
예제 #2
0
파일: Faces.py 프로젝트: saaperezru/Quantum
def createReconstructionViewer(imagesDirectory, htmlPath, Reducer, QLSA):
    try:
        os.mkdir(imagesDirectory)
    except:
        print "Error Creating folder"
    return Control.imageViewGenerator(
        Reducer.reduction.reconstructed.max(),
        Reducer.reduction.reconstructed.min(),
        imagesDirectory,
        htmlPath,
        19,
        True,
        QLSA,
    )
예제 #3
0
import Control

I = '/home/tuareg/Documents/UNAL/7mo semestre/Machine Learning 2/TMP/datasets/ORLFull'

M,L = Control.imagesMatrix(I)
M = Control.quantumNormalize(M)
quantumImagesDirectory = '/home/tuareg/Documents/UNAL/7mo semestre/Machine Learning 2/TMP/datasets/ORLFullQuantumNormalized/'
imageGenerator = Control.imageViewGenerator(M.max(),M.min(),quantumImagesDirectory,quantumImagesDirectory,112,True)

for i in range(M.shape[1]):

  imageGenerator.toImage(M[:,i],L[i])
예제 #4
0
파일: OASIS.py 프로젝트: saaperezru/Quantum
import nibabel as nib
import Control

img = nib.load("../../../datasets/oasis/OAS1_0227_MR1_mpr_n4_anon_111_t88_masked_gfc.hdr").get_data()[:,:,:,0]
imagesDirectory = "./"
height =176 
index = 100
im = img[:,100,:]
imgViewer = Control.imageViewGenerator(im.max(),0,imagesDirectory,imagesDirectory,height,False)
imgViewer.toImage(im.reshape(1,-1),"f"+str(index))