├── +CFG ├── Dr.m ├── ImgSet.m └── get.m ├── .gitignore ├── LICENSE ├── README.md ├── accv18 ├── +ACCV18 │ ├── ct_sensitivity_accv18.m │ ├── make_sensitivity_figs.m │ ├── make_stability_figs.m │ └── rt_sensitivity.m ├── +WRAP │ ├── laf222_to_ql.m │ ├── laf32_to_ql.m │ └── laf4_to_ql.m ├── compute_scales.m ├── ct_sensitivity_20180622.mat ├── ct_sensitivity_20180623.mat ├── make_change_of_scale_constraints.m ├── make_closed_form_constraints.m ├── paper │ └── make_rebuttal_fig.m ├── rt_sensitivity_20180621.mat ├── rt_sensitivity_20180622.mat ├── sensitivity_20180311.mat ├── simtest.m ├── solver_changeofscale_222_d2.m ├── solver_changeofscale_222_new_basis.m ├── solver_changeofscale_222_new_basis_d2.m ├── solver_changeofscale_222_new_basis_d2_old.m ├── solver_changeofscale_22_det_norad.m ├── solver_changeofscale_32_d2.m ├── solver_changeofscale_32_new_basis_d2.m ├── solver_changeofscale_4_d2.m ├── solver_changeofscale_4_new_basis_d2.m ├── solver_test.m ├── stability.m ├── test_constraints.m └── test_solvers.m ├── cvdb ├── +KEY │ ├── cfg2hash.m │ ├── class_to_struct.m │ ├── hash.m │ ├── make.m │ └── xor.m ├── +SQL │ ├── SqlBase.m │ ├── SqlDb.m │ ├── find_img_name.m │ ├── find_img_subset.m │ ├── get_canonical_path.m │ ├── make.m │ └── put_img_set.m ├── .gitignore ├── .gitmodules ├── CidCache.m ├── KeyValDb.m ├── cvdb_init.m └── read_img.m ├── cvpr14 ├── cvpr14_demo.m └── solvers │ ├── +WRAP │ ├── laf22_to_l.m │ └── laf22_to_ql.m │ ├── laf22_to_Hinf.m │ ├── laf2_to_Amu.m │ ├── laf2_to_Amur.m │ └── laf3_to_Hinf.m ├── cvpr18 ├── cvpr18_demo.m └── solvers │ ├── +WRAP │ ├── laf22_to_qlusv.m │ ├── laf22_to_qluv.m │ ├── laf2_to_qlsu.m │ ├── laf2_to_qlu.m │ ├── pt3x2_to_qlsu.m │ ├── pt3x2_to_qlu.m │ ├── pt4x2_to_qlusv.m │ └── pt4x2_to_qluv.m │ ├── compute_coefficients_H25lvk_det_14x18.cpp │ ├── compute_coefficients_H25lvk_det_14x18.mexa64 │ ├── compute_coefficients_H35lv1v2k_det_54x60.cpp │ ├── compute_coefficients_H35lv1v2k_det_54x60.mexa64 │ ├── compute_coefficients_H3lvks_det_24x26.cpp │ ├── compute_coefficients_H3lvks_det_24x26.mexa64 │ ├── compute_coefficients_H4lv1v2ks1_det.cpp │ ├── compute_coefficients_H4lv1v2ks1_det.mexa64 │ ├── solver_H25lvk.m │ ├── solver_H25lvk_det_14x18.m │ ├── solver_H35lv1v2k_det_54x60.m │ ├── solver_H3lvks_74x76.m │ ├── solver_H3lvks_det_24x26.m │ ├── solver_H4lv1v2k_35pt_348x354.m │ ├── solver_H4lv1v2ks1.m │ ├── solver_H4lv1v2ks1_det_76x80.m │ ├── solver_H4lv1v2ks1_det_equations_from_macaulay2.m │ ├── solver_H4lv1v2ks1_det_equations_from_macaulay2_k_116x125.m │ ├── solver_H4lv1v2ks1_det_equations_from_macaulay2_k_116x125_nestabilny.m │ └── solver_H4lv1v2ks_4pt_244x250_6sol.m ├── data ├── Fujifilm_X_E1_Samyang_8mm.jpg ├── cropped_dartboard.jpg ├── cropped_dartboard_mask.png ├── new_medium_63_o.jpg ├── pattern1b.jpg └── pattern24w.jpg ├── do_one_img.m ├── draw_segmentation.m ├── features ├── +COVDET │ ├── +CFG │ │ ├── AffPt.m │ │ ├── DistinctAffPt.m │ │ └── HessianAffine.m │ ├── AffPtToDistinctAffPt.m │ ├── KmPts2.m │ └── split_reflect.m ├── +DR │ ├── get.m │ ├── group_desc.m │ ├── group_reflections.m │ ├── rm_dups.m │ └── rm_singletons.m ├── +KEY │ ├── cfg2hash.m │ ├── class_to_struct.m │ ├── hash.m │ ├── make.m │ ├── mat2json.m │ └── xor.m ├── +LAF │ ├── +CFG │ │ └── Laf.m │ └── MserToLaf.m ├── +LINE │ ├── +CFG │ │ └── Line.m │ ├── LineSegmentDetector.m │ ├── LineSegmentDetector_.mexa64 │ ├── LineSegmentDetector_mexopencv.mexa64 │ ├── LsdLines.m │ ├── example │ └── lsd_lines_demo.m ├── +MSER │ ├── +CFG │ │ ├── Mser.m │ │ ├── Mserm.m │ │ └── Mserp.m │ ├── Extrema.m │ ├── apply_T.m │ └── draw.m ├── +SEGM │ ├── background.m │ ├── get_watershed.m │ ├── join.m │ ├── test_watershed.m │ └── test_watershed_slic.m ├── +SIFT │ ├── +CFG │ │ └── Sift.m │ ├── AffPtToSift.m │ └── sift_to_rootsift.m ├── +SPIXEL │ ├── +CFG │ │ ├── Seeds.m │ │ ├── Slic.m │ │ └── Spixel.m │ ├── Seeds.m │ ├── VlSlic.m │ ├── calc_adjacency.m │ ├── calc_all_pairwise.m │ ├── calc_pairwise.m │ ├── color_map.m │ ├── draw.m │ ├── draw_boundaries.m │ ├── draw_groups.m │ ├── draw_pairwise.m │ ├── get_active.m │ ├── labeling_to_masks.m │ ├── make_figures.m │ ├── make_masks.m │ ├── mark_planes.m │ ├── mean_values.m │ ├── overlap_ratio.m │ ├── renumber.m │ ├── segment_to_pixel_bag.m │ ├── slic.m │ └── test_pairwise.m ├── CfgBase.m ├── Gb_Code_Aug2014 │ ├── .directory │ ├── GbC_lambda.m │ ├── Gb_CS.m │ ├── Gb_CSG.m │ ├── Gb_data_lambda.m │ ├── Gb_geom.m │ ├── getNeighbors3.m │ ├── getPCAData.m │ ├── hysthresh.m │ ├── linkEdges.m │ ├── ni.m │ ├── nonmaxsup.m │ ├── readme.txt │ ├── rgb2lab.m │ └── softSegs.m ├── Gen.m ├── Img.m ├── SysCfg.m ├── cmp_argparse.m ├── combine_dr.m ├── extract.m ├── features_init.m ├── find_pixels.m ├── flatten.m ├── fsss │ ├── README.txt │ ├── allOx5k.m │ ├── allStBg.m │ ├── allfeatures.m │ ├── compDict.m │ ├── convLabel.m │ ├── data │ │ ├── dicts_parisculpt.mat │ │ ├── dicts_stbg.mat │ │ ├── imagelist_oxc1_5k.txt │ │ ├── model_parisculpt.mat │ │ ├── model_stbg.mat │ │ └── parisculpt_anno_list.txt │ ├── filterHoles.m │ ├── fnlist.m │ ├── getPaths.m │ ├── getSoftFeats.m │ ├── getTrainSoftFeats.m │ ├── imreadResize.m │ ├── inferLabels.m │ ├── initGlobal.m │ ├── labelImage.m │ ├── readdFrame.m │ ├── removeFrame.m │ ├── setup.m │ ├── svmCross.m │ ├── test_stbg.m │ ├── uniformQuant.m │ └── util │ │ ├── relja_col.m │ │ ├── relja_display.m │ │ ├── relja_hsv.m │ │ ├── relja_imreadExifInvRot.m │ │ ├── relja_imreadExifRot.m │ │ ├── relja_l1normalize_col.m │ │ ├── relja_l1normalize_row.m │ │ └── relja_l2normalize_col.m ├── mask_to_gmm.m ├── mask_to_pixel_bag.m ├── seeds │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── Makefile │ ├── README.txt │ ├── compile_mex.m │ ├── helper.h │ ├── mexSEEDS.cpp │ ├── mexSEEDS.mexa64 │ ├── seeds2.cpp │ ├── seeds2.h │ ├── seeds2.o │ └── superpixel_test.cpp ├── slic │ ├── circularstruct.m │ ├── cleanupregions.m │ ├── dbscan.m │ ├── drawregionboundaries.m │ ├── finddisconnected.m │ ├── makeregionsdistinct.m │ ├── maskimage.m │ ├── mcleanupregions.m │ ├── regionadjacency.m │ ├── renumberregions.m │ ├── rgb2lab.m │ ├── slic.m │ ├── spdbscan.m │ └── testdbscan.m └── unflatten.m ├── go.m ├── go_sc.m ├── goijcv19.m ├── goijcv19.sh ├── ijcv19 ├── +IJCV19 │ ├── bundle_lambda.m │ ├── ct_sensitivity.m │ ├── distortion.m │ ├── fix_summary_list.m │ ├── go.m │ ├── make_cdf_fig.m │ ├── make_ct_sensitivity_figs.m │ ├── make_distortion_fig.m │ ├── make_feasibility_figs.m │ ├── make_figs.m │ ├── make_rt_sensitivity_figs.m │ ├── make_sattler_figs.m │ ├── make_solver_list.m │ ├── make_stability_figs.m │ ├── make_stability_solver_list.m │ ├── rt_sensitivity.m │ └── stability.m ├── +WRAP │ ├── oc222_to_ql.m │ ├── oc32_to_ql.m │ └── oc4_to_ql.m ├── old_solver_rect_cos_222.m ├── solver_rect_cos_222_bs.m ├── solver_rect_cos_222_refine.m ├── solver_rect_cos_32_baseline.m ├── solver_rect_cos_32_bs.m ├── solver_rect_cos_4_baseline.m ├── solver_rect_cos_4_bs.m ├── solver_rectif_change_scale.m └── test_solver.m ├── matlab_extras ├── HalfVectorization │ ├── DiagM.m │ ├── DuplicationM.m │ ├── EliminationM.m │ ├── README.txt │ ├── idiag.m │ ├── itril.m │ ├── itriu.m │ ├── mytoeplitz.m │ └── testprog.m ├── allcomb.m ├── cmp_argparse.m ├── cmp_splitapply.m ├── distinguishable_colors.m ├── export_fig │ ├── .gitignore │ ├── ImageSelection.class │ ├── ImageSelection.java │ ├── LICENSE │ ├── README.md │ ├── append_pdfs.m │ ├── copyfig.m │ ├── crop_borders.m │ ├── eps2pdf.m │ ├── export_fig.m │ ├── fix_lines.m │ ├── ghostscript.m │ ├── im2gif.m │ ├── isolate_axes.m │ ├── pdf2eps.m │ ├── pdftops.m │ ├── print2array.m │ ├── print2eps.m │ ├── read_write_entire_textfile.m │ ├── user_string.m │ └── using_hg2.m ├── gj │ └── gj.c ├── legtools │ ├── .gitignore │ ├── Readme.md │ └── legtools.m ├── make_grouped_boxplot.m ├── make_iif.m ├── matlab2tikz │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS.md │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── logos │ │ └── matlab2tikz.svg │ ├── matlab2tikz.sublime-project │ ├── runtests.sh │ ├── src │ │ ├── cleanfigure.m │ │ ├── dev │ │ │ └── formatWhitespace.m │ │ ├── figure2dot.m │ │ ├── m2tInputParser.m │ │ ├── m2tcustom.m │ │ ├── matlab2tikz.m │ │ └── private │ │ │ ├── errorUnknownEnvironment.m │ │ │ ├── getEnvironment.m │ │ │ ├── guitypes.m │ │ │ ├── isAxis3D.m │ │ │ ├── isVersionBelow.m │ │ │ ├── m2tUpdater.m │ │ │ ├── m2tstrjoin.m │ │ │ ├── versionArray.m │ │ │ └── versionString.m │ └── test │ │ ├── README.md │ │ ├── codeReport.m │ │ ├── compareTimings.m │ │ ├── examples │ │ ├── example_bar_plot.m │ │ └── example_quivers.m │ │ ├── makeLatexReport.m │ │ ├── makeTapReport.m │ │ ├── makeTravisReport.m │ │ ├── output │ │ └── .gitignore │ │ ├── private │ │ ├── OSVersion.m │ │ ├── StreamMaker.m │ │ ├── VersionControlIdentifier.m │ │ ├── calculateMD5Hash.m │ │ ├── cleanFiles.m │ │ ├── countNumberOfErrors.m │ │ ├── emptyStage.m │ │ ├── emptyStatus.m │ │ ├── errorHandler.m │ │ ├── errorHasOccurred.m │ │ ├── execute_hash_stage.m │ │ ├── execute_plot_stage.m │ │ ├── execute_save_stage.m │ │ ├── execute_tikz_stage.m │ │ ├── execute_type_stage.m │ │ ├── fillStruct.m │ │ ├── getEnvironment.m │ │ ├── getStagesFromStatus.m │ │ ├── hasTestFailed.m │ │ ├── hashTableName.m │ │ ├── initializeGlobalState.m │ │ ├── loadHashTable.m │ │ ├── m2troot.m │ │ ├── m2tstrjoin.m │ │ ├── restoreGlobalState.m │ │ ├── splitPassFailSkippedTests.m │ │ ├── splitUnreliableTests.m │ │ └── testMatlab2tikz.m │ │ ├── runMatlab2TikzTests.m │ │ ├── saveHashTable.m │ │ ├── suites │ │ ├── ACID.MATLAB.8.3.md5 │ │ ├── ACID.MATLAB.8.4.md5 │ │ ├── ACID.Octave.3.8.0.md5 │ │ ├── ACID.Octave.4.2.0.md5 │ │ ├── ACID.Octave.4.2.2.md5 │ │ ├── ACID.m │ │ ├── issues.m │ │ ├── private │ │ │ ├── getEnvironment.m │ │ │ ├── herrorbar.m │ │ │ ├── isEnvironment.m │ │ │ ├── isMATLAB.m │ │ │ ├── isOctave.m │ │ │ ├── isVersionBelow.m │ │ │ └── versionCompare.m │ │ ├── testPatches.m │ │ └── testSurfshader.m │ │ ├── template │ │ ├── .gitignore │ │ ├── Makefile │ │ └── data │ │ │ ├── .gitignore │ │ │ ├── converted │ │ │ └── Makefile │ │ │ └── reference │ │ │ └── Makefile │ │ ├── testGraphical.m │ │ └── testHeadless.m ├── msplitapply.m ├── multinv │ ├── license.txt │ └── multinv.m ├── multiprod │ ├── Appendix A - Algorithm.pdf │ ├── Appendix B - Testing speed and memory usage.pdf │ ├── Appendix C - Syntaxes.pdf │ ├── MULTIPROD Toolbox Manual.pdf │ ├── Testing │ │ ├── Data │ │ │ ├── Memory used by MATLAB statements.xls │ │ │ ├── Timing results.xlsx │ │ │ └── timing_MX.txt │ │ ├── arraylab13.m │ │ ├── arraylab131.m │ │ ├── arraylab132.m │ │ ├── arraylab133.m │ │ ├── genop.m │ │ ├── multiprod13.m │ │ ├── readme.txt │ │ ├── sysrequirements_for_testing.m │ │ ├── testMULTIPROD.m │ │ ├── testing_memory_usage.m │ │ ├── timing_MX.m │ │ ├── timing_arraylab_engines.m │ │ └── timing_matlab_commands.m │ ├── license.txt │ ├── loc2loc.m │ ├── multiprod.m │ └── multitransp.m ├── recombine.m └── serialization │ ├── hlp_deserialize.m │ ├── hlp_serialize.m │ └── license.txt ├── mex ├── affpatch.mexa64 ├── extrema.mexa64 ├── gj.mexa64 ├── kmpts2.mexa64 └── mexlafs.mexa64 ├── pami19 ├── +PAMI19 │ ├── ct_sensitivity.m │ ├── make_ct_sensitivity_figs.m │ ├── make_solver_list.m │ ├── make_stability_fig.m │ ├── make_stability_solver_list.m │ ├── rt_sensitivity.m │ └── stability.m └── solvers │ ├── +WRAP │ ├── laf2_to_ql.m │ ├── pt1x2l_to_u.m │ └── pt3x2_to_ql.m │ ├── jmm_solver.m │ ├── make_jmm_constraints.m │ ├── pami_ct_sensitivity.m │ └── test_jmm_constraints.m ├── pattern_printer ├── LICENSE ├── PatternPrinter.m ├── PatternPrinter2.m ├── RepeatEval.m ├── RepeatLo.m ├── RepeatSampler.m ├── calc_cost.m ├── calc_loss.m ├── composite_xforms.m ├── fit_coplanar_patterns.m ├── fit_motion_centroids.m ├── geman_mcclure.m ├── guided_search.m ├── label_best_orientation.m ├── lp_vq.m ├── make_ransac.m ├── make_scene_graph.m ├── print_pattern.m ├── resection.m ├── rm_duplicate_motions.m ├── segment_motions.m ├── sfm.m ├── solvers │ ├── +HG │ │ ├── laf1x2_to_Amu.m │ │ ├── laf1x2_to_Amur.m │ │ ├── laf1x3_to_Hinf.m │ │ └── laf2x2_to_Hinf.m │ └── +SOLVER │ │ └── laf2x2_to_AHinf.m └── unique_ro.m ├── ransac ├── LICENSE ├── README.md └── Ransac.m ├── rectify_planes.m ├── render_imgs.m ├── repeats_init.m ├── rm_backups.sh ├── save_imgs.m ├── save_results.m ├── scene_sim ├── +ARC │ ├── add_noise.m │ ├── make.m │ └── sample.m ├── +GRID │ ├── add_noise.m │ ├── coplanar_pattern.m │ ├── make_gt.m │ ├── make_viewpoint.m │ ├── random_coplanar_pattern.m │ └── render.m ├── +PLANE │ ├── make_Rt_gt.m │ ├── make_cspond_same_Rt.m │ ├── make_cspond_same_reflect_v.m │ ├── make_cspond_same_t.m │ ├── make_cspond_set_Rt.m │ ├── make_cspond_set_lines.m │ ├── make_cspond_set_t.m │ ├── make_viewpoint.m │ └── sample_cspond.m ├── +TEST │ ├── calc_warp_err.m │ ├── make_cdf_warp_fig.m │ ├── make_distortion_fig.m │ ├── make_feasibility_figs.m │ ├── make_samples.m │ ├── make_scene.m │ ├── make_sensitivity_figs.m │ ├── make_stability_fig.m │ ├── rigid_xform.m │ ├── sensitivity.m │ ├── stability.m │ ├── test.m │ └── verify.m ├── LICENSE ├── README.md └── data │ └── chess │ └── iphone6 │ ├── IMG_0962.JPG │ └── IMG_0964.JPG ├── solvers ├── +WRAP │ ├── RectSolver.m │ ├── laf22_to_q1q2H.m │ ├── laf22_to_qH.m │ ├── laf2_to_lu.m │ ├── lafmn_to_qAl.m │ ├── pt2x2_to_lu.m │ ├── pt5x2_to_q1q2H.m │ └── pt5x2_to_qH.m ├── H5r1r2.m ├── H5r1r2_3var_c.m ├── H5rFitz.m └── H5rKuk.m ├── test.m ├── test2.m └── vgtk ├── +CAM ├── E_to_4P.m ├── F_to_2P.m ├── F_to_4P.m ├── P4_to_P2.m ├── P_to_KRc.m ├── cam_make_generic_4mpx.m ├── draw.m ├── get_crop_factor.m ├── make_K.m ├── make_canon_eos_5d_mark3.m ├── make_ccd.m ├── make_fitz_normalization.m ├── make_rd_div_tform.m ├── make_ru_div_tform.m ├── make_small_ccd.m ├── noise.mat ├── normalize.m ├── ortho_project.m ├── perspective_project.m ├── pt1x2_to_X.m ├── pt1x3_to_cc.m ├── pt6x2_to_P.m ├── rd_div.m ├── rd_div_tform.m ├── render_scene.m ├── ru_div.m └── ru_div_tform.m ├── +CONIC ├── C_to_A.m ├── C_to_TRS.m ├── circrect.m ├── draw.m ├── draw_A.m ├── draw_circle.m ├── get_R.m ├── get_center.m ├── get_common_real_poles.m ├── get_polars.m └── order_poles.m ├── +HG ├── H_to_HaHp.m ├── H_to_HsHaHp.m ├── ell2x2_to_H.m ├── hg │ ├── hg_2e.m │ ├── hg_degen_test.m │ ├── hg_pole_polar_test.m │ └── tags ├── is_Hinf_degen.m ├── laf1x2_to_A.m ├── laf1x2_to_Rt.m ├── laf2xN_to_RtxN.m ├── laf2xN_to_txN.m ├── pt2x2_ln2x2_to_H.m ├── pt2x2_to_Rt.m ├── pt2x2_to_sRt.m ├── pt3x2_to_A.m ├── pt4x2_to_H.m ├── sampson_err.m ├── vl_laf3_to_Huv.m ├── vl_orientation.m └── vl_to_Hinf.m ├── +IMG ├── calc_rectification_border.m ├── output_rectification.m ├── rectify.m ├── register_by_size.m ├── render_masked_scale_change.m ├── render_scale_change.m ├── ru_div.m ├── ru_div_rectify.m └── sample_rect.m ├── +LAF ├── A_to_pt3x3.m ├── MserToLaf.m ├── affpt_to_A.m ├── affpt_to_pt3x3.m ├── apply_T_to_affpt.m ├── are_colinear.m ├── calc_angle.m ├── calc_extent_lengths.m ├── calc_intersection.m ├── calc_overlap.m ├── change_format.m ├── draw.m ├── draw_groups.m ├── find_overlapped_segments.m ├── get_distinct.m ├── get_patch.m ├── has_laf_update.m ├── is_colinear.m ├── make_random.m ├── maxdist.m ├── mindist.m ├── pt2x3_to_pt3x3.m ├── pt3x3_to_A.m ├── pt3x3_to_ell.m ├── pt3x3_to_invA.m ├── pt3x3_to_mask.m ├── pt3x3_to_poly.m ├── pt3x3_to_xy.m ├── reflect.m ├── reflect_yaxis.m ├── sampson_err.m ├── shrink.m ├── warp_fwd.m └── xy_to_pt3x3.m ├── +LINE ├── calc_relative_orientation.m ├── draw.m ├── draw_extents.m ├── draw_raster.m ├── fit.m ├── inhomogenize.m ├── intersect.m ├── intersect_rect.m ├── line_to_mask.m ├── make_orthogonal.m ├── move.m ├── rd_div.m ├── render_rd_div.m ├── stretch.m └── which_side.m ├── +MTX ├── chol_2x2.m ├── inv_2x2.m ├── inv_K.m ├── make_Rz.m ├── make_T.m ├── make_skew_3x3.m └── solve_2x2.m ├── +PT ├── are_colinear.m ├── are_same_orientation.m ├── calc_mu.m ├── calc_scale.m ├── calc_whitening_xform.m ├── draw.m ├── draw_groups.m ├── homogenize.m ├── is_ccwise.m ├── mtimesx.m ├── multiprod.m ├── rd_div.m ├── renorm.m ├── renormI.m ├── reverse_orientation.m ├── ru_div.m ├── to_euclidean.m └── translate.m ├── +Rt ├── mtx_to_params.m └── params_to_mtx.m ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── vgtk_init.m /+CFG/Dr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/+CFG/Dr.m -------------------------------------------------------------------------------- /+CFG/ImgSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/+CFG/ImgSet.m -------------------------------------------------------------------------------- /+CFG/get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/+CFG/get.m -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/README.md -------------------------------------------------------------------------------- /accv18/+ACCV18/ct_sensitivity_accv18.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+ACCV18/ct_sensitivity_accv18.m -------------------------------------------------------------------------------- /accv18/+ACCV18/make_sensitivity_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+ACCV18/make_sensitivity_figs.m -------------------------------------------------------------------------------- /accv18/+ACCV18/make_stability_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+ACCV18/make_stability_figs.m -------------------------------------------------------------------------------- /accv18/+ACCV18/rt_sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+ACCV18/rt_sensitivity.m -------------------------------------------------------------------------------- /accv18/+WRAP/laf222_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+WRAP/laf222_to_ql.m -------------------------------------------------------------------------------- /accv18/+WRAP/laf32_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+WRAP/laf32_to_ql.m -------------------------------------------------------------------------------- /accv18/+WRAP/laf4_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/+WRAP/laf4_to_ql.m -------------------------------------------------------------------------------- /accv18/compute_scales.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/compute_scales.m -------------------------------------------------------------------------------- /accv18/ct_sensitivity_20180622.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/ct_sensitivity_20180622.mat -------------------------------------------------------------------------------- /accv18/ct_sensitivity_20180623.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/ct_sensitivity_20180623.mat -------------------------------------------------------------------------------- /accv18/make_change_of_scale_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/make_change_of_scale_constraints.m -------------------------------------------------------------------------------- /accv18/make_closed_form_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/make_closed_form_constraints.m -------------------------------------------------------------------------------- /accv18/paper/make_rebuttal_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/paper/make_rebuttal_fig.m -------------------------------------------------------------------------------- /accv18/rt_sensitivity_20180621.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/rt_sensitivity_20180621.mat -------------------------------------------------------------------------------- /accv18/rt_sensitivity_20180622.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/rt_sensitivity_20180622.mat -------------------------------------------------------------------------------- /accv18/sensitivity_20180311.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/sensitivity_20180311.mat -------------------------------------------------------------------------------- /accv18/simtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/simtest.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_222_d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_222_d2.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_222_new_basis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_222_new_basis.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_222_new_basis_d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_222_new_basis_d2.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_222_new_basis_d2_old.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_222_new_basis_d2_old.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_22_det_norad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_22_det_norad.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_32_d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_32_d2.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_32_new_basis_d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_32_new_basis_d2.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_4_d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_4_d2.m -------------------------------------------------------------------------------- /accv18/solver_changeofscale_4_new_basis_d2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_changeofscale_4_new_basis_d2.m -------------------------------------------------------------------------------- /accv18/solver_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/solver_test.m -------------------------------------------------------------------------------- /accv18/stability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/stability.m -------------------------------------------------------------------------------- /accv18/test_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/test_constraints.m -------------------------------------------------------------------------------- /accv18/test_solvers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/accv18/test_solvers.m -------------------------------------------------------------------------------- /cvdb/+KEY/cfg2hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+KEY/cfg2hash.m -------------------------------------------------------------------------------- /cvdb/+KEY/class_to_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+KEY/class_to_struct.m -------------------------------------------------------------------------------- /cvdb/+KEY/hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+KEY/hash.m -------------------------------------------------------------------------------- /cvdb/+KEY/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+KEY/make.m -------------------------------------------------------------------------------- /cvdb/+KEY/xor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+KEY/xor.m -------------------------------------------------------------------------------- /cvdb/+SQL/SqlBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/SqlBase.m -------------------------------------------------------------------------------- /cvdb/+SQL/SqlDb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/SqlDb.m -------------------------------------------------------------------------------- /cvdb/+SQL/find_img_name.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/find_img_name.m -------------------------------------------------------------------------------- /cvdb/+SQL/find_img_subset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/find_img_subset.m -------------------------------------------------------------------------------- /cvdb/+SQL/get_canonical_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/get_canonical_path.m -------------------------------------------------------------------------------- /cvdb/+SQL/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/make.m -------------------------------------------------------------------------------- /cvdb/+SQL/put_img_set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/+SQL/put_img_set.m -------------------------------------------------------------------------------- /cvdb/.gitignore: -------------------------------------------------------------------------------- 1 | cvdb.cfg -------------------------------------------------------------------------------- /cvdb/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/.gitmodules -------------------------------------------------------------------------------- /cvdb/CidCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/CidCache.m -------------------------------------------------------------------------------- /cvdb/KeyValDb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/KeyValDb.m -------------------------------------------------------------------------------- /cvdb/cvdb_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/cvdb_init.m -------------------------------------------------------------------------------- /cvdb/read_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvdb/read_img.m -------------------------------------------------------------------------------- /cvpr14/cvpr14_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/cvpr14_demo.m -------------------------------------------------------------------------------- /cvpr14/solvers/+WRAP/laf22_to_l.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/solvers/+WRAP/laf22_to_l.m -------------------------------------------------------------------------------- /cvpr14/solvers/+WRAP/laf22_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/solvers/+WRAP/laf22_to_ql.m -------------------------------------------------------------------------------- /cvpr14/solvers/laf22_to_Hinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/solvers/laf22_to_Hinf.m -------------------------------------------------------------------------------- /cvpr14/solvers/laf2_to_Amu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/solvers/laf2_to_Amu.m -------------------------------------------------------------------------------- /cvpr14/solvers/laf2_to_Amur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/solvers/laf2_to_Amur.m -------------------------------------------------------------------------------- /cvpr14/solvers/laf3_to_Hinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr14/solvers/laf3_to_Hinf.m -------------------------------------------------------------------------------- /cvpr18/cvpr18_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/cvpr18_demo.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/laf22_to_qlusv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/laf22_to_qlusv.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/laf22_to_qluv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/laf22_to_qluv.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/laf2_to_qlsu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/laf2_to_qlsu.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/laf2_to_qlu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/laf2_to_qlu.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/pt3x2_to_qlsu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/pt3x2_to_qlsu.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/pt3x2_to_qlu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/pt3x2_to_qlu.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/pt4x2_to_qlusv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/pt4x2_to_qlusv.m -------------------------------------------------------------------------------- /cvpr18/solvers/+WRAP/pt4x2_to_qluv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/+WRAP/pt4x2_to_qluv.m -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H25lvk_det_14x18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H25lvk_det_14x18.cpp -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H25lvk_det_14x18.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H25lvk_det_14x18.mexa64 -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H35lv1v2k_det_54x60.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H35lv1v2k_det_54x60.cpp -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H35lv1v2k_det_54x60.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H35lv1v2k_det_54x60.mexa64 -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H3lvks_det_24x26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H3lvks_det_24x26.cpp -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H3lvks_det_24x26.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H3lvks_det_24x26.mexa64 -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H4lv1v2ks1_det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H4lv1v2ks1_det.cpp -------------------------------------------------------------------------------- /cvpr18/solvers/compute_coefficients_H4lv1v2ks1_det.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/compute_coefficients_H4lv1v2ks1_det.mexa64 -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H25lvk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H25lvk.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H25lvk_det_14x18.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H25lvk_det_14x18.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H35lv1v2k_det_54x60.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H35lv1v2k_det_54x60.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H3lvks_74x76.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H3lvks_74x76.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H3lvks_det_24x26.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H3lvks_det_24x26.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2k_35pt_348x354.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2k_35pt_348x354.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2ks1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2ks1.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2ks1_det_76x80.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2ks1_det_76x80.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2ks1_det_equations_from_macaulay2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2ks1_det_equations_from_macaulay2.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2ks1_det_equations_from_macaulay2_k_116x125.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2ks1_det_equations_from_macaulay2_k_116x125.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2ks1_det_equations_from_macaulay2_k_116x125_nestabilny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2ks1_det_equations_from_macaulay2_k_116x125_nestabilny.m -------------------------------------------------------------------------------- /cvpr18/solvers/solver_H4lv1v2ks_4pt_244x250_6sol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/cvpr18/solvers/solver_H4lv1v2ks_4pt_244x250_6sol.m -------------------------------------------------------------------------------- /data/Fujifilm_X_E1_Samyang_8mm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/data/Fujifilm_X_E1_Samyang_8mm.jpg -------------------------------------------------------------------------------- /data/cropped_dartboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/data/cropped_dartboard.jpg -------------------------------------------------------------------------------- /data/cropped_dartboard_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/data/cropped_dartboard_mask.png -------------------------------------------------------------------------------- /data/new_medium_63_o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/data/new_medium_63_o.jpg -------------------------------------------------------------------------------- /data/pattern1b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/data/pattern1b.jpg -------------------------------------------------------------------------------- /data/pattern24w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/data/pattern24w.jpg -------------------------------------------------------------------------------- /do_one_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/do_one_img.m -------------------------------------------------------------------------------- /draw_segmentation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/draw_segmentation.m -------------------------------------------------------------------------------- /features/+COVDET/+CFG/AffPt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+COVDET/+CFG/AffPt.m -------------------------------------------------------------------------------- /features/+COVDET/+CFG/DistinctAffPt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+COVDET/+CFG/DistinctAffPt.m -------------------------------------------------------------------------------- /features/+COVDET/+CFG/HessianAffine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+COVDET/+CFG/HessianAffine.m -------------------------------------------------------------------------------- /features/+COVDET/AffPtToDistinctAffPt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+COVDET/AffPtToDistinctAffPt.m -------------------------------------------------------------------------------- /features/+COVDET/KmPts2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+COVDET/KmPts2.m -------------------------------------------------------------------------------- /features/+COVDET/split_reflect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+COVDET/split_reflect.m -------------------------------------------------------------------------------- /features/+DR/get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+DR/get.m -------------------------------------------------------------------------------- /features/+DR/group_desc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+DR/group_desc.m -------------------------------------------------------------------------------- /features/+DR/group_reflections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+DR/group_reflections.m -------------------------------------------------------------------------------- /features/+DR/rm_dups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+DR/rm_dups.m -------------------------------------------------------------------------------- /features/+DR/rm_singletons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+DR/rm_singletons.m -------------------------------------------------------------------------------- /features/+KEY/cfg2hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+KEY/cfg2hash.m -------------------------------------------------------------------------------- /features/+KEY/class_to_struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+KEY/class_to_struct.m -------------------------------------------------------------------------------- /features/+KEY/hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+KEY/hash.m -------------------------------------------------------------------------------- /features/+KEY/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+KEY/make.m -------------------------------------------------------------------------------- /features/+KEY/mat2json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+KEY/mat2json.m -------------------------------------------------------------------------------- /features/+KEY/xor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+KEY/xor.m -------------------------------------------------------------------------------- /features/+LAF/+CFG/Laf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LAF/+CFG/Laf.m -------------------------------------------------------------------------------- /features/+LAF/MserToLaf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LAF/MserToLaf.m -------------------------------------------------------------------------------- /features/+LINE/+CFG/Line.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/+CFG/Line.m -------------------------------------------------------------------------------- /features/+LINE/LineSegmentDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/LineSegmentDetector.m -------------------------------------------------------------------------------- /features/+LINE/LineSegmentDetector_.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/LineSegmentDetector_.mexa64 -------------------------------------------------------------------------------- /features/+LINE/LineSegmentDetector_mexopencv.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/LineSegmentDetector_mexopencv.mexa64 -------------------------------------------------------------------------------- /features/+LINE/LsdLines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/LsdLines.m -------------------------------------------------------------------------------- /features/+LINE/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/example -------------------------------------------------------------------------------- /features/+LINE/lsd_lines_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+LINE/lsd_lines_demo.m -------------------------------------------------------------------------------- /features/+MSER/+CFG/Mser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+MSER/+CFG/Mser.m -------------------------------------------------------------------------------- /features/+MSER/+CFG/Mserm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+MSER/+CFG/Mserm.m -------------------------------------------------------------------------------- /features/+MSER/+CFG/Mserp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+MSER/+CFG/Mserp.m -------------------------------------------------------------------------------- /features/+MSER/Extrema.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+MSER/Extrema.m -------------------------------------------------------------------------------- /features/+MSER/apply_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+MSER/apply_T.m -------------------------------------------------------------------------------- /features/+MSER/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+MSER/draw.m -------------------------------------------------------------------------------- /features/+SEGM/background.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SEGM/background.m -------------------------------------------------------------------------------- /features/+SEGM/get_watershed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SEGM/get_watershed.m -------------------------------------------------------------------------------- /features/+SEGM/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SEGM/join.m -------------------------------------------------------------------------------- /features/+SEGM/test_watershed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SEGM/test_watershed.m -------------------------------------------------------------------------------- /features/+SEGM/test_watershed_slic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SEGM/test_watershed_slic.m -------------------------------------------------------------------------------- /features/+SIFT/+CFG/Sift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SIFT/+CFG/Sift.m -------------------------------------------------------------------------------- /features/+SIFT/AffPtToSift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SIFT/AffPtToSift.m -------------------------------------------------------------------------------- /features/+SIFT/sift_to_rootsift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SIFT/sift_to_rootsift.m -------------------------------------------------------------------------------- /features/+SPIXEL/+CFG/Seeds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/+CFG/Seeds.m -------------------------------------------------------------------------------- /features/+SPIXEL/+CFG/Slic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/+CFG/Slic.m -------------------------------------------------------------------------------- /features/+SPIXEL/+CFG/Spixel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/+CFG/Spixel.m -------------------------------------------------------------------------------- /features/+SPIXEL/Seeds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/Seeds.m -------------------------------------------------------------------------------- /features/+SPIXEL/VlSlic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/VlSlic.m -------------------------------------------------------------------------------- /features/+SPIXEL/calc_adjacency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/calc_adjacency.m -------------------------------------------------------------------------------- /features/+SPIXEL/calc_all_pairwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/calc_all_pairwise.m -------------------------------------------------------------------------------- /features/+SPIXEL/calc_pairwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/calc_pairwise.m -------------------------------------------------------------------------------- /features/+SPIXEL/color_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/color_map.m -------------------------------------------------------------------------------- /features/+SPIXEL/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/draw.m -------------------------------------------------------------------------------- /features/+SPIXEL/draw_boundaries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/draw_boundaries.m -------------------------------------------------------------------------------- /features/+SPIXEL/draw_groups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/draw_groups.m -------------------------------------------------------------------------------- /features/+SPIXEL/draw_pairwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/draw_pairwise.m -------------------------------------------------------------------------------- /features/+SPIXEL/get_active.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/get_active.m -------------------------------------------------------------------------------- /features/+SPIXEL/labeling_to_masks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/labeling_to_masks.m -------------------------------------------------------------------------------- /features/+SPIXEL/make_figures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/make_figures.m -------------------------------------------------------------------------------- /features/+SPIXEL/make_masks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/make_masks.m -------------------------------------------------------------------------------- /features/+SPIXEL/mark_planes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/mark_planes.m -------------------------------------------------------------------------------- /features/+SPIXEL/mean_values.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/mean_values.m -------------------------------------------------------------------------------- /features/+SPIXEL/overlap_ratio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/overlap_ratio.m -------------------------------------------------------------------------------- /features/+SPIXEL/renumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/renumber.m -------------------------------------------------------------------------------- /features/+SPIXEL/segment_to_pixel_bag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/segment_to_pixel_bag.m -------------------------------------------------------------------------------- /features/+SPIXEL/slic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/slic.m -------------------------------------------------------------------------------- /features/+SPIXEL/test_pairwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/+SPIXEL/test_pairwise.m -------------------------------------------------------------------------------- /features/CfgBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/CfgBase.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,10,4,17,32,38 3 | -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/GbC_lambda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/GbC_lambda.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/Gb_CS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/Gb_CS.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/Gb_CSG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/Gb_CSG.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/Gb_data_lambda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/Gb_data_lambda.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/Gb_geom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/Gb_geom.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/getNeighbors3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/getNeighbors3.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/getPCAData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/getPCAData.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/hysthresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/hysthresh.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/linkEdges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/linkEdges.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/ni.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/ni.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/nonmaxsup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/nonmaxsup.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/readme.txt -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/rgb2lab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/rgb2lab.m -------------------------------------------------------------------------------- /features/Gb_Code_Aug2014/softSegs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gb_Code_Aug2014/softSegs.m -------------------------------------------------------------------------------- /features/Gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Gen.m -------------------------------------------------------------------------------- /features/Img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/Img.m -------------------------------------------------------------------------------- /features/SysCfg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/SysCfg.m -------------------------------------------------------------------------------- /features/cmp_argparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/cmp_argparse.m -------------------------------------------------------------------------------- /features/combine_dr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/combine_dr.m -------------------------------------------------------------------------------- /features/extract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/extract.m -------------------------------------------------------------------------------- /features/features_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/features_init.m -------------------------------------------------------------------------------- /features/find_pixels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/find_pixels.m -------------------------------------------------------------------------------- /features/flatten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/flatten.m -------------------------------------------------------------------------------- /features/fsss/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/README.txt -------------------------------------------------------------------------------- /features/fsss/allOx5k.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/allOx5k.m -------------------------------------------------------------------------------- /features/fsss/allStBg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/allStBg.m -------------------------------------------------------------------------------- /features/fsss/allfeatures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/allfeatures.m -------------------------------------------------------------------------------- /features/fsss/compDict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/compDict.m -------------------------------------------------------------------------------- /features/fsss/convLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/convLabel.m -------------------------------------------------------------------------------- /features/fsss/data/dicts_parisculpt.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/data/dicts_parisculpt.mat -------------------------------------------------------------------------------- /features/fsss/data/dicts_stbg.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/data/dicts_stbg.mat -------------------------------------------------------------------------------- /features/fsss/data/imagelist_oxc1_5k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/data/imagelist_oxc1_5k.txt -------------------------------------------------------------------------------- /features/fsss/data/model_parisculpt.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/data/model_parisculpt.mat -------------------------------------------------------------------------------- /features/fsss/data/model_stbg.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/data/model_stbg.mat -------------------------------------------------------------------------------- /features/fsss/data/parisculpt_anno_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/data/parisculpt_anno_list.txt -------------------------------------------------------------------------------- /features/fsss/filterHoles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/filterHoles.m -------------------------------------------------------------------------------- /features/fsss/fnlist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/fnlist.m -------------------------------------------------------------------------------- /features/fsss/getPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/getPaths.m -------------------------------------------------------------------------------- /features/fsss/getSoftFeats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/getSoftFeats.m -------------------------------------------------------------------------------- /features/fsss/getTrainSoftFeats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/getTrainSoftFeats.m -------------------------------------------------------------------------------- /features/fsss/imreadResize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/imreadResize.m -------------------------------------------------------------------------------- /features/fsss/inferLabels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/inferLabels.m -------------------------------------------------------------------------------- /features/fsss/initGlobal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/initGlobal.m -------------------------------------------------------------------------------- /features/fsss/labelImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/labelImage.m -------------------------------------------------------------------------------- /features/fsss/readdFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/readdFrame.m -------------------------------------------------------------------------------- /features/fsss/removeFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/removeFrame.m -------------------------------------------------------------------------------- /features/fsss/setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/setup.m -------------------------------------------------------------------------------- /features/fsss/svmCross.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/svmCross.m -------------------------------------------------------------------------------- /features/fsss/test_stbg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/test_stbg.m -------------------------------------------------------------------------------- /features/fsss/uniformQuant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/uniformQuant.m -------------------------------------------------------------------------------- /features/fsss/util/relja_col.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_col.m -------------------------------------------------------------------------------- /features/fsss/util/relja_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_display.m -------------------------------------------------------------------------------- /features/fsss/util/relja_hsv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_hsv.m -------------------------------------------------------------------------------- /features/fsss/util/relja_imreadExifInvRot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_imreadExifInvRot.m -------------------------------------------------------------------------------- /features/fsss/util/relja_imreadExifRot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_imreadExifRot.m -------------------------------------------------------------------------------- /features/fsss/util/relja_l1normalize_col.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_l1normalize_col.m -------------------------------------------------------------------------------- /features/fsss/util/relja_l1normalize_row.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_l1normalize_row.m -------------------------------------------------------------------------------- /features/fsss/util/relja_l2normalize_col.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/fsss/util/relja_l2normalize_col.m -------------------------------------------------------------------------------- /features/mask_to_gmm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/mask_to_gmm.m -------------------------------------------------------------------------------- /features/mask_to_pixel_bag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/mask_to_pixel_bag.m -------------------------------------------------------------------------------- /features/seeds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/CMakeLists.txt -------------------------------------------------------------------------------- /features/seeds/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/LICENSE.txt -------------------------------------------------------------------------------- /features/seeds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/Makefile -------------------------------------------------------------------------------- /features/seeds/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/README.txt -------------------------------------------------------------------------------- /features/seeds/compile_mex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/compile_mex.m -------------------------------------------------------------------------------- /features/seeds/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/helper.h -------------------------------------------------------------------------------- /features/seeds/mexSEEDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/mexSEEDS.cpp -------------------------------------------------------------------------------- /features/seeds/mexSEEDS.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/mexSEEDS.mexa64 -------------------------------------------------------------------------------- /features/seeds/seeds2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/seeds2.cpp -------------------------------------------------------------------------------- /features/seeds/seeds2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/seeds2.h -------------------------------------------------------------------------------- /features/seeds/seeds2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/seeds2.o -------------------------------------------------------------------------------- /features/seeds/superpixel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/seeds/superpixel_test.cpp -------------------------------------------------------------------------------- /features/slic/circularstruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/circularstruct.m -------------------------------------------------------------------------------- /features/slic/cleanupregions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/cleanupregions.m -------------------------------------------------------------------------------- /features/slic/dbscan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/dbscan.m -------------------------------------------------------------------------------- /features/slic/drawregionboundaries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/drawregionboundaries.m -------------------------------------------------------------------------------- /features/slic/finddisconnected.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/finddisconnected.m -------------------------------------------------------------------------------- /features/slic/makeregionsdistinct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/makeregionsdistinct.m -------------------------------------------------------------------------------- /features/slic/maskimage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/maskimage.m -------------------------------------------------------------------------------- /features/slic/mcleanupregions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/mcleanupregions.m -------------------------------------------------------------------------------- /features/slic/regionadjacency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/regionadjacency.m -------------------------------------------------------------------------------- /features/slic/renumberregions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/renumberregions.m -------------------------------------------------------------------------------- /features/slic/rgb2lab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/rgb2lab.m -------------------------------------------------------------------------------- /features/slic/slic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/slic.m -------------------------------------------------------------------------------- /features/slic/spdbscan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/spdbscan.m -------------------------------------------------------------------------------- /features/slic/testdbscan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/slic/testdbscan.m -------------------------------------------------------------------------------- /features/unflatten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/features/unflatten.m -------------------------------------------------------------------------------- /go.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/go.m -------------------------------------------------------------------------------- /go_sc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/go_sc.m -------------------------------------------------------------------------------- /goijcv19.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/goijcv19.m -------------------------------------------------------------------------------- /goijcv19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/goijcv19.sh -------------------------------------------------------------------------------- /ijcv19/+IJCV19/bundle_lambda.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/bundle_lambda.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/ct_sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/ct_sensitivity.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/distortion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/distortion.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/fix_summary_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/fix_summary_list.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/go.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/go.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_cdf_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_cdf_fig.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_ct_sensitivity_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_ct_sensitivity_figs.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_distortion_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_distortion_fig.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_feasibility_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_feasibility_figs.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_figs.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_rt_sensitivity_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_rt_sensitivity_figs.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_sattler_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_sattler_figs.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_solver_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_solver_list.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_stability_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_stability_figs.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/make_stability_solver_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/make_stability_solver_list.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/rt_sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/rt_sensitivity.m -------------------------------------------------------------------------------- /ijcv19/+IJCV19/stability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+IJCV19/stability.m -------------------------------------------------------------------------------- /ijcv19/+WRAP/oc222_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+WRAP/oc222_to_ql.m -------------------------------------------------------------------------------- /ijcv19/+WRAP/oc32_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+WRAP/oc32_to_ql.m -------------------------------------------------------------------------------- /ijcv19/+WRAP/oc4_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/+WRAP/oc4_to_ql.m -------------------------------------------------------------------------------- /ijcv19/old_solver_rect_cos_222.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/old_solver_rect_cos_222.m -------------------------------------------------------------------------------- /ijcv19/solver_rect_cos_222_bs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rect_cos_222_bs.m -------------------------------------------------------------------------------- /ijcv19/solver_rect_cos_222_refine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rect_cos_222_refine.m -------------------------------------------------------------------------------- /ijcv19/solver_rect_cos_32_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rect_cos_32_baseline.m -------------------------------------------------------------------------------- /ijcv19/solver_rect_cos_32_bs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rect_cos_32_bs.m -------------------------------------------------------------------------------- /ijcv19/solver_rect_cos_4_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rect_cos_4_baseline.m -------------------------------------------------------------------------------- /ijcv19/solver_rect_cos_4_bs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rect_cos_4_bs.m -------------------------------------------------------------------------------- /ijcv19/solver_rectif_change_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/solver_rectif_change_scale.m -------------------------------------------------------------------------------- /ijcv19/test_solver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ijcv19/test_solver.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/DiagM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/DiagM.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/DuplicationM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/DuplicationM.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/EliminationM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/EliminationM.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/README.txt -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/idiag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/idiag.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/itril.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/itril.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/itriu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/itriu.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/mytoeplitz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/mytoeplitz.m -------------------------------------------------------------------------------- /matlab_extras/HalfVectorization/testprog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/HalfVectorization/testprog.m -------------------------------------------------------------------------------- /matlab_extras/allcomb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/allcomb.m -------------------------------------------------------------------------------- /matlab_extras/cmp_argparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/cmp_argparse.m -------------------------------------------------------------------------------- /matlab_extras/cmp_splitapply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/cmp_splitapply.m -------------------------------------------------------------------------------- /matlab_extras/distinguishable_colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/distinguishable_colors.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/.gitignore -------------------------------------------------------------------------------- /matlab_extras/export_fig/ImageSelection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/ImageSelection.class -------------------------------------------------------------------------------- /matlab_extras/export_fig/ImageSelection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/ImageSelection.java -------------------------------------------------------------------------------- /matlab_extras/export_fig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/LICENSE -------------------------------------------------------------------------------- /matlab_extras/export_fig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/README.md -------------------------------------------------------------------------------- /matlab_extras/export_fig/append_pdfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/append_pdfs.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/copyfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/copyfig.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/crop_borders.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/crop_borders.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/eps2pdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/eps2pdf.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/export_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/export_fig.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/fix_lines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/fix_lines.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/ghostscript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/ghostscript.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/im2gif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/im2gif.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/isolate_axes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/isolate_axes.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/pdf2eps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/pdf2eps.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/pdftops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/pdftops.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/print2array.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/print2array.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/print2eps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/print2eps.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/read_write_entire_textfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/read_write_entire_textfile.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/user_string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/user_string.m -------------------------------------------------------------------------------- /matlab_extras/export_fig/using_hg2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/export_fig/using_hg2.m -------------------------------------------------------------------------------- /matlab_extras/gj/gj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/gj/gj.c -------------------------------------------------------------------------------- /matlab_extras/legtools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/legtools/.gitignore -------------------------------------------------------------------------------- /matlab_extras/legtools/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/legtools/Readme.md -------------------------------------------------------------------------------- /matlab_extras/legtools/legtools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/legtools/legtools.m -------------------------------------------------------------------------------- /matlab_extras/make_grouped_boxplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/make_grouped_boxplot.m -------------------------------------------------------------------------------- /matlab_extras/make_iif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/make_iif.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/.gitignore -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/.travis.yml -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/AUTHORS.md -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/CHANGELOG.md -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/CONTRIBUTING.md -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/LICENSE.md -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/README.md -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/logos/matlab2tikz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/logos/matlab2tikz.svg -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/matlab2tikz.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/matlab2tikz.sublime-project -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/runtests.sh -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/cleanfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/cleanfigure.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/dev/formatWhitespace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/dev/formatWhitespace.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/figure2dot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/figure2dot.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/m2tInputParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/m2tInputParser.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/m2tcustom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/m2tcustom.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/matlab2tikz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/matlab2tikz.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/errorUnknownEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/errorUnknownEnvironment.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/getEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/getEnvironment.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/guitypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/guitypes.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/isAxis3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/isAxis3D.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/isVersionBelow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/isVersionBelow.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/m2tUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/m2tUpdater.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/m2tstrjoin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/m2tstrjoin.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/versionArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/versionArray.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/src/private/versionString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/src/private/versionString.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/README.md -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/codeReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/codeReport.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/compareTimings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/compareTimings.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/examples/example_bar_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/examples/example_bar_plot.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/examples/example_quivers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/examples/example_quivers.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/makeLatexReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/makeLatexReport.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/makeTapReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/makeTapReport.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/makeTravisReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/makeTravisReport.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/output/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/output/.gitignore -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/OSVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/OSVersion.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/StreamMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/StreamMaker.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/VersionControlIdentifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/VersionControlIdentifier.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/calculateMD5Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/calculateMD5Hash.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/cleanFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/cleanFiles.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/countNumberOfErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/countNumberOfErrors.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/emptyStage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/emptyStage.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/emptyStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/emptyStatus.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/errorHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/errorHandler.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/errorHasOccurred.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/errorHasOccurred.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/execute_hash_stage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/execute_hash_stage.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/execute_plot_stage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/execute_plot_stage.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/execute_save_stage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/execute_save_stage.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/execute_tikz_stage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/execute_tikz_stage.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/execute_type_stage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/execute_type_stage.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/fillStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/fillStruct.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/getEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/getEnvironment.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/getStagesFromStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/getStagesFromStatus.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/hasTestFailed.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/hasTestFailed.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/hashTableName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/hashTableName.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/initializeGlobalState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/initializeGlobalState.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/loadHashTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/loadHashTable.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/m2troot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/m2troot.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/m2tstrjoin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/m2tstrjoin.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/restoreGlobalState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/restoreGlobalState.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/splitPassFailSkippedTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/splitPassFailSkippedTests.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/splitUnreliableTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/splitUnreliableTests.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/private/testMatlab2tikz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/private/testMatlab2tikz.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/runMatlab2TikzTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/runMatlab2TikzTests.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/saveHashTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/saveHashTable.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/ACID.MATLAB.8.3.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/ACID.MATLAB.8.3.md5 -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/ACID.MATLAB.8.4.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/ACID.MATLAB.8.4.md5 -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/ACID.Octave.3.8.0.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/ACID.Octave.3.8.0.md5 -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/ACID.Octave.4.2.0.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/ACID.Octave.4.2.0.md5 -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/ACID.Octave.4.2.2.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/ACID.Octave.4.2.2.md5 -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/ACID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/ACID.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/issues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/issues.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/getEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/getEnvironment.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/herrorbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/herrorbar.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/isEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/isEnvironment.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/isMATLAB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/isMATLAB.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/isOctave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/isOctave.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/isVersionBelow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/isVersionBelow.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/private/versionCompare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/private/versionCompare.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/testPatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/testPatches.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/suites/testSurfshader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/suites/testSurfshader.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/template/.gitignore -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/template/Makefile -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/template/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/template/data/.gitignore -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/template/data/converted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/template/data/converted/Makefile -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/template/data/reference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/template/data/reference/Makefile -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/testGraphical.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/testGraphical.m -------------------------------------------------------------------------------- /matlab_extras/matlab2tikz/test/testHeadless.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/matlab2tikz/test/testHeadless.m -------------------------------------------------------------------------------- /matlab_extras/msplitapply.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/msplitapply.m -------------------------------------------------------------------------------- /matlab_extras/multinv/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multinv/license.txt -------------------------------------------------------------------------------- /matlab_extras/multinv/multinv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multinv/multinv.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Appendix A - Algorithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Appendix A - Algorithm.pdf -------------------------------------------------------------------------------- /matlab_extras/multiprod/Appendix B - Testing speed and memory usage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Appendix B - Testing speed and memory usage.pdf -------------------------------------------------------------------------------- /matlab_extras/multiprod/Appendix C - Syntaxes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Appendix C - Syntaxes.pdf -------------------------------------------------------------------------------- /matlab_extras/multiprod/MULTIPROD Toolbox Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/MULTIPROD Toolbox Manual.pdf -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/Data/Memory used by MATLAB statements.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/Data/Memory used by MATLAB statements.xls -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/Data/Timing results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/Data/Timing results.xlsx -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/Data/timing_MX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/Data/timing_MX.txt -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/arraylab13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/arraylab13.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/arraylab131.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/arraylab131.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/arraylab132.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/arraylab132.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/arraylab133.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/arraylab133.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/genop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/genop.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/multiprod13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/multiprod13.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/readme.txt -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/sysrequirements_for_testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/sysrequirements_for_testing.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/testMULTIPROD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/testMULTIPROD.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/testing_memory_usage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/testing_memory_usage.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/timing_MX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/timing_MX.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/timing_arraylab_engines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/timing_arraylab_engines.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/Testing/timing_matlab_commands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/Testing/timing_matlab_commands.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/license.txt -------------------------------------------------------------------------------- /matlab_extras/multiprod/loc2loc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/loc2loc.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/multiprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/multiprod.m -------------------------------------------------------------------------------- /matlab_extras/multiprod/multitransp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/multiprod/multitransp.m -------------------------------------------------------------------------------- /matlab_extras/recombine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/recombine.m -------------------------------------------------------------------------------- /matlab_extras/serialization/hlp_deserialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/serialization/hlp_deserialize.m -------------------------------------------------------------------------------- /matlab_extras/serialization/hlp_serialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/serialization/hlp_serialize.m -------------------------------------------------------------------------------- /matlab_extras/serialization/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/matlab_extras/serialization/license.txt -------------------------------------------------------------------------------- /mex/affpatch.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/mex/affpatch.mexa64 -------------------------------------------------------------------------------- /mex/extrema.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/mex/extrema.mexa64 -------------------------------------------------------------------------------- /mex/gj.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/mex/gj.mexa64 -------------------------------------------------------------------------------- /mex/kmpts2.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/mex/kmpts2.mexa64 -------------------------------------------------------------------------------- /mex/mexlafs.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/mex/mexlafs.mexa64 -------------------------------------------------------------------------------- /pami19/+PAMI19/ct_sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/ct_sensitivity.m -------------------------------------------------------------------------------- /pami19/+PAMI19/make_ct_sensitivity_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/make_ct_sensitivity_figs.m -------------------------------------------------------------------------------- /pami19/+PAMI19/make_solver_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/make_solver_list.m -------------------------------------------------------------------------------- /pami19/+PAMI19/make_stability_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/make_stability_fig.m -------------------------------------------------------------------------------- /pami19/+PAMI19/make_stability_solver_list.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/make_stability_solver_list.m -------------------------------------------------------------------------------- /pami19/+PAMI19/rt_sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/rt_sensitivity.m -------------------------------------------------------------------------------- /pami19/+PAMI19/stability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/+PAMI19/stability.m -------------------------------------------------------------------------------- /pami19/solvers/+WRAP/laf2_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/+WRAP/laf2_to_ql.m -------------------------------------------------------------------------------- /pami19/solvers/+WRAP/pt1x2l_to_u.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/+WRAP/pt1x2l_to_u.m -------------------------------------------------------------------------------- /pami19/solvers/+WRAP/pt3x2_to_ql.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/+WRAP/pt3x2_to_ql.m -------------------------------------------------------------------------------- /pami19/solvers/jmm_solver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/jmm_solver.m -------------------------------------------------------------------------------- /pami19/solvers/make_jmm_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/make_jmm_constraints.m -------------------------------------------------------------------------------- /pami19/solvers/pami_ct_sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/pami_ct_sensitivity.m -------------------------------------------------------------------------------- /pami19/solvers/test_jmm_constraints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pami19/solvers/test_jmm_constraints.m -------------------------------------------------------------------------------- /pattern_printer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/LICENSE -------------------------------------------------------------------------------- /pattern_printer/PatternPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/PatternPrinter.m -------------------------------------------------------------------------------- /pattern_printer/PatternPrinter2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/PatternPrinter2.m -------------------------------------------------------------------------------- /pattern_printer/RepeatEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/RepeatEval.m -------------------------------------------------------------------------------- /pattern_printer/RepeatLo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/RepeatLo.m -------------------------------------------------------------------------------- /pattern_printer/RepeatSampler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/RepeatSampler.m -------------------------------------------------------------------------------- /pattern_printer/calc_cost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/calc_cost.m -------------------------------------------------------------------------------- /pattern_printer/calc_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/calc_loss.m -------------------------------------------------------------------------------- /pattern_printer/composite_xforms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/composite_xforms.m -------------------------------------------------------------------------------- /pattern_printer/fit_coplanar_patterns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/fit_coplanar_patterns.m -------------------------------------------------------------------------------- /pattern_printer/fit_motion_centroids.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/fit_motion_centroids.m -------------------------------------------------------------------------------- /pattern_printer/geman_mcclure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/geman_mcclure.m -------------------------------------------------------------------------------- /pattern_printer/guided_search.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/guided_search.m -------------------------------------------------------------------------------- /pattern_printer/label_best_orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/label_best_orientation.m -------------------------------------------------------------------------------- /pattern_printer/lp_vq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/lp_vq.m -------------------------------------------------------------------------------- /pattern_printer/make_ransac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/make_ransac.m -------------------------------------------------------------------------------- /pattern_printer/make_scene_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/make_scene_graph.m -------------------------------------------------------------------------------- /pattern_printer/print_pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/print_pattern.m -------------------------------------------------------------------------------- /pattern_printer/resection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/resection.m -------------------------------------------------------------------------------- /pattern_printer/rm_duplicate_motions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/rm_duplicate_motions.m -------------------------------------------------------------------------------- /pattern_printer/segment_motions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/segment_motions.m -------------------------------------------------------------------------------- /pattern_printer/sfm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/sfm.m -------------------------------------------------------------------------------- /pattern_printer/solvers/+HG/laf1x2_to_Amu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/solvers/+HG/laf1x2_to_Amu.m -------------------------------------------------------------------------------- /pattern_printer/solvers/+HG/laf1x2_to_Amur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/solvers/+HG/laf1x2_to_Amur.m -------------------------------------------------------------------------------- /pattern_printer/solvers/+HG/laf1x3_to_Hinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/solvers/+HG/laf1x3_to_Hinf.m -------------------------------------------------------------------------------- /pattern_printer/solvers/+HG/laf2x2_to_Hinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/solvers/+HG/laf2x2_to_Hinf.m -------------------------------------------------------------------------------- /pattern_printer/solvers/+SOLVER/laf2x2_to_AHinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/solvers/+SOLVER/laf2x2_to_AHinf.m -------------------------------------------------------------------------------- /pattern_printer/unique_ro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/pattern_printer/unique_ro.m -------------------------------------------------------------------------------- /ransac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ransac/LICENSE -------------------------------------------------------------------------------- /ransac/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ransac/Ransac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/ransac/Ransac.m -------------------------------------------------------------------------------- /rectify_planes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/rectify_planes.m -------------------------------------------------------------------------------- /render_imgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/render_imgs.m -------------------------------------------------------------------------------- /repeats_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/repeats_init.m -------------------------------------------------------------------------------- /rm_backups.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | find . -name '*~' -print0 | xargs -0 rm -f 3 | -------------------------------------------------------------------------------- /save_imgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/save_imgs.m -------------------------------------------------------------------------------- /save_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/save_results.m -------------------------------------------------------------------------------- /scene_sim/+ARC/add_noise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+ARC/add_noise.m -------------------------------------------------------------------------------- /scene_sim/+ARC/make.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+ARC/make.m -------------------------------------------------------------------------------- /scene_sim/+ARC/sample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+ARC/sample.m -------------------------------------------------------------------------------- /scene_sim/+GRID/add_noise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+GRID/add_noise.m -------------------------------------------------------------------------------- /scene_sim/+GRID/coplanar_pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+GRID/coplanar_pattern.m -------------------------------------------------------------------------------- /scene_sim/+GRID/make_gt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+GRID/make_gt.m -------------------------------------------------------------------------------- /scene_sim/+GRID/make_viewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+GRID/make_viewpoint.m -------------------------------------------------------------------------------- /scene_sim/+GRID/random_coplanar_pattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+GRID/random_coplanar_pattern.m -------------------------------------------------------------------------------- /scene_sim/+GRID/render.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+GRID/render.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_Rt_gt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_Rt_gt.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_cspond_same_Rt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_cspond_same_Rt.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_cspond_same_reflect_v.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_cspond_same_reflect_v.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_cspond_same_t.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_cspond_same_t.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_cspond_set_Rt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_cspond_set_Rt.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_cspond_set_lines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_cspond_set_lines.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_cspond_set_t.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_cspond_set_t.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/make_viewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/make_viewpoint.m -------------------------------------------------------------------------------- /scene_sim/+PLANE/sample_cspond.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+PLANE/sample_cspond.m -------------------------------------------------------------------------------- /scene_sim/+TEST/calc_warp_err.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/calc_warp_err.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_cdf_warp_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_cdf_warp_fig.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_distortion_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_distortion_fig.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_feasibility_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_feasibility_figs.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_samples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_samples.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_scene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_scene.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_sensitivity_figs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_sensitivity_figs.m -------------------------------------------------------------------------------- /scene_sim/+TEST/make_stability_fig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/make_stability_fig.m -------------------------------------------------------------------------------- /scene_sim/+TEST/rigid_xform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/rigid_xform.m -------------------------------------------------------------------------------- /scene_sim/+TEST/sensitivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/sensitivity.m -------------------------------------------------------------------------------- /scene_sim/+TEST/stability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/stability.m -------------------------------------------------------------------------------- /scene_sim/+TEST/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/test.m -------------------------------------------------------------------------------- /scene_sim/+TEST/verify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/+TEST/verify.m -------------------------------------------------------------------------------- /scene_sim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/LICENSE -------------------------------------------------------------------------------- /scene_sim/README.md: -------------------------------------------------------------------------------- 1 | # scene_sim 2 | -------------------------------------------------------------------------------- /scene_sim/data/chess/iphone6/IMG_0962.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/data/chess/iphone6/IMG_0962.JPG -------------------------------------------------------------------------------- /scene_sim/data/chess/iphone6/IMG_0964.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/scene_sim/data/chess/iphone6/IMG_0964.JPG -------------------------------------------------------------------------------- /solvers/+WRAP/RectSolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/RectSolver.m -------------------------------------------------------------------------------- /solvers/+WRAP/laf22_to_q1q2H.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/laf22_to_q1q2H.m -------------------------------------------------------------------------------- /solvers/+WRAP/laf22_to_qH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/laf22_to_qH.m -------------------------------------------------------------------------------- /solvers/+WRAP/laf2_to_lu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/laf2_to_lu.m -------------------------------------------------------------------------------- /solvers/+WRAP/lafmn_to_qAl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/lafmn_to_qAl.m -------------------------------------------------------------------------------- /solvers/+WRAP/pt2x2_to_lu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/pt2x2_to_lu.m -------------------------------------------------------------------------------- /solvers/+WRAP/pt5x2_to_q1q2H.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/pt5x2_to_q1q2H.m -------------------------------------------------------------------------------- /solvers/+WRAP/pt5x2_to_qH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/+WRAP/pt5x2_to_qH.m -------------------------------------------------------------------------------- /solvers/H5r1r2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/H5r1r2.m -------------------------------------------------------------------------------- /solvers/H5r1r2_3var_c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/H5r1r2_3var_c.m -------------------------------------------------------------------------------- /solvers/H5rFitz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/H5rFitz.m -------------------------------------------------------------------------------- /solvers/H5rKuk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/solvers/H5rKuk.m -------------------------------------------------------------------------------- /test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/test.m -------------------------------------------------------------------------------- /test2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/test2.m -------------------------------------------------------------------------------- /vgtk/+CAM/E_to_4P.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/E_to_4P.m -------------------------------------------------------------------------------- /vgtk/+CAM/F_to_2P.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/F_to_2P.m -------------------------------------------------------------------------------- /vgtk/+CAM/F_to_4P.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/F_to_4P.m -------------------------------------------------------------------------------- /vgtk/+CAM/P4_to_P2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/P4_to_P2.m -------------------------------------------------------------------------------- /vgtk/+CAM/P_to_KRc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/P_to_KRc.m -------------------------------------------------------------------------------- /vgtk/+CAM/cam_make_generic_4mpx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/cam_make_generic_4mpx.m -------------------------------------------------------------------------------- /vgtk/+CAM/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/draw.m -------------------------------------------------------------------------------- /vgtk/+CAM/get_crop_factor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/get_crop_factor.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_K.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_K.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_canon_eos_5d_mark3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_canon_eos_5d_mark3.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_ccd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_ccd.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_fitz_normalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_fitz_normalization.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_rd_div_tform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_rd_div_tform.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_ru_div_tform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_ru_div_tform.m -------------------------------------------------------------------------------- /vgtk/+CAM/make_small_ccd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/make_small_ccd.m -------------------------------------------------------------------------------- /vgtk/+CAM/noise.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/noise.mat -------------------------------------------------------------------------------- /vgtk/+CAM/normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/normalize.m -------------------------------------------------------------------------------- /vgtk/+CAM/ortho_project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/ortho_project.m -------------------------------------------------------------------------------- /vgtk/+CAM/perspective_project.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/perspective_project.m -------------------------------------------------------------------------------- /vgtk/+CAM/pt1x2_to_X.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/pt1x2_to_X.m -------------------------------------------------------------------------------- /vgtk/+CAM/pt1x3_to_cc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/pt1x3_to_cc.m -------------------------------------------------------------------------------- /vgtk/+CAM/pt6x2_to_P.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/pt6x2_to_P.m -------------------------------------------------------------------------------- /vgtk/+CAM/rd_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/rd_div.m -------------------------------------------------------------------------------- /vgtk/+CAM/rd_div_tform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/rd_div_tform.m -------------------------------------------------------------------------------- /vgtk/+CAM/render_scene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/render_scene.m -------------------------------------------------------------------------------- /vgtk/+CAM/ru_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/ru_div.m -------------------------------------------------------------------------------- /vgtk/+CAM/ru_div_tform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CAM/ru_div_tform.m -------------------------------------------------------------------------------- /vgtk/+CONIC/C_to_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/C_to_A.m -------------------------------------------------------------------------------- /vgtk/+CONIC/C_to_TRS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/C_to_TRS.m -------------------------------------------------------------------------------- /vgtk/+CONIC/circrect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/circrect.m -------------------------------------------------------------------------------- /vgtk/+CONIC/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/draw.m -------------------------------------------------------------------------------- /vgtk/+CONIC/draw_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/draw_A.m -------------------------------------------------------------------------------- /vgtk/+CONIC/draw_circle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/draw_circle.m -------------------------------------------------------------------------------- /vgtk/+CONIC/get_R.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/get_R.m -------------------------------------------------------------------------------- /vgtk/+CONIC/get_center.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/get_center.m -------------------------------------------------------------------------------- /vgtk/+CONIC/get_common_real_poles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/get_common_real_poles.m -------------------------------------------------------------------------------- /vgtk/+CONIC/get_polars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/get_polars.m -------------------------------------------------------------------------------- /vgtk/+CONIC/order_poles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+CONIC/order_poles.m -------------------------------------------------------------------------------- /vgtk/+HG/H_to_HaHp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/H_to_HaHp.m -------------------------------------------------------------------------------- /vgtk/+HG/H_to_HsHaHp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/H_to_HsHaHp.m -------------------------------------------------------------------------------- /vgtk/+HG/ell2x2_to_H.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/ell2x2_to_H.m -------------------------------------------------------------------------------- /vgtk/+HG/hg/hg_2e.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/hg/hg_2e.m -------------------------------------------------------------------------------- /vgtk/+HG/hg/hg_degen_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/hg/hg_degen_test.m -------------------------------------------------------------------------------- /vgtk/+HG/hg/hg_pole_polar_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/hg/hg_pole_polar_test.m -------------------------------------------------------------------------------- /vgtk/+HG/hg/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/hg/tags -------------------------------------------------------------------------------- /vgtk/+HG/is_Hinf_degen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/is_Hinf_degen.m -------------------------------------------------------------------------------- /vgtk/+HG/laf1x2_to_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/laf1x2_to_A.m -------------------------------------------------------------------------------- /vgtk/+HG/laf1x2_to_Rt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/laf1x2_to_Rt.m -------------------------------------------------------------------------------- /vgtk/+HG/laf2xN_to_RtxN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/laf2xN_to_RtxN.m -------------------------------------------------------------------------------- /vgtk/+HG/laf2xN_to_txN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/laf2xN_to_txN.m -------------------------------------------------------------------------------- /vgtk/+HG/pt2x2_ln2x2_to_H.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/pt2x2_ln2x2_to_H.m -------------------------------------------------------------------------------- /vgtk/+HG/pt2x2_to_Rt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/pt2x2_to_Rt.m -------------------------------------------------------------------------------- /vgtk/+HG/pt2x2_to_sRt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/pt2x2_to_sRt.m -------------------------------------------------------------------------------- /vgtk/+HG/pt3x2_to_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/pt3x2_to_A.m -------------------------------------------------------------------------------- /vgtk/+HG/pt4x2_to_H.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/pt4x2_to_H.m -------------------------------------------------------------------------------- /vgtk/+HG/sampson_err.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/sampson_err.m -------------------------------------------------------------------------------- /vgtk/+HG/vl_laf3_to_Huv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/vl_laf3_to_Huv.m -------------------------------------------------------------------------------- /vgtk/+HG/vl_orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/vl_orientation.m -------------------------------------------------------------------------------- /vgtk/+HG/vl_to_Hinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+HG/vl_to_Hinf.m -------------------------------------------------------------------------------- /vgtk/+IMG/calc_rectification_border.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/calc_rectification_border.m -------------------------------------------------------------------------------- /vgtk/+IMG/output_rectification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/output_rectification.m -------------------------------------------------------------------------------- /vgtk/+IMG/rectify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/rectify.m -------------------------------------------------------------------------------- /vgtk/+IMG/register_by_size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/register_by_size.m -------------------------------------------------------------------------------- /vgtk/+IMG/render_masked_scale_change.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/render_masked_scale_change.m -------------------------------------------------------------------------------- /vgtk/+IMG/render_scale_change.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/render_scale_change.m -------------------------------------------------------------------------------- /vgtk/+IMG/ru_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/ru_div.m -------------------------------------------------------------------------------- /vgtk/+IMG/ru_div_rectify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/ru_div_rectify.m -------------------------------------------------------------------------------- /vgtk/+IMG/sample_rect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+IMG/sample_rect.m -------------------------------------------------------------------------------- /vgtk/+LAF/A_to_pt3x3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/A_to_pt3x3.m -------------------------------------------------------------------------------- /vgtk/+LAF/MserToLaf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/MserToLaf.m -------------------------------------------------------------------------------- /vgtk/+LAF/affpt_to_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/affpt_to_A.m -------------------------------------------------------------------------------- /vgtk/+LAF/affpt_to_pt3x3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/affpt_to_pt3x3.m -------------------------------------------------------------------------------- /vgtk/+LAF/apply_T_to_affpt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/apply_T_to_affpt.m -------------------------------------------------------------------------------- /vgtk/+LAF/are_colinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/are_colinear.m -------------------------------------------------------------------------------- /vgtk/+LAF/calc_angle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/calc_angle.m -------------------------------------------------------------------------------- /vgtk/+LAF/calc_extent_lengths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/calc_extent_lengths.m -------------------------------------------------------------------------------- /vgtk/+LAF/calc_intersection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/calc_intersection.m -------------------------------------------------------------------------------- /vgtk/+LAF/calc_overlap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/calc_overlap.m -------------------------------------------------------------------------------- /vgtk/+LAF/change_format.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/change_format.m -------------------------------------------------------------------------------- /vgtk/+LAF/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/draw.m -------------------------------------------------------------------------------- /vgtk/+LAF/draw_groups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/draw_groups.m -------------------------------------------------------------------------------- /vgtk/+LAF/find_overlapped_segments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/find_overlapped_segments.m -------------------------------------------------------------------------------- /vgtk/+LAF/get_distinct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/get_distinct.m -------------------------------------------------------------------------------- /vgtk/+LAF/get_patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/get_patch.m -------------------------------------------------------------------------------- /vgtk/+LAF/has_laf_update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/has_laf_update.m -------------------------------------------------------------------------------- /vgtk/+LAF/is_colinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/is_colinear.m -------------------------------------------------------------------------------- /vgtk/+LAF/make_random.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/make_random.m -------------------------------------------------------------------------------- /vgtk/+LAF/maxdist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/maxdist.m -------------------------------------------------------------------------------- /vgtk/+LAF/mindist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/mindist.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt2x3_to_pt3x3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt2x3_to_pt3x3.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt3x3_to_A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt3x3_to_A.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt3x3_to_ell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt3x3_to_ell.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt3x3_to_invA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt3x3_to_invA.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt3x3_to_mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt3x3_to_mask.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt3x3_to_poly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt3x3_to_poly.m -------------------------------------------------------------------------------- /vgtk/+LAF/pt3x3_to_xy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/pt3x3_to_xy.m -------------------------------------------------------------------------------- /vgtk/+LAF/reflect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/reflect.m -------------------------------------------------------------------------------- /vgtk/+LAF/reflect_yaxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/reflect_yaxis.m -------------------------------------------------------------------------------- /vgtk/+LAF/sampson_err.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/sampson_err.m -------------------------------------------------------------------------------- /vgtk/+LAF/shrink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/shrink.m -------------------------------------------------------------------------------- /vgtk/+LAF/warp_fwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/warp_fwd.m -------------------------------------------------------------------------------- /vgtk/+LAF/xy_to_pt3x3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LAF/xy_to_pt3x3.m -------------------------------------------------------------------------------- /vgtk/+LINE/calc_relative_orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/calc_relative_orientation.m -------------------------------------------------------------------------------- /vgtk/+LINE/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/draw.m -------------------------------------------------------------------------------- /vgtk/+LINE/draw_extents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/draw_extents.m -------------------------------------------------------------------------------- /vgtk/+LINE/draw_raster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/draw_raster.m -------------------------------------------------------------------------------- /vgtk/+LINE/fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/fit.m -------------------------------------------------------------------------------- /vgtk/+LINE/inhomogenize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/inhomogenize.m -------------------------------------------------------------------------------- /vgtk/+LINE/intersect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/intersect.m -------------------------------------------------------------------------------- /vgtk/+LINE/intersect_rect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/intersect_rect.m -------------------------------------------------------------------------------- /vgtk/+LINE/line_to_mask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/line_to_mask.m -------------------------------------------------------------------------------- /vgtk/+LINE/make_orthogonal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/make_orthogonal.m -------------------------------------------------------------------------------- /vgtk/+LINE/move.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/move.m -------------------------------------------------------------------------------- /vgtk/+LINE/rd_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/rd_div.m -------------------------------------------------------------------------------- /vgtk/+LINE/render_rd_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/render_rd_div.m -------------------------------------------------------------------------------- /vgtk/+LINE/stretch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/stretch.m -------------------------------------------------------------------------------- /vgtk/+LINE/which_side.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+LINE/which_side.m -------------------------------------------------------------------------------- /vgtk/+MTX/chol_2x2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/chol_2x2.m -------------------------------------------------------------------------------- /vgtk/+MTX/inv_2x2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/inv_2x2.m -------------------------------------------------------------------------------- /vgtk/+MTX/inv_K.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/inv_K.m -------------------------------------------------------------------------------- /vgtk/+MTX/make_Rz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/make_Rz.m -------------------------------------------------------------------------------- /vgtk/+MTX/make_T.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/make_T.m -------------------------------------------------------------------------------- /vgtk/+MTX/make_skew_3x3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/make_skew_3x3.m -------------------------------------------------------------------------------- /vgtk/+MTX/solve_2x2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+MTX/solve_2x2.m -------------------------------------------------------------------------------- /vgtk/+PT/are_colinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/are_colinear.m -------------------------------------------------------------------------------- /vgtk/+PT/are_same_orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/are_same_orientation.m -------------------------------------------------------------------------------- /vgtk/+PT/calc_mu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/calc_mu.m -------------------------------------------------------------------------------- /vgtk/+PT/calc_scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/calc_scale.m -------------------------------------------------------------------------------- /vgtk/+PT/calc_whitening_xform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/calc_whitening_xform.m -------------------------------------------------------------------------------- /vgtk/+PT/draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/draw.m -------------------------------------------------------------------------------- /vgtk/+PT/draw_groups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/draw_groups.m -------------------------------------------------------------------------------- /vgtk/+PT/homogenize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/homogenize.m -------------------------------------------------------------------------------- /vgtk/+PT/is_ccwise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/is_ccwise.m -------------------------------------------------------------------------------- /vgtk/+PT/mtimesx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/mtimesx.m -------------------------------------------------------------------------------- /vgtk/+PT/multiprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/multiprod.m -------------------------------------------------------------------------------- /vgtk/+PT/rd_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/rd_div.m -------------------------------------------------------------------------------- /vgtk/+PT/renorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/renorm.m -------------------------------------------------------------------------------- /vgtk/+PT/renormI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/renormI.m -------------------------------------------------------------------------------- /vgtk/+PT/reverse_orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/reverse_orientation.m -------------------------------------------------------------------------------- /vgtk/+PT/ru_div.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/ru_div.m -------------------------------------------------------------------------------- /vgtk/+PT/to_euclidean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/to_euclidean.m -------------------------------------------------------------------------------- /vgtk/+PT/translate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+PT/translate.m -------------------------------------------------------------------------------- /vgtk/+Rt/mtx_to_params.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+Rt/mtx_to_params.m -------------------------------------------------------------------------------- /vgtk/+Rt/params_to_mtx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/+Rt/params_to_mtx.m -------------------------------------------------------------------------------- /vgtk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/.gitignore -------------------------------------------------------------------------------- /vgtk/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vgtk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/LICENSE -------------------------------------------------------------------------------- /vgtk/README.md: -------------------------------------------------------------------------------- 1 | # vgtk 2 | Visual Geometry ToolKit 3 | -------------------------------------------------------------------------------- /vgtk/vgtk_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prittjam/repeats/HEAD/vgtk/vgtk_init.m --------------------------------------------------------------------------------