GraphAutoEncoder/graphAE_dataloader.py [246:258]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    pcs = []
    name_lst = os.listdir(ply_folder)
    n=0
    for name in name_lst:
        if(".ply" in name):
            if(n%100==0):
                print (n)
            fn = ply_folder+"/"+name
            pc = get_pc_from_ply_fn(fn)
            pcs+=[pc]
            n+=1
            
    pcs = np.array(pcs)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



GraphAutoEncoder/graphAE_dataloader.py [264:276]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    pcs = []
    name_lst = os.listdir(ply_folder)
    n=0
    for name in name_lst:
        if(".ply" in name):
            if(n%100==0):
                print (n)
            fn = ply_folder+"/"+name
            pc = get_pc_from_ply_fn(fn)
            pcs+=[pc]
            n+=1
            
    pcs = np.array(pcs)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



