├── .gitignore ├── .gitmodules ├── README.md ├── algs_mc ├── GROUSE │ ├── grouse.m │ └── run_mc.m ├── IALM │ ├── Atxz.m │ ├── Axz.m │ ├── UVtOmega.m │ ├── inexact_alm_mc.m │ ├── myRandsample.m │ ├── private │ │ ├── Afunc.m │ │ ├── AtAfunc.m │ │ ├── Atransfunc.m │ │ ├── Cfunc.m │ │ ├── bdsqr.m │ │ ├── bdsqr.mexw32 │ │ ├── compute_int.m │ │ ├── lanbpro.m │ │ ├── laneig.m │ │ ├── lanpro.m │ │ ├── lansvd.m │ │ ├── mminfo.m │ │ ├── mmread.m │ │ ├── mmwrite.m │ │ ├── pythag.m │ │ ├── refinebounds.m │ │ ├── reorth.m │ │ ├── test.m │ │ ├── testtqlb.m │ │ ├── tqlb.m │ │ └── update_gbound.m │ ├── run_mc.m │ └── test_alm_mc.m ├── LMaFit │ ├── Run_Me_1st.m │ ├── Run_Me_1st_old.m │ ├── lmafit_mc_adp.m │ ├── lmafit_mc_adp_old.m │ ├── mod_lmafit_mc_adp.m │ ├── private │ │ ├── partXY.c │ │ ├── partXY.m │ │ ├── partXY.mexa64 │ │ ├── partXY.mexglx │ │ ├── partXY.mexw64 │ │ ├── partXY_blas.c │ │ ├── updateSval.c │ │ ├── updateSval.mexa64 │ │ ├── updateSval.mexglx │ │ ├── updateSval.mexw64 │ │ └── updateSval_blas.c │ ├── run_mc.m │ └── testMC.m ├── LRGeomCG │ ├── cost.m │ ├── egrad.m │ ├── euclidean_hessian.m │ ├── linesearch_helper.m │ ├── low_rank_matrix_completion.m │ ├── low_rank_matrix_completion_new.m │ └── run_mc.m ├── MC-NMF │ ├── Run_Me_1st.m │ ├── mc_nmf.m │ ├── partXY.c │ ├── partXY.mexw64 │ ├── quicktest.m │ ├── run_mc.m │ ├── updateSval.c │ └── updateSval.mexw64 ├── OR1MP │ ├── EOR1MP.m │ ├── OR1MP.m │ ├── private │ │ ├── install.m │ │ ├── sparse_inp.c │ │ ├── sparse_inp.m │ │ ├── sparse_inp.mexglx │ │ ├── sparse_inp.mexmaci64 │ │ ├── sparse_inp.mexw32 │ │ ├── sparse_inp.mexw64 │ │ ├── sparse_update.c │ │ ├── sparse_update.m │ │ ├── sparse_update.mexglx │ │ ├── sparse_update.mexmaci64 │ │ ├── sparse_update.mexw32 │ │ ├── sparse_update.mexw64 │ │ ├── sparse_update_native.m │ │ ├── testMatrixMultiply.m │ │ ├── testMatrixMultiply2.m │ │ ├── test_consist1.m │ │ └── test_consist2.m │ ├── run_mc.m │ └── sparse_inp_native.m ├── OptSpace │ ├── OptSpace.m │ ├── run_OptSpace.m │ ├── run_mc.m │ └── testing.m ├── RMAMR │ ├── MtOmega.m │ ├── core_MAMR.m │ ├── core_RMAMR.m │ ├── run_MAMR_RMAMR.m │ ├── run_mc.m │ ├── shrink.m │ └── test_MAMR.m ├── SVP │ ├── SetDefaultParams.m │ ├── install_svp.m │ ├── run_mc.m │ ├── svp.m │ └── test_svp.m └── ScGrassMC │ ├── README │ ├── ScGrassMC.m │ ├── compile_mex.m │ ├── distinguishable_colors.m │ ├── get_params.m │ ├── get_varargin.m │ ├── getoptS_mex.m │ ├── maskmult.c │ ├── maskmult.mexw64 │ ├── multsparsefull.m │ ├── plot_error_time.m │ ├── run_mc.m │ ├── setsparseentries.c │ ├── setsparseentries.mexw64 │ └── test.m ├── algs_tc ├── BCPF │ ├── Algorithms │ │ ├── BCPF.m │ │ ├── BCPF_IC.m │ │ ├── BCPF_MP.m │ │ ├── BCPF_TC.m │ │ ├── gaussSample.m │ │ ├── khatrirao_fast.m │ │ └── kr.m │ ├── DemoBayesCP.m │ ├── DemoBayesCP_Image.m │ ├── Evaluation │ │ ├── PSNR.m │ │ ├── PSNR_RGB.m │ │ ├── perfscore.m │ │ ├── ssim.m │ │ └── ssim_index.m │ ├── Readme.txt │ ├── TensorPlot │ │ ├── hintonDiagram.m │ │ ├── plotFactor.m │ │ ├── plotGamma.m │ │ ├── plotYXS.m │ │ ├── rescaleorder.m │ │ ├── subtightplot.m │ │ └── voxel3.m │ ├── loadpath.m │ ├── run_tc.m │ ├── run_tc_.m │ ├── run_tc_blk.m │ └── run_tc_full.m ├── LRTC │ ├── FaLRTC.m │ ├── FaLRTCnr.m │ ├── HaLRTC.m │ ├── SiLRTC.m │ ├── SiLRTCnr.m │ ├── example.m │ ├── private │ │ ├── CreateImageSeq.m │ │ ├── CreateMovie.m │ │ ├── Fold.m │ │ ├── ImgSeq2Video.m │ │ ├── MySVD.m │ │ ├── MySVDs.m │ │ ├── MySVDtau.m │ │ ├── Pro2TraceNorm.m │ │ ├── SingularValue.m │ │ ├── Truncate.m │ │ └── Unfold.m │ └── run_tc.m ├── NCPC │ ├── example_ncpc.m │ ├── ncpc.m │ ├── run_tc.m │ ├── run_tc_blk.m │ └── run_tc_full.m ├── RLRT │ ├── rpca │ │ ├── RemoveWhiteSpace.m │ │ ├── add_batch_noise_obs.m │ │ ├── add_sparse_gross_noise.m │ │ ├── check_sep_acc.m │ │ ├── choosvd.m │ │ ├── compute_tranks.m │ │ ├── gen_lowrank_tensor.m │ │ ├── gen_syn_data.m │ │ ├── get_algs.m │ │ ├── horpca_lambda_search.m │ │ ├── inexact_alm_rpca.m │ │ ├── lowrank_sparse_fista.m │ │ ├── matrix_rpca.m │ │ ├── plot_batch_tensor_exp_ncx.m │ │ ├── plot_noisy_missing.m │ │ ├── plot_obs_spa_for_ranks.m │ │ ├── plot_obs_spa_rank_analysis.m │ │ ├── plot_ranks_obs_for_spa.m │ │ ├── plot_ranks_spa_for_obs.m │ │ ├── prep_trpca_data.m │ │ ├── rpca_cs.m │ │ ├── rpca_for_tensor.m │ │ ├── run_batch_tensor_exp.m │ │ ├── run_batch_tensor_exp_ncx.m │ │ ├── shrinkage.m │ │ ├── tenInd2matInd.m │ │ ├── tenInd2matInd_core.m │ │ ├── tensor_rpca_adal.m │ │ ├── tensor_rpca_adal2.m │ │ ├── tensor_rpca_adal_ncx.m │ │ ├── tensor_rpca_tc_adal.m │ │ ├── tensor_rpca_tc_adal2.m │ │ ├── tensor_rpca_tc_adal_ncx.m │ │ ├── tensor_tucker_adal_ncx.m │ │ └── test_trpca.m │ ├── run_tc.m │ ├── run_tc_blk.m │ ├── run_tc_full.m │ ├── tc │ │ ├── TC_ADAL.m │ │ ├── mc_ls_grad.m │ │ ├── optimal_mc_ls_Y.m │ │ ├── optimal_nuclear_X.m │ │ ├── prep_tensor.m │ │ ├── ten_sum_all.m │ │ └── test_tc.m │ └── utils │ │ ├── choosvd.m │ │ ├── copyright.m │ │ ├── get_SNR.m │ │ ├── get_markers.m │ │ ├── img_matrix2tensor.m │ │ ├── matrix_shrinkage.m │ │ ├── mysign.m │ │ ├── numarray2strarray.m │ │ ├── plot_parafac_factors.m │ │ ├── plot_tenmat_sv.m │ │ ├── qmult.m │ │ ├── sample_indices.m │ │ ├── scale_matrix.m │ │ ├── shrinkage_t.m │ │ ├── shrinkage_v.m │ │ ├── ten_sum_all.m │ │ ├── tensor_1norm.m │ │ ├── tensor_array_add.m │ │ ├── tensor_array_diff.m │ │ ├── tensor_array_innerprod.m │ │ ├── tensor_array_norm.m │ │ ├── tensor_array_scale.m │ │ ├── tensor_hard_thresh.m │ │ ├── tensor_shrinkage.m │ │ ├── tq_dwt.m │ │ └── tq_idwt.m ├── SPC │ ├── DEMO.m │ ├── DEMO_color_image.m │ ├── Function_SPC │ │ ├── FRSPC.m │ │ ├── SPC.m │ │ ├── SPC_2.3.m │ │ ├── SPC_23.m │ │ ├── SPC_beta.m │ │ ├── SPC_old.m │ │ ├── fold.m │ │ ├── innerprod_one.m │ │ ├── innerprod_one_exc.m │ │ ├── outerprod.m │ │ ├── sum_all.m │ │ ├── tensor_allprod.m │ │ ├── tensor_allprod_exc.m │ │ ├── tmult.m │ │ └── unfold.m │ ├── plotting_function │ │ ├── Gaussian_window.m │ │ ├── PSNR.m │ │ ├── SIR.m │ │ ├── Xaxis_string.m │ │ ├── Yaxis_string.m │ │ ├── iso_visualize.m │ │ ├── setpapersize.m │ │ └── ssim.m │ ├── read_me │ └── run_tc.m ├── TMac │ ├── Fold.m │ ├── TMac.m │ ├── TMac_err.m │ ├── Unfold.m │ ├── quicktest.m │ ├── rank_dec_adaptive.m │ ├── rank_inc_adaptive.m │ └── run_tc.m ├── TenALS │ ├── COPYING │ ├── README │ ├── TenALS.m │ ├── run_tc.m │ ├── run_tc_blk.m │ ├── run_tc_full.m │ └── testing.m ├── geomCG │ ├── LICENSE.txt │ ├── README.txt │ ├── addFactorized.m │ ├── addTT.m │ ├── calcFunction.m │ ├── calcFunction_mex.c │ ├── calcFunction_mex.mexw64 │ ├── calcGradient.m │ ├── calcGradient_mex.c │ ├── calcGradient_mex.mexw64 │ ├── calcInitial.m │ ├── calcInitial_mex.c │ ├── calcInitial_mex.mexw64 │ ├── calcNewDirection.m │ ├── calcProjection.m │ ├── calcProjection_mex.c │ ├── calcProjection_mex.mexw64 │ ├── examples │ │ ├── noisy.m │ │ └── simpleGeomCG.m │ ├── geomCG.m │ ├── getValsAtIndex.m │ ├── getValsAtIndex_mex.c │ ├── getValsAtIndex_mex.mexw64 │ ├── hosvd.m │ ├── increaseRank.m │ ├── innerProduct.m │ ├── install.m │ ├── makeOmegaSet.m │ ├── makeRandTensor.m │ ├── retraction.m │ ├── run_tc.m │ ├── run_tc_blk.m │ ├── run_tc_full.m │ ├── tenRank.m │ ├── transport.m │ └── uminusFactorized.m ├── t-TNN │ ├── Fold.m │ ├── LtSVD_TC.m │ ├── Pro2TraceNorm.m │ ├── ReRank.m │ ├── Trans_Faces.m │ ├── Unfold.m │ ├── X2Yi.m │ ├── Yi2X.m │ ├── demo_ltsvd.m │ ├── getframe.m │ ├── im2video.m │ ├── plot_error_mat.m │ ├── plot_rse_against_sample.m │ ├── plot_rse_per_frame.m │ ├── rse.m │ ├── run_tc.m │ ├── showvideo.m │ ├── soft.m │ ├── test_tsvd.m │ └── wshrinkObj.m └── tSVD │ ├── License.txt │ ├── demo_tensor_completion.m │ ├── demo_tensor_rpca.m │ ├── proxFunctions │ ├── pos.m │ ├── proxF_l1.m │ ├── proxF_tSVD_1.m │ └── proxF_tube_12.m │ ├── run_tc.m │ ├── solvers │ ├── shrinkObj.m │ ├── tensor_cpl_admm.m │ └── tensor_rpca.m │ └── tSVD │ ├── ntsvd.m │ ├── tprod.m │ └── tran.m ├── demo.m ├── figs └── framework.jpg ├── get_algs_name.m ├── get_sequences_name.m ├── load_images.m ├── main.m ├── perform_frame_selection.m ├── perform_matrix_completion.m ├── perform_tensor_completion.m ├── results_mc └── GROUSE │ └── BC_HallAndMonitor.PNG ├── results_tc └── TMac │ └── BC_HallAndMonitor.PNG ├── sequences └── HallAndMonitor │ ├── GT_HallAndMonitor.png │ └── PNG │ ├── HallAndMonitor_000000.png │ ├── HallAndMonitor_000001.png │ ├── HallAndMonitor_000002.png │ ├── HallAndMonitor_000003.png │ ├── HallAndMonitor_000004.png │ ├── HallAndMonitor_000005.png │ ├── HallAndMonitor_000006.png │ ├── HallAndMonitor_000007.png │ ├── HallAndMonitor_000008.png │ ├── HallAndMonitor_000009.png │ ├── HallAndMonitor_000010.png │ ├── HallAndMonitor_000011.png │ ├── HallAndMonitor_000012.png │ ├── HallAndMonitor_000013.png │ ├── HallAndMonitor_000014.png │ ├── HallAndMonitor_000015.png │ ├── HallAndMonitor_000016.png │ ├── HallAndMonitor_000017.png │ ├── HallAndMonitor_000018.png │ ├── HallAndMonitor_000019.png │ ├── HallAndMonitor_000020.png │ ├── HallAndMonitor_000021.png │ ├── HallAndMonitor_000022.png │ ├── HallAndMonitor_000023.png │ ├── HallAndMonitor_000024.png │ ├── HallAndMonitor_000025.png │ ├── HallAndMonitor_000026.png │ ├── HallAndMonitor_000027.png │ ├── HallAndMonitor_000028.png │ ├── HallAndMonitor_000029.png │ ├── HallAndMonitor_000030.png │ ├── HallAndMonitor_000031.png │ ├── HallAndMonitor_000032.png │ ├── HallAndMonitor_000033.png │ ├── HallAndMonitor_000034.png │ ├── HallAndMonitor_000035.png │ ├── HallAndMonitor_000036.png │ ├── HallAndMonitor_000037.png │ ├── HallAndMonitor_000038.png │ ├── HallAndMonitor_000039.png │ ├── HallAndMonitor_000040.png │ ├── HallAndMonitor_000041.png │ ├── HallAndMonitor_000042.png │ ├── HallAndMonitor_000043.png │ ├── HallAndMonitor_000044.png │ ├── HallAndMonitor_000045.png │ ├── HallAndMonitor_000046.png │ ├── HallAndMonitor_000047.png │ ├── HallAndMonitor_000048.png │ ├── HallAndMonitor_000049.png │ ├── HallAndMonitor_000050.png │ ├── HallAndMonitor_000051.png │ ├── HallAndMonitor_000052.png │ ├── HallAndMonitor_000053.png │ ├── HallAndMonitor_000054.png │ ├── HallAndMonitor_000055.png │ ├── HallAndMonitor_000056.png │ ├── HallAndMonitor_000057.png │ ├── HallAndMonitor_000058.png │ ├── HallAndMonitor_000059.png │ ├── HallAndMonitor_000060.png │ ├── HallAndMonitor_000061.png │ ├── HallAndMonitor_000062.png │ ├── HallAndMonitor_000063.png │ ├── HallAndMonitor_000064.png │ ├── HallAndMonitor_000065.png │ ├── HallAndMonitor_000066.png │ ├── HallAndMonitor_000067.png │ ├── HallAndMonitor_000068.png │ ├── HallAndMonitor_000069.png │ ├── HallAndMonitor_000070.png │ ├── HallAndMonitor_000071.png │ ├── HallAndMonitor_000072.png │ ├── HallAndMonitor_000073.png │ ├── HallAndMonitor_000074.png │ ├── HallAndMonitor_000075.png │ ├── HallAndMonitor_000076.png │ ├── HallAndMonitor_000077.png │ ├── HallAndMonitor_000078.png │ ├── HallAndMonitor_000079.png │ ├── HallAndMonitor_000080.png │ ├── HallAndMonitor_000081.png │ ├── HallAndMonitor_000082.png │ ├── HallAndMonitor_000083.png │ ├── HallAndMonitor_000084.png │ ├── HallAndMonitor_000085.png │ ├── HallAndMonitor_000086.png │ ├── HallAndMonitor_000087.png │ ├── HallAndMonitor_000088.png │ ├── HallAndMonitor_000089.png │ ├── HallAndMonitor_000090.png │ ├── HallAndMonitor_000091.png │ ├── HallAndMonitor_000092.png │ ├── HallAndMonitor_000093.png │ ├── HallAndMonitor_000094.png │ ├── HallAndMonitor_000095.png │ ├── HallAndMonitor_000096.png │ ├── HallAndMonitor_000097.png │ ├── HallAndMonitor_000098.png │ ├── HallAndMonitor_000099.png │ ├── HallAndMonitor_000100.png │ ├── HallAndMonitor_000101.png │ ├── HallAndMonitor_000102.png │ ├── HallAndMonitor_000103.png │ ├── HallAndMonitor_000104.png │ ├── HallAndMonitor_000105.png │ ├── HallAndMonitor_000106.png │ ├── HallAndMonitor_000107.png │ ├── HallAndMonitor_000108.png │ ├── HallAndMonitor_000109.png │ ├── HallAndMonitor_000110.png │ ├── HallAndMonitor_000111.png │ ├── HallAndMonitor_000112.png │ ├── HallAndMonitor_000113.png │ ├── HallAndMonitor_000114.png │ ├── HallAndMonitor_000115.png │ ├── HallAndMonitor_000116.png │ ├── HallAndMonitor_000117.png │ ├── HallAndMonitor_000118.png │ ├── HallAndMonitor_000119.png │ ├── HallAndMonitor_000120.png │ ├── HallAndMonitor_000121.png │ ├── HallAndMonitor_000122.png │ ├── HallAndMonitor_000123.png │ ├── HallAndMonitor_000124.png │ ├── HallAndMonitor_000125.png │ ├── HallAndMonitor_000126.png │ ├── HallAndMonitor_000127.png │ ├── HallAndMonitor_000128.png │ ├── HallAndMonitor_000129.png │ ├── HallAndMonitor_000130.png │ ├── HallAndMonitor_000131.png │ ├── HallAndMonitor_000132.png │ ├── HallAndMonitor_000133.png │ ├── HallAndMonitor_000134.png │ ├── HallAndMonitor_000135.png │ ├── HallAndMonitor_000136.png │ ├── HallAndMonitor_000137.png │ ├── HallAndMonitor_000138.png │ ├── HallAndMonitor_000139.png │ ├── HallAndMonitor_000140.png │ ├── HallAndMonitor_000141.png │ ├── HallAndMonitor_000142.png │ ├── HallAndMonitor_000143.png │ ├── HallAndMonitor_000144.png │ ├── HallAndMonitor_000145.png │ ├── HallAndMonitor_000146.png │ ├── HallAndMonitor_000147.png │ ├── HallAndMonitor_000148.png │ ├── HallAndMonitor_000149.png │ ├── HallAndMonitor_000150.png │ ├── HallAndMonitor_000151.png │ ├── HallAndMonitor_000152.png │ ├── HallAndMonitor_000153.png │ ├── HallAndMonitor_000154.png │ ├── HallAndMonitor_000155.png │ ├── HallAndMonitor_000156.png │ ├── HallAndMonitor_000157.png │ ├── HallAndMonitor_000158.png │ ├── HallAndMonitor_000159.png │ ├── HallAndMonitor_000160.png │ ├── HallAndMonitor_000161.png │ ├── HallAndMonitor_000162.png │ ├── HallAndMonitor_000163.png │ ├── HallAndMonitor_000164.png │ ├── HallAndMonitor_000165.png │ ├── HallAndMonitor_000166.png │ ├── HallAndMonitor_000167.png │ ├── HallAndMonitor_000168.png │ ├── HallAndMonitor_000169.png │ ├── HallAndMonitor_000170.png │ ├── HallAndMonitor_000171.png │ ├── HallAndMonitor_000172.png │ ├── HallAndMonitor_000173.png │ ├── HallAndMonitor_000174.png │ ├── HallAndMonitor_000175.png │ ├── HallAndMonitor_000176.png │ ├── HallAndMonitor_000177.png │ ├── HallAndMonitor_000178.png │ ├── HallAndMonitor_000179.png │ ├── HallAndMonitor_000180.png │ ├── HallAndMonitor_000181.png │ ├── HallAndMonitor_000182.png │ ├── HallAndMonitor_000183.png │ ├── HallAndMonitor_000184.png │ ├── HallAndMonitor_000185.png │ ├── HallAndMonitor_000186.png │ ├── HallAndMonitor_000187.png │ ├── HallAndMonitor_000188.png │ ├── HallAndMonitor_000189.png │ ├── HallAndMonitor_000190.png │ ├── HallAndMonitor_000191.png │ ├── HallAndMonitor_000192.png │ ├── HallAndMonitor_000193.png │ ├── HallAndMonitor_000194.png │ ├── HallAndMonitor_000195.png │ ├── HallAndMonitor_000196.png │ ├── HallAndMonitor_000197.png │ ├── HallAndMonitor_000198.png │ ├── HallAndMonitor_000199.png │ ├── HallAndMonitor_000200.png │ ├── HallAndMonitor_000201.png │ ├── HallAndMonitor_000202.png │ ├── HallAndMonitor_000203.png │ ├── HallAndMonitor_000204.png │ ├── HallAndMonitor_000205.png │ ├── HallAndMonitor_000206.png │ ├── HallAndMonitor_000207.png │ ├── HallAndMonitor_000208.png │ ├── HallAndMonitor_000209.png │ ├── HallAndMonitor_000210.png │ ├── HallAndMonitor_000211.png │ ├── HallAndMonitor_000212.png │ ├── HallAndMonitor_000213.png │ ├── HallAndMonitor_000214.png │ ├── HallAndMonitor_000215.png │ ├── HallAndMonitor_000216.png │ ├── HallAndMonitor_000217.png │ ├── HallAndMonitor_000218.png │ ├── HallAndMonitor_000219.png │ ├── HallAndMonitor_000220.png │ ├── HallAndMonitor_000221.png │ ├── HallAndMonitor_000222.png │ ├── HallAndMonitor_000223.png │ ├── HallAndMonitor_000224.png │ ├── HallAndMonitor_000225.png │ ├── HallAndMonitor_000226.png │ ├── HallAndMonitor_000227.png │ ├── HallAndMonitor_000228.png │ ├── HallAndMonitor_000229.png │ ├── HallAndMonitor_000230.png │ ├── HallAndMonitor_000231.png │ ├── HallAndMonitor_000232.png │ ├── HallAndMonitor_000233.png │ ├── HallAndMonitor_000234.png │ ├── HallAndMonitor_000235.png │ ├── HallAndMonitor_000236.png │ ├── HallAndMonitor_000237.png │ ├── HallAndMonitor_000238.png │ ├── HallAndMonitor_000239.png │ ├── HallAndMonitor_000240.png │ ├── HallAndMonitor_000241.png │ ├── HallAndMonitor_000242.png │ ├── HallAndMonitor_000243.png │ ├── HallAndMonitor_000244.png │ ├── HallAndMonitor_000245.png │ ├── HallAndMonitor_000246.png │ ├── HallAndMonitor_000247.png │ ├── HallAndMonitor_000248.png │ ├── HallAndMonitor_000249.png │ ├── HallAndMonitor_000250.png │ ├── HallAndMonitor_000251.png │ ├── HallAndMonitor_000252.png │ ├── HallAndMonitor_000253.png │ ├── HallAndMonitor_000254.png │ ├── HallAndMonitor_000255.png │ ├── HallAndMonitor_000256.png │ ├── HallAndMonitor_000257.png │ ├── HallAndMonitor_000258.png │ ├── HallAndMonitor_000259.png │ ├── HallAndMonitor_000260.png │ ├── HallAndMonitor_000261.png │ ├── HallAndMonitor_000262.png │ ├── HallAndMonitor_000263.png │ ├── HallAndMonitor_000264.png │ ├── HallAndMonitor_000265.png │ ├── HallAndMonitor_000266.png │ ├── HallAndMonitor_000267.png │ ├── HallAndMonitor_000268.png │ ├── HallAndMonitor_000269.png │ ├── HallAndMonitor_000270.png │ ├── HallAndMonitor_000271.png │ ├── HallAndMonitor_000272.png │ ├── HallAndMonitor_000273.png │ ├── HallAndMonitor_000274.png │ ├── HallAndMonitor_000275.png │ ├── HallAndMonitor_000276.png │ ├── HallAndMonitor_000277.png │ ├── HallAndMonitor_000278.png │ ├── HallAndMonitor_000279.png │ ├── HallAndMonitor_000280.png │ ├── HallAndMonitor_000281.png │ ├── HallAndMonitor_000282.png │ ├── HallAndMonitor_000283.png │ ├── HallAndMonitor_000284.png │ ├── HallAndMonitor_000285.png │ ├── HallAndMonitor_000286.png │ ├── HallAndMonitor_000287.png │ ├── HallAndMonitor_000288.png │ ├── HallAndMonitor_000289.png │ ├── HallAndMonitor_000290.png │ ├── HallAndMonitor_000291.png │ ├── HallAndMonitor_000292.png │ ├── HallAndMonitor_000293.png │ ├── HallAndMonitor_000294.png │ └── HallAndMonitor_000295.png ├── sequences_mat └── .gitignore ├── trafficdb └── traffic_patches.mat └── utils ├── convert_video3d_to_2d.m ├── convert_video4d_to_3d.m ├── displog.m ├── show_2dvideo.m ├── show_3dvideo.m ├── show_4dvideo.m └── subsampling.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.asv -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/README.md -------------------------------------------------------------------------------- /algs_mc/GROUSE/grouse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/GROUSE/grouse.m -------------------------------------------------------------------------------- /algs_mc/GROUSE/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/GROUSE/run_mc.m -------------------------------------------------------------------------------- /algs_mc/IALM/Atxz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/Atxz.m -------------------------------------------------------------------------------- /algs_mc/IALM/Axz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/Axz.m -------------------------------------------------------------------------------- /algs_mc/IALM/UVtOmega.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/UVtOmega.m -------------------------------------------------------------------------------- /algs_mc/IALM/inexact_alm_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/inexact_alm_mc.m -------------------------------------------------------------------------------- /algs_mc/IALM/myRandsample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/myRandsample.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/Afunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/Afunc.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/AtAfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/AtAfunc.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/Atransfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/Atransfunc.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/Cfunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/Cfunc.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/bdsqr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/bdsqr.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/bdsqr.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/bdsqr.mexw32 -------------------------------------------------------------------------------- /algs_mc/IALM/private/compute_int.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/compute_int.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/lanbpro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/lanbpro.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/laneig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/laneig.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/lanpro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/lanpro.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/lansvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/lansvd.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/mminfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/mminfo.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/mmread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/mmread.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/mmwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/mmwrite.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/pythag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/pythag.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/refinebounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/refinebounds.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/reorth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/reorth.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/test.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/testtqlb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/testtqlb.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/tqlb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/tqlb.m -------------------------------------------------------------------------------- /algs_mc/IALM/private/update_gbound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/private/update_gbound.m -------------------------------------------------------------------------------- /algs_mc/IALM/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/run_mc.m -------------------------------------------------------------------------------- /algs_mc/IALM/test_alm_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/IALM/test_alm_mc.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/Run_Me_1st.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/Run_Me_1st.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/Run_Me_1st_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/Run_Me_1st_old.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/lmafit_mc_adp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/lmafit_mc_adp.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/lmafit_mc_adp_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/lmafit_mc_adp_old.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/mod_lmafit_mc_adp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/mod_lmafit_mc_adp.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/partXY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/partXY.c -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/partXY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/partXY.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/partXY.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/partXY.mexa64 -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/partXY.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/partXY.mexglx -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/partXY.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/partXY.mexw64 -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/partXY_blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/partXY_blas.c -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/updateSval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/updateSval.c -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/updateSval.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/updateSval.mexa64 -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/updateSval.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/updateSval.mexglx -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/updateSval.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/updateSval.mexw64 -------------------------------------------------------------------------------- /algs_mc/LMaFit/private/updateSval_blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/private/updateSval_blas.c -------------------------------------------------------------------------------- /algs_mc/LMaFit/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/run_mc.m -------------------------------------------------------------------------------- /algs_mc/LMaFit/testMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LMaFit/testMC.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/cost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/cost.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/egrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/egrad.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/euclidean_hessian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/euclidean_hessian.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/linesearch_helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/linesearch_helper.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/low_rank_matrix_completion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/low_rank_matrix_completion.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/low_rank_matrix_completion_new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/low_rank_matrix_completion_new.m -------------------------------------------------------------------------------- /algs_mc/LRGeomCG/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/LRGeomCG/run_mc.m -------------------------------------------------------------------------------- /algs_mc/MC-NMF/Run_Me_1st.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/Run_Me_1st.m -------------------------------------------------------------------------------- /algs_mc/MC-NMF/mc_nmf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/mc_nmf.m -------------------------------------------------------------------------------- /algs_mc/MC-NMF/partXY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/partXY.c -------------------------------------------------------------------------------- /algs_mc/MC-NMF/partXY.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/partXY.mexw64 -------------------------------------------------------------------------------- /algs_mc/MC-NMF/quicktest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/quicktest.m -------------------------------------------------------------------------------- /algs_mc/MC-NMF/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/run_mc.m -------------------------------------------------------------------------------- /algs_mc/MC-NMF/updateSval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/updateSval.c -------------------------------------------------------------------------------- /algs_mc/MC-NMF/updateSval.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/MC-NMF/updateSval.mexw64 -------------------------------------------------------------------------------- /algs_mc/OR1MP/EOR1MP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/EOR1MP.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/OR1MP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/OR1MP.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/install.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_inp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_inp.c -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_inp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_inp.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_inp.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_inp.mexglx -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_inp.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_inp.mexmaci64 -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_inp.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_inp.mexw32 -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_inp.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_inp.mexw64 -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update.c -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update.mexglx -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update.mexmaci64 -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update.mexw32 -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update.mexw64 -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/sparse_update_native.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/sparse_update_native.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/testMatrixMultiply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/testMatrixMultiply.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/testMatrixMultiply2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/testMatrixMultiply2.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/test_consist1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/test_consist1.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/private/test_consist2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/private/test_consist2.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/run_mc.m -------------------------------------------------------------------------------- /algs_mc/OR1MP/sparse_inp_native.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OR1MP/sparse_inp_native.m -------------------------------------------------------------------------------- /algs_mc/OptSpace/OptSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OptSpace/OptSpace.m -------------------------------------------------------------------------------- /algs_mc/OptSpace/run_OptSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OptSpace/run_OptSpace.m -------------------------------------------------------------------------------- /algs_mc/OptSpace/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OptSpace/run_mc.m -------------------------------------------------------------------------------- /algs_mc/OptSpace/testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/OptSpace/testing.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/MtOmega.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/MtOmega.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/core_MAMR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/core_MAMR.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/core_RMAMR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/core_RMAMR.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/run_MAMR_RMAMR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/run_MAMR_RMAMR.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/run_mc.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/shrink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/shrink.m -------------------------------------------------------------------------------- /algs_mc/RMAMR/test_MAMR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/RMAMR/test_MAMR.m -------------------------------------------------------------------------------- /algs_mc/SVP/SetDefaultParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/SVP/SetDefaultParams.m -------------------------------------------------------------------------------- /algs_mc/SVP/install_svp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/SVP/install_svp.m -------------------------------------------------------------------------------- /algs_mc/SVP/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/SVP/run_mc.m -------------------------------------------------------------------------------- /algs_mc/SVP/svp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/SVP/svp.m -------------------------------------------------------------------------------- /algs_mc/SVP/test_svp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/SVP/test_svp.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/README -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/ScGrassMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/ScGrassMC.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/compile_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/compile_mex.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/distinguishable_colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/distinguishable_colors.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/get_params.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/get_params.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/get_varargin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/get_varargin.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/getoptS_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/getoptS_mex.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/maskmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/maskmult.c -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/maskmult.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/maskmult.mexw64 -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/multsparsefull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/multsparsefull.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/plot_error_time.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/plot_error_time.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/run_mc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/run_mc.m -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/setsparseentries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/setsparseentries.c -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/setsparseentries.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/setsparseentries.mexw64 -------------------------------------------------------------------------------- /algs_mc/ScGrassMC/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_mc/ScGrassMC/test.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/BCPF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/BCPF.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/BCPF_IC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/BCPF_IC.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/BCPF_MP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/BCPF_MP.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/BCPF_TC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/BCPF_TC.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/gaussSample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/gaussSample.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/khatrirao_fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/khatrirao_fast.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Algorithms/kr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Algorithms/kr.m -------------------------------------------------------------------------------- /algs_tc/BCPF/DemoBayesCP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/DemoBayesCP.m -------------------------------------------------------------------------------- /algs_tc/BCPF/DemoBayesCP_Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/DemoBayesCP_Image.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Evaluation/PSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Evaluation/PSNR.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Evaluation/PSNR_RGB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Evaluation/PSNR_RGB.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Evaluation/perfscore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Evaluation/perfscore.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Evaluation/ssim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Evaluation/ssim.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Evaluation/ssim_index.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Evaluation/ssim_index.m -------------------------------------------------------------------------------- /algs_tc/BCPF/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/Readme.txt -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/hintonDiagram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/hintonDiagram.m -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/plotFactor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/plotFactor.m -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/plotGamma.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/plotGamma.m -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/plotYXS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/plotYXS.m -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/rescaleorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/rescaleorder.m -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/subtightplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/subtightplot.m -------------------------------------------------------------------------------- /algs_tc/BCPF/TensorPlot/voxel3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/TensorPlot/voxel3.m -------------------------------------------------------------------------------- /algs_tc/BCPF/loadpath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/loadpath.m -------------------------------------------------------------------------------- /algs_tc/BCPF/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/run_tc.m -------------------------------------------------------------------------------- /algs_tc/BCPF/run_tc_.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/run_tc_.m -------------------------------------------------------------------------------- /algs_tc/BCPF/run_tc_blk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/run_tc_blk.m -------------------------------------------------------------------------------- /algs_tc/BCPF/run_tc_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/BCPF/run_tc_full.m -------------------------------------------------------------------------------- /algs_tc/LRTC/FaLRTC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/FaLRTC.m -------------------------------------------------------------------------------- /algs_tc/LRTC/FaLRTCnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/FaLRTCnr.m -------------------------------------------------------------------------------- /algs_tc/LRTC/HaLRTC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/HaLRTC.m -------------------------------------------------------------------------------- /algs_tc/LRTC/SiLRTC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/SiLRTC.m -------------------------------------------------------------------------------- /algs_tc/LRTC/SiLRTCnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/SiLRTCnr.m -------------------------------------------------------------------------------- /algs_tc/LRTC/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/example.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/CreateImageSeq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/CreateImageSeq.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/CreateMovie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/CreateMovie.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/Fold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/Fold.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/ImgSeq2Video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/ImgSeq2Video.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/MySVD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/MySVD.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/MySVDs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/MySVDs.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/MySVDtau.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/MySVDtau.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/Pro2TraceNorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/Pro2TraceNorm.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/SingularValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/SingularValue.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/Truncate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/Truncate.m -------------------------------------------------------------------------------- /algs_tc/LRTC/private/Unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/private/Unfold.m -------------------------------------------------------------------------------- /algs_tc/LRTC/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/LRTC/run_tc.m -------------------------------------------------------------------------------- /algs_tc/NCPC/example_ncpc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/NCPC/example_ncpc.m -------------------------------------------------------------------------------- /algs_tc/NCPC/ncpc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/NCPC/ncpc.m -------------------------------------------------------------------------------- /algs_tc/NCPC/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/NCPC/run_tc.m -------------------------------------------------------------------------------- /algs_tc/NCPC/run_tc_blk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/NCPC/run_tc_blk.m -------------------------------------------------------------------------------- /algs_tc/NCPC/run_tc_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/NCPC/run_tc_full.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/RemoveWhiteSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/RemoveWhiteSpace.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/add_batch_noise_obs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/add_batch_noise_obs.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/add_sparse_gross_noise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/add_sparse_gross_noise.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/check_sep_acc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/check_sep_acc.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/choosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/choosvd.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/compute_tranks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/compute_tranks.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/gen_lowrank_tensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/gen_lowrank_tensor.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/gen_syn_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/gen_syn_data.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/get_algs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/get_algs.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/horpca_lambda_search.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/horpca_lambda_search.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/inexact_alm_rpca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/inexact_alm_rpca.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/lowrank_sparse_fista.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/lowrank_sparse_fista.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/matrix_rpca.m: -------------------------------------------------------------------------------- 1 | function results = matrix_rpca( data, params ) 2 | 3 | 4 | end -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/plot_batch_tensor_exp_ncx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/plot_batch_tensor_exp_ncx.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/plot_noisy_missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/plot_noisy_missing.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/plot_obs_spa_for_ranks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/plot_obs_spa_for_ranks.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/plot_obs_spa_rank_analysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/plot_obs_spa_rank_analysis.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/plot_ranks_obs_for_spa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/plot_ranks_obs_for_spa.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/plot_ranks_spa_for_obs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/plot_ranks_spa_for_obs.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/prep_trpca_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/prep_trpca_data.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/rpca_cs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/rpca_cs.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/rpca_for_tensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/rpca_for_tensor.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/run_batch_tensor_exp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/run_batch_tensor_exp.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/run_batch_tensor_exp_ncx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/run_batch_tensor_exp_ncx.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/shrinkage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/shrinkage.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tenInd2matInd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tenInd2matInd.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tenInd2matInd_core.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tenInd2matInd_core.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_rpca_adal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_rpca_adal.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_rpca_adal2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_rpca_adal2.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_rpca_adal_ncx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_rpca_adal_ncx.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_rpca_tc_adal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_rpca_tc_adal.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_rpca_tc_adal2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_rpca_tc_adal2.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_rpca_tc_adal_ncx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_rpca_tc_adal_ncx.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/tensor_tucker_adal_ncx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/tensor_tucker_adal_ncx.m -------------------------------------------------------------------------------- /algs_tc/RLRT/rpca/test_trpca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/rpca/test_trpca.m -------------------------------------------------------------------------------- /algs_tc/RLRT/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/run_tc.m -------------------------------------------------------------------------------- /algs_tc/RLRT/run_tc_blk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/run_tc_blk.m -------------------------------------------------------------------------------- /algs_tc/RLRT/run_tc_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/run_tc_full.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/TC_ADAL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/TC_ADAL.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/mc_ls_grad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/mc_ls_grad.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/optimal_mc_ls_Y.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/optimal_mc_ls_Y.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/optimal_nuclear_X.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/optimal_nuclear_X.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/prep_tensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/prep_tensor.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/ten_sum_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/ten_sum_all.m -------------------------------------------------------------------------------- /algs_tc/RLRT/tc/test_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/tc/test_tc.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/choosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/choosvd.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/copyright.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/copyright.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/get_SNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/get_SNR.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/get_markers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/get_markers.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/img_matrix2tensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/img_matrix2tensor.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/matrix_shrinkage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/matrix_shrinkage.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/mysign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/mysign.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/numarray2strarray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/numarray2strarray.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/plot_parafac_factors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/plot_parafac_factors.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/plot_tenmat_sv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/plot_tenmat_sv.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/qmult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/qmult.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/sample_indices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/sample_indices.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/scale_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/scale_matrix.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/shrinkage_t.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/shrinkage_t.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/shrinkage_v.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/shrinkage_v.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/ten_sum_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/ten_sum_all.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_1norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_1norm.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_array_add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_array_add.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_array_diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_array_diff.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_array_innerprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_array_innerprod.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_array_norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_array_norm.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_array_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_array_scale.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_hard_thresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_hard_thresh.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tensor_shrinkage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tensor_shrinkage.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tq_dwt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tq_dwt.m -------------------------------------------------------------------------------- /algs_tc/RLRT/utils/tq_idwt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/RLRT/utils/tq_idwt.m -------------------------------------------------------------------------------- /algs_tc/SPC/DEMO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/DEMO.m -------------------------------------------------------------------------------- /algs_tc/SPC/DEMO_color_image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/DEMO_color_image.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/FRSPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/FRSPC.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/SPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/SPC.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/SPC_2.3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/SPC_2.3.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/SPC_23.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/SPC_23.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/SPC_beta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/SPC_beta.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/SPC_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/SPC_old.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/fold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/fold.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/innerprod_one.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/innerprod_one.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/innerprod_one_exc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/innerprod_one_exc.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/outerprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/outerprod.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/sum_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/sum_all.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/tensor_allprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/tensor_allprod.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/tensor_allprod_exc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/tensor_allprod_exc.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/tmult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/tmult.m -------------------------------------------------------------------------------- /algs_tc/SPC/Function_SPC/unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/Function_SPC/unfold.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/Gaussian_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/Gaussian_window.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/PSNR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/PSNR.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/SIR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/SIR.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/Xaxis_string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/Xaxis_string.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/Yaxis_string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/Yaxis_string.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/iso_visualize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/iso_visualize.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/setpapersize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/setpapersize.m -------------------------------------------------------------------------------- /algs_tc/SPC/plotting_function/ssim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/plotting_function/ssim.m -------------------------------------------------------------------------------- /algs_tc/SPC/read_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/read_me -------------------------------------------------------------------------------- /algs_tc/SPC/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/SPC/run_tc.m -------------------------------------------------------------------------------- /algs_tc/TMac/Fold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/Fold.m -------------------------------------------------------------------------------- /algs_tc/TMac/TMac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/TMac.m -------------------------------------------------------------------------------- /algs_tc/TMac/TMac_err.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/TMac_err.m -------------------------------------------------------------------------------- /algs_tc/TMac/Unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/Unfold.m -------------------------------------------------------------------------------- /algs_tc/TMac/quicktest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/quicktest.m -------------------------------------------------------------------------------- /algs_tc/TMac/rank_dec_adaptive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/rank_dec_adaptive.m -------------------------------------------------------------------------------- /algs_tc/TMac/rank_inc_adaptive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/rank_inc_adaptive.m -------------------------------------------------------------------------------- /algs_tc/TMac/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TMac/run_tc.m -------------------------------------------------------------------------------- /algs_tc/TenALS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/COPYING -------------------------------------------------------------------------------- /algs_tc/TenALS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/README -------------------------------------------------------------------------------- /algs_tc/TenALS/TenALS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/TenALS.m -------------------------------------------------------------------------------- /algs_tc/TenALS/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/run_tc.m -------------------------------------------------------------------------------- /algs_tc/TenALS/run_tc_blk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/run_tc_blk.m -------------------------------------------------------------------------------- /algs_tc/TenALS/run_tc_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/run_tc_full.m -------------------------------------------------------------------------------- /algs_tc/TenALS/testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/TenALS/testing.m -------------------------------------------------------------------------------- /algs_tc/geomCG/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/LICENSE.txt -------------------------------------------------------------------------------- /algs_tc/geomCG/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/README.txt -------------------------------------------------------------------------------- /algs_tc/geomCG/addFactorized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/addFactorized.m -------------------------------------------------------------------------------- /algs_tc/geomCG/addTT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/addTT.m -------------------------------------------------------------------------------- /algs_tc/geomCG/calcFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcFunction.m -------------------------------------------------------------------------------- /algs_tc/geomCG/calcFunction_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcFunction_mex.c -------------------------------------------------------------------------------- /algs_tc/geomCG/calcFunction_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcFunction_mex.mexw64 -------------------------------------------------------------------------------- /algs_tc/geomCG/calcGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcGradient.m -------------------------------------------------------------------------------- /algs_tc/geomCG/calcGradient_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcGradient_mex.c -------------------------------------------------------------------------------- /algs_tc/geomCG/calcGradient_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcGradient_mex.mexw64 -------------------------------------------------------------------------------- /algs_tc/geomCG/calcInitial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcInitial.m -------------------------------------------------------------------------------- /algs_tc/geomCG/calcInitial_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcInitial_mex.c -------------------------------------------------------------------------------- /algs_tc/geomCG/calcInitial_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcInitial_mex.mexw64 -------------------------------------------------------------------------------- /algs_tc/geomCG/calcNewDirection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcNewDirection.m -------------------------------------------------------------------------------- /algs_tc/geomCG/calcProjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcProjection.m -------------------------------------------------------------------------------- /algs_tc/geomCG/calcProjection_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcProjection_mex.c -------------------------------------------------------------------------------- /algs_tc/geomCG/calcProjection_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/calcProjection_mex.mexw64 -------------------------------------------------------------------------------- /algs_tc/geomCG/examples/noisy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/examples/noisy.m -------------------------------------------------------------------------------- /algs_tc/geomCG/examples/simpleGeomCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/examples/simpleGeomCG.m -------------------------------------------------------------------------------- /algs_tc/geomCG/geomCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/geomCG.m -------------------------------------------------------------------------------- /algs_tc/geomCG/getValsAtIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/getValsAtIndex.m -------------------------------------------------------------------------------- /algs_tc/geomCG/getValsAtIndex_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/getValsAtIndex_mex.c -------------------------------------------------------------------------------- /algs_tc/geomCG/getValsAtIndex_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/getValsAtIndex_mex.mexw64 -------------------------------------------------------------------------------- /algs_tc/geomCG/hosvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/hosvd.m -------------------------------------------------------------------------------- /algs_tc/geomCG/increaseRank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/increaseRank.m -------------------------------------------------------------------------------- /algs_tc/geomCG/innerProduct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/innerProduct.m -------------------------------------------------------------------------------- /algs_tc/geomCG/install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/install.m -------------------------------------------------------------------------------- /algs_tc/geomCG/makeOmegaSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/makeOmegaSet.m -------------------------------------------------------------------------------- /algs_tc/geomCG/makeRandTensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/makeRandTensor.m -------------------------------------------------------------------------------- /algs_tc/geomCG/retraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/retraction.m -------------------------------------------------------------------------------- /algs_tc/geomCG/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/run_tc.m -------------------------------------------------------------------------------- /algs_tc/geomCG/run_tc_blk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/run_tc_blk.m -------------------------------------------------------------------------------- /algs_tc/geomCG/run_tc_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/run_tc_full.m -------------------------------------------------------------------------------- /algs_tc/geomCG/tenRank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/tenRank.m -------------------------------------------------------------------------------- /algs_tc/geomCG/transport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/transport.m -------------------------------------------------------------------------------- /algs_tc/geomCG/uminusFactorized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/geomCG/uminusFactorized.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/Fold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/Fold.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/LtSVD_TC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/LtSVD_TC.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/Pro2TraceNorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/Pro2TraceNorm.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/ReRank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/ReRank.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/Trans_Faces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/Trans_Faces.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/Unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/Unfold.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/X2Yi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/X2Yi.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/Yi2X.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/Yi2X.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/demo_ltsvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/demo_ltsvd.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/getframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/getframe.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/im2video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/im2video.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/plot_error_mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/plot_error_mat.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/plot_rse_against_sample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/plot_rse_against_sample.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/plot_rse_per_frame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/plot_rse_per_frame.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/rse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/rse.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/run_tc.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/showvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/showvideo.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/soft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/soft.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/test_tsvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/test_tsvd.m -------------------------------------------------------------------------------- /algs_tc/t-TNN/wshrinkObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/t-TNN/wshrinkObj.m -------------------------------------------------------------------------------- /algs_tc/tSVD/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/License.txt -------------------------------------------------------------------------------- /algs_tc/tSVD/demo_tensor_completion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/demo_tensor_completion.m -------------------------------------------------------------------------------- /algs_tc/tSVD/demo_tensor_rpca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/demo_tensor_rpca.m -------------------------------------------------------------------------------- /algs_tc/tSVD/proxFunctions/pos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/proxFunctions/pos.m -------------------------------------------------------------------------------- /algs_tc/tSVD/proxFunctions/proxF_l1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/proxFunctions/proxF_l1.m -------------------------------------------------------------------------------- /algs_tc/tSVD/proxFunctions/proxF_tSVD_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/proxFunctions/proxF_tSVD_1.m -------------------------------------------------------------------------------- /algs_tc/tSVD/proxFunctions/proxF_tube_12.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/proxFunctions/proxF_tube_12.m -------------------------------------------------------------------------------- /algs_tc/tSVD/run_tc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/run_tc.m -------------------------------------------------------------------------------- /algs_tc/tSVD/solvers/shrinkObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/solvers/shrinkObj.m -------------------------------------------------------------------------------- /algs_tc/tSVD/solvers/tensor_cpl_admm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/solvers/tensor_cpl_admm.m -------------------------------------------------------------------------------- /algs_tc/tSVD/solvers/tensor_rpca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/solvers/tensor_rpca.m -------------------------------------------------------------------------------- /algs_tc/tSVD/tSVD/ntsvd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/tSVD/ntsvd.m -------------------------------------------------------------------------------- /algs_tc/tSVD/tSVD/tprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/tSVD/tprod.m -------------------------------------------------------------------------------- /algs_tc/tSVD/tSVD/tran.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/algs_tc/tSVD/tSVD/tran.m -------------------------------------------------------------------------------- /demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/demo.m -------------------------------------------------------------------------------- /figs/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/figs/framework.jpg -------------------------------------------------------------------------------- /get_algs_name.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/get_algs_name.m -------------------------------------------------------------------------------- /get_sequences_name.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/get_sequences_name.m -------------------------------------------------------------------------------- /load_images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/load_images.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/main.m -------------------------------------------------------------------------------- /perform_frame_selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/perform_frame_selection.m -------------------------------------------------------------------------------- /perform_matrix_completion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/perform_matrix_completion.m -------------------------------------------------------------------------------- /perform_tensor_completion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/perform_tensor_completion.m -------------------------------------------------------------------------------- /results_mc/GROUSE/BC_HallAndMonitor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/results_mc/GROUSE/BC_HallAndMonitor.PNG -------------------------------------------------------------------------------- /results_tc/TMac/BC_HallAndMonitor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/results_tc/TMac/BC_HallAndMonitor.PNG -------------------------------------------------------------------------------- /sequences/HallAndMonitor/GT_HallAndMonitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/GT_HallAndMonitor.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000000.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000001.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000002.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000003.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000004.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000005.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000006.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000007.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000008.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000009.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000010.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000011.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000012.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000013.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000014.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000015.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000016.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000017.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000018.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000019.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000020.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000021.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000022.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000023.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000024.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000025.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000026.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000027.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000028.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000029.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000030.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000031.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000032.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000033.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000034.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000035.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000036.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000037.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000038.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000039.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000040.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000041.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000042.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000043.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000044.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000045.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000046.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000047.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000048.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000049.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000050.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000051.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000052.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000053.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000054.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000055.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000056.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000057.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000058.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000059.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000060.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000061.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000062.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000063.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000064.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000065.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000066.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000067.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000068.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000069.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000070.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000071.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000072.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000073.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000074.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000075.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000076.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000077.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000078.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000079.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000080.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000081.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000082.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000083.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000084.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000085.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000086.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000087.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000088.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000089.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000090.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000091.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000092.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000093.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000094.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000095.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000096.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000097.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000098.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000099.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000100.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000101.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000102.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000103.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000104.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000105.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000106.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000107.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000108.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000109.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000110.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000111.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000112.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000113.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000114.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000115.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000116.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000117.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000118.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000119.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000120.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000121.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000122.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000123.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000124.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000125.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000126.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000127.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000128.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000129.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000130.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000131.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000132.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000133.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000134.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000135.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000136.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000137.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000138.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000139.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000140.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000141.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000142.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000143.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000144.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000145.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000146.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000147.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000148.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000149.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000150.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000151.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000152.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000153.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000154.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000155.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000156.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000157.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000158.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000159.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000160.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000161.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000162.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000163.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000164.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000165.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000166.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000167.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000168.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000169.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000170.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000171.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000172.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000173.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000174.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000175.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000176.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000177.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000178.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000179.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000180.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000181.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000182.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000183.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000184.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000185.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000186.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000187.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000188.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000189.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000190.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000191.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000192.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000193.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000194.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000195.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000196.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000197.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000198.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000199.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000200.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000201.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000202.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000203.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000204.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000205.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000206.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000207.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000208.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000209.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000210.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000211.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000212.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000213.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000214.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000215.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000216.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000217.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000218.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000219.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000220.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000221.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000222.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000223.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000224.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000225.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000226.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000227.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000228.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000229.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000230.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000231.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000232.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000233.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000234.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000235.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000236.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000237.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000238.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000239.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000240.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000241.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000242.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000243.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000244.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000245.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000246.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000247.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000248.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000249.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000250.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000251.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000252.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000253.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000254.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000255.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000256.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000257.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000258.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000259.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000260.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000261.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000261.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000262.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000263.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000264.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000265.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000266.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000267.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000268.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000269.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000270.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000271.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000272.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000273.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000274.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000275.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000276.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000277.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000278.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000279.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000280.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000281.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000282.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000283.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000283.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000284.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000285.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000286.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000287.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000287.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000288.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000289.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000290.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000291.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000292.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000293.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000294.png -------------------------------------------------------------------------------- /sequences/HallAndMonitor/PNG/HallAndMonitor_000295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/sequences/HallAndMonitor/PNG/HallAndMonitor_000295.png -------------------------------------------------------------------------------- /sequences_mat/.gitignore: -------------------------------------------------------------------------------- 1 | *.mat -------------------------------------------------------------------------------- /trafficdb/traffic_patches.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/trafficdb/traffic_patches.mat -------------------------------------------------------------------------------- /utils/convert_video3d_to_2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/convert_video3d_to_2d.m -------------------------------------------------------------------------------- /utils/convert_video4d_to_3d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/convert_video4d_to_3d.m -------------------------------------------------------------------------------- /utils/displog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/displog.m -------------------------------------------------------------------------------- /utils/show_2dvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/show_2dvideo.m -------------------------------------------------------------------------------- /utils/show_3dvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/show_3dvideo.m -------------------------------------------------------------------------------- /utils/show_4dvideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/show_4dvideo.m -------------------------------------------------------------------------------- /utils/subsampling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewssobral/mctc4bmi/HEAD/utils/subsampling.m --------------------------------------------------------------------------------