├── Python_Demo ├── demo_inverse_model │ ├── Dv.mat │ ├── Jacobi.mat │ └── coordinates.mat └── main.py ├── README.md └── Src ├── BSBL_L1.m ├── BSBL_weighted.m ├── Block_Sparse_Bayesian_Learning.m ├── Create_2D_Simulation_Circular.m ├── Main.m ├── Map_image_to_pixel.m ├── Models └── j2d3c │ └── j2d3c.mat ├── New Text Document.txt ├── Quick_Data ├── Circular2Circular │ ├── polyelement_inv.mat │ ├── polyelement_inv1.mat │ ├── polyelement_sim.mat │ ├── polyelement_sim1.mat │ ├── weights.mat │ └── weights1.mat └── MAPS │ └── From_Image_to_2Dpixel │ ├── Image_374678_to_1225pixels.mat │ ├── Image_379336_to_1225pixels.mat │ └── Image_393657_to_1225pixels.mat ├── Real_Data ├── Edited_photos │ ├── fantom_1_1.jpg │ ├── fantom_1_1_scheme.svg │ ├── fantom_1_1_simple.JPG │ ├── fantom_1_2.jpg │ ├── fantom_1_2_scheme.svg │ ├── fantom_1_2_simple.JPG │ ├── fantom_1_3.jpg │ ├── fantom_1_3_scheme.svg │ ├── fantom_1_3_simple.JPG │ ├── fantom_1_4.jpg │ ├── fantom_1_4_scheme.svg │ ├── fantom_1_4_simple.JPG │ ├── fantom_2_1.jpg │ ├── fantom_2_1_scheme.svg │ ├── fantom_2_1_simple.JPG │ ├── fantom_2_2.jpg │ ├── fantom_2_2_scheme.svg │ ├── fantom_2_2_simple.JPG │ ├── fantom_2_4.jpg │ ├── fantom_2_4_scheme.svg │ ├── fantom_2_4_simple.JPG │ ├── fantom_3_1.jpg │ ├── fantom_3_1_scheme.svg │ ├── fantom_3_1_simple.JPG │ ├── fantom_3_2.jpg │ ├── fantom_3_2_scheme.svg │ ├── fantom_3_2_simple.JPG │ ├── fantom_3_3_scheme.jpg │ ├── fantom_3_3_scheme.svg │ ├── fantom_3_3_simple.JPG │ ├── fantom_3_4.jpg │ ├── fantom_3_4_scheme.svg │ ├── fantom_3_4_simple.JPG │ ├── fantom_3_6_scheme.jpg │ ├── fantom_3_6_scheme.svg │ ├── fantom_3_6_simple.JPG │ ├── fantom_4_4.jpg │ ├── fantom_4_4_scheme.svg │ └── fantom_4_4_simple.JPG ├── LoadData.m.txt ├── data_mat_files │ ├── datamat_1_0.mat │ ├── datamat_1_1.mat │ ├── datamat_1_2.mat │ ├── datamat_1_3.mat │ ├── datamat_1_4.mat │ ├── datamat_2_1.mat │ ├── datamat_2_2.mat │ ├── datamat_2_3.mat │ ├── datamat_2_4.mat │ ├── datamat_2_5.mat │ ├── datamat_2_6.mat │ ├── datamat_3_1.mat │ ├── datamat_3_2.mat │ ├── datamat_3_3.mat │ ├── datamat_3_4.mat │ ├── datamat_3_5.mat │ ├── datamat_3_6.mat │ ├── datamat_4_1.mat │ ├── datamat_4_2.mat │ ├── datamat_4_3.mat │ ├── datamat_4_4.mat │ ├── datamat_5_1.mat │ ├── datamat_5_2.mat │ ├── datamat_6_1.mat │ ├── datamat_6_2.mat │ ├── datamat_6_3.mat │ ├── datamat_6_4.mat │ ├── datamat_6_5.mat │ ├── datamat_6_6.mat │ ├── datamat_6_7.mat │ ├── datamat_7_1.mat │ ├── datamat_7_2.mat │ ├── datamat_8_1.mat │ ├── datamat_8_2.mat │ ├── datamat_8_3.mat │ ├── datamat_8_4.mat │ ├── datamat_8_5.mat │ └── datamat_8_6.mat └── targets.JPG ├── Total_Var.m ├── calc_pix_Laplacian.m ├── calculate_pure_Jacobian.m ├── color_to_conductivity_decoder.m ├── dual_variable_scaling_rule.m ├── edge_matrix_with_diags.m ├── estimate_weights.m ├── find_neighbour_clusters.m ├── get_ground_truth.m ├── get_recplot.m ├── iterative_GTR.m ├── make_2d_geom.m ├── make_inverse_geometry.m ├── reference_1.mat ├── reference_2.mat ├── retrieve_pattern_coupling.m ├── reveal_real_measurements.m └── single_step_GTR.m /Python_Demo/demo_inverse_model/Dv.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Python_Demo/demo_inverse_model/Dv.mat -------------------------------------------------------------------------------- /Python_Demo/demo_inverse_model/Jacobi.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Python_Demo/demo_inverse_model/Jacobi.mat -------------------------------------------------------------------------------- /Python_Demo/demo_inverse_model/coordinates.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Python_Demo/demo_inverse_model/coordinates.mat -------------------------------------------------------------------------------- /Python_Demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Python_Demo/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/README.md -------------------------------------------------------------------------------- /Src/BSBL_L1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/BSBL_L1.m -------------------------------------------------------------------------------- /Src/BSBL_weighted.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/BSBL_weighted.m -------------------------------------------------------------------------------- /Src/Block_Sparse_Bayesian_Learning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Block_Sparse_Bayesian_Learning.m -------------------------------------------------------------------------------- /Src/Create_2D_Simulation_Circular.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Create_2D_Simulation_Circular.m -------------------------------------------------------------------------------- /Src/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Main.m -------------------------------------------------------------------------------- /Src/Map_image_to_pixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Map_image_to_pixel.m -------------------------------------------------------------------------------- /Src/Models/j2d3c/j2d3c.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Models/j2d3c/j2d3c.mat -------------------------------------------------------------------------------- /Src/New Text Document.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/Quick_Data/Circular2Circular/polyelement_inv.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/Circular2Circular/polyelement_inv.mat -------------------------------------------------------------------------------- /Src/Quick_Data/Circular2Circular/polyelement_inv1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/Circular2Circular/polyelement_inv1.mat -------------------------------------------------------------------------------- /Src/Quick_Data/Circular2Circular/polyelement_sim.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/Circular2Circular/polyelement_sim.mat -------------------------------------------------------------------------------- /Src/Quick_Data/Circular2Circular/polyelement_sim1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/Circular2Circular/polyelement_sim1.mat -------------------------------------------------------------------------------- /Src/Quick_Data/Circular2Circular/weights.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/Circular2Circular/weights.mat -------------------------------------------------------------------------------- /Src/Quick_Data/Circular2Circular/weights1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/Circular2Circular/weights1.mat -------------------------------------------------------------------------------- /Src/Quick_Data/MAPS/From_Image_to_2Dpixel/Image_374678_to_1225pixels.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/MAPS/From_Image_to_2Dpixel/Image_374678_to_1225pixels.mat -------------------------------------------------------------------------------- /Src/Quick_Data/MAPS/From_Image_to_2Dpixel/Image_379336_to_1225pixels.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/MAPS/From_Image_to_2Dpixel/Image_379336_to_1225pixels.mat -------------------------------------------------------------------------------- /Src/Quick_Data/MAPS/From_Image_to_2Dpixel/Image_393657_to_1225pixels.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Quick_Data/MAPS/From_Image_to_2Dpixel/Image_393657_to_1225pixels.mat -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_1.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_1_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_1_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_1_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_1_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_2.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_2_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_2_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_2_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_2_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_3.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_3_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_3_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_3_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_3_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_4.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_4_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_4_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_1_4_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_1_4_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_1.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_1_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_1_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_1_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_1_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_2.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_2_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_2_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_2_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_2_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_4.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_4_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_4_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_2_4_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_2_4_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_1.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_1_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_1_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_1_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_1_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_2.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_2_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_2_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_2_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_2_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_3_scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_3_scheme.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_3_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_3_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_3_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_3_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_4.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_4_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_4_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_4_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_4_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_6_scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_6_scheme.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_6_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_6_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_3_6_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_3_6_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_4_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_4_4.jpg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_4_4_scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_4_4_scheme.svg -------------------------------------------------------------------------------- /Src/Real_Data/Edited_photos/fantom_4_4_simple.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/Edited_photos/fantom_4_4_simple.JPG -------------------------------------------------------------------------------- /Src/Real_Data/LoadData.m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/LoadData.m.txt -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_1_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_1_0.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_1_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_1_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_1_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_1_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_1_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_1_3.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_1_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_1_4.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_2_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_2_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_2_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_2_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_2_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_2_3.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_2_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_2_4.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_2_5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_2_5.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_2_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_2_6.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_3_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_3_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_3_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_3_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_3_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_3_3.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_3_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_3_4.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_3_5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_3_5.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_3_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_3_6.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_4_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_4_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_4_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_4_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_4_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_4_3.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_4_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_4_4.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_5_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_5_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_5_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_5_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_3.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_4.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_5.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_6.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_6_7.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_6_7.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_7_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_7_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_7_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_7_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_8_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_8_1.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_8_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_8_2.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_8_3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_8_3.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_8_4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_8_4.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_8_5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_8_5.mat -------------------------------------------------------------------------------- /Src/Real_Data/data_mat_files/datamat_8_6.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/data_mat_files/datamat_8_6.mat -------------------------------------------------------------------------------- /Src/Real_Data/targets.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Real_Data/targets.JPG -------------------------------------------------------------------------------- /Src/Total_Var.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/Total_Var.m -------------------------------------------------------------------------------- /Src/calc_pix_Laplacian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/calc_pix_Laplacian.m -------------------------------------------------------------------------------- /Src/calculate_pure_Jacobian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/calculate_pure_Jacobian.m -------------------------------------------------------------------------------- /Src/color_to_conductivity_decoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/color_to_conductivity_decoder.m -------------------------------------------------------------------------------- /Src/dual_variable_scaling_rule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/dual_variable_scaling_rule.m -------------------------------------------------------------------------------- /Src/edge_matrix_with_diags.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/edge_matrix_with_diags.m -------------------------------------------------------------------------------- /Src/estimate_weights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/estimate_weights.m -------------------------------------------------------------------------------- /Src/find_neighbour_clusters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/find_neighbour_clusters.m -------------------------------------------------------------------------------- /Src/get_ground_truth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/get_ground_truth.m -------------------------------------------------------------------------------- /Src/get_recplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/get_recplot.m -------------------------------------------------------------------------------- /Src/iterative_GTR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/iterative_GTR.m -------------------------------------------------------------------------------- /Src/make_2d_geom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/make_2d_geom.m -------------------------------------------------------------------------------- /Src/make_inverse_geometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/make_inverse_geometry.m -------------------------------------------------------------------------------- /Src/reference_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/reference_1.mat -------------------------------------------------------------------------------- /Src/reference_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/reference_2.mat -------------------------------------------------------------------------------- /Src/retrieve_pattern_coupling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/retrieve_pattern_coupling.m -------------------------------------------------------------------------------- /Src/reveal_real_measurements.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/reveal_real_measurements.m -------------------------------------------------------------------------------- /Src/single_step_GTR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chdim100/Weighted-Sparse-Bayesian-Learning-for-Electrical-Impedance-Tomography/HEAD/Src/single_step_GTR.m --------------------------------------------------------------------------------