├── #CMakeLists.txt# ├── .travis.yml ├── .travis └── install-deps.sh ├── CMakeLists.txt ├── CTestConfig.cmake ├── README.md ├── Testing └── Temporary │ ├── CTestCostData.txt │ └── LastTest.log ├── cloud_compare.png ├── config ├── CMakeLists.txt ├── cmake │ ├── CMakeLists.txt │ ├── FORCEBUILD │ ├── GETTING_STARTED │ ├── Modules │ │ ├── CTestCustom.cmake │ │ ├── CheckPrototypeExists.cxx.in │ │ ├── CheckPrototypeExistsCXX.cmake │ │ ├── FindClipper.cmake │ │ ├── FindDCMTK.cmake │ │ ├── FindGEOTIFF.cmake │ │ ├── FindJPEG.cmake │ │ ├── FindMPEG2.cmake │ │ ├── FindNetlib.cmake │ │ ├── FindOpenJPEG2.cmake │ │ ├── FindPNG.cmake │ │ ├── FindTIFF.cmake │ │ ├── FindZLIB.cmake │ │ ├── NewCMake │ │ │ ├── FindDC1394.cmake │ │ │ ├── FindDirectShow.cmake │ │ │ ├── FindECW.cmake │ │ │ ├── FindFFMPEG.cmake │ │ │ ├── FindGEOTIFF.cmake │ │ │ ├── FindOpenCL.cmake │ │ │ ├── FindPython.cmake │ │ │ ├── FindSIMVoleon.cmake │ │ │ ├── FindWin32SDK.cmake │ │ │ └── readme.txt │ │ ├── UseBGUI3D.cmake │ │ ├── UseVGUI.cmake │ │ ├── UseVXL.cmake │ │ ├── VXLConfig.cmake.in │ │ ├── VXLConfig_export.cmake.in │ │ ├── VXLStandardOptions.cmake │ │ └── readme.txt │ ├── config │ │ ├── CheckCXXExpressionCompiles.cmake │ │ ├── VXLIntrospectionConfig.cmake │ │ ├── vxlGetCXXCompilerVersion.cxx │ │ ├── vxl_platform_tests.cxx │ │ ├── vxl_shared_link_test │ │ │ ├── CMakeLists.txt │ │ │ ├── shared_src.cxx │ │ │ └── static_src.cxx │ │ └── vxl_utils.cmake │ ├── ctest-scripts │ │ └── README │ ├── doxygen │ │ ├── doxy_header.html │ │ ├── doxyfile.in │ │ ├── doxygen.cmake │ │ ├── doxygen_makeall.cmake │ │ └── vxl_doxy.pl │ └── export │ │ └── VXLCreateProject.cmake └── valgrind.supp ├── contrib ├── CMakeLists.txt ├── brl │ ├── CMakeLists.txt │ ├── b3p │ │ ├── CMakeLists.txt │ │ ├── expat │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── cm_expat_mangle.h │ │ │ ├── expat.h │ │ │ ├── expatConfig.h.in │ │ │ ├── expatDllConfig.h.in │ │ │ ├── iasciitab.h │ │ │ ├── introduction_doxy.txt │ │ │ ├── latin1tab.h │ │ │ ├── nametab.h │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── utf8tab.h │ │ │ ├── xmlparse.c │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.c │ │ │ ├── xmltok_impl.h │ │ │ └── xmltok_ns.c │ │ ├── expatpp │ │ │ ├── CMakeLists.txt │ │ │ ├── SimpleTest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── SimpleTest.cpp │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ │ ├── expatpp.cpp │ │ │ ├── expatpp.h │ │ │ ├── expatpp_Prog_Docs.txt │ │ │ ├── expatpplib.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── minizip │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLogUnzip │ │ │ ├── Makefile │ │ │ ├── crypt.h │ │ │ ├── examples │ │ │ │ ├── miniunz.c │ │ │ │ └── minizip.c │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── iowin32.c │ │ │ ├── iowin32.h │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ └── shapelib │ │ │ ├── CMakeLists.txt │ │ │ ├── dbfopen.c │ │ │ ├── shapefil.h │ │ │ ├── shpopen.c │ │ │ ├── shptree.c │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── bbas │ │ ├── CMakeLists.txt │ │ ├── baio │ │ │ ├── CMakeLists.txt │ │ │ ├── baio.h │ │ │ ├── baio_osx.cxx │ │ │ ├── baio_unix.cxx │ │ │ ├── baio_windows.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_file.txt │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_read.cxx │ │ │ │ └── test_write.cxx │ │ ├── bcvr │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── vbl_smart_ptr+bcvr_clsd_cvmatch-.cxx │ │ │ │ ├── vbl_smart_ptr+bcvr_cv_cor-.cxx │ │ │ │ └── vbl_smart_ptr+bcvr_cvmatch-.cxx │ │ │ ├── bcvr_clsd_cvmatch.cxx │ │ │ ├── bcvr_clsd_cvmatch.h │ │ │ ├── bcvr_clsd_cvmatch_sptr.h │ │ │ ├── bcvr_cv_cor.cxx │ │ │ ├── bcvr_cv_cor.h │ │ │ ├── bcvr_cv_cor_sptr.h │ │ │ ├── bcvr_cvmatch.cxx │ │ │ ├── bcvr_cvmatch.h │ │ │ ├── bcvr_cvmatch_sptr.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── line1.con │ │ │ │ ├── line2.con │ │ │ │ ├── test_clsd_cvmatch.cxx │ │ │ │ ├── test_cvmatch.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ └── test_include.cxx │ │ ├── bdgl │ │ │ ├── CMakeLists.txt │ │ │ ├── bdgl_curve_algs.cxx │ │ │ ├── bdgl_curve_algs.h │ │ │ ├── bdgl_curve_region.cxx │ │ │ ├── bdgl_curve_region.h │ │ │ ├── bdgl_export.h │ │ │ ├── bdgl_peano_curve.cxx │ │ │ ├── bdgl_peano_curve.h │ │ │ ├── bdgl_region_algs.cxx │ │ │ ├── bdgl_region_algs.h │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_curve_algs.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_peano_curve.cxx │ │ │ │ └── test_region_algs.cxx │ │ ├── bdpg │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ └── vbl_smart_ptr+bdpg_node-.cxx │ │ │ ├── bdpg_array_dynamic_prg.cxx │ │ │ ├── bdpg_array_dynamic_prg.h │ │ │ ├── bdpg_node.cxx │ │ │ ├── bdpg_node.h │ │ │ ├── bdpg_node_sptr.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_array_dynamic_prg.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ └── test_include.cxx │ │ ├── bgrl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── vbl_io_smart_ptr+bgrl_edge-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bgrl_graph-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bgrl_vertex-.cxx │ │ │ │ ├── vbl_smart_ptr+bgrl_edge-.cxx │ │ │ │ ├── vbl_smart_ptr+bgrl_graph-.cxx │ │ │ │ ├── vbl_smart_ptr+bgrl_search_func-.cxx │ │ │ │ ├── vbl_smart_ptr+bgrl_vertex-.cxx │ │ │ │ ├── vsl_binary_loader+bgrl_edge-.cxx │ │ │ │ ├── vsl_binary_loader+bgrl_vertex-.cxx │ │ │ │ ├── vsl_set_io+bgrl_edge_sptr-.cxx │ │ │ │ └── vsl_set_io+bgrl_vertex_sptr-.cxx │ │ │ ├── bgrl_edge.cxx │ │ │ ├── bgrl_edge.h │ │ │ ├── bgrl_edge_sptr.h │ │ │ ├── bgrl_graph.cxx │ │ │ ├── bgrl_graph.h │ │ │ ├── bgrl_graph_sptr.h │ │ │ ├── bgrl_search_func.cxx │ │ │ ├── bgrl_search_func.h │ │ │ ├── bgrl_search_func_sptr.h │ │ │ ├── bgrl_vertex.cxx │ │ │ ├── bgrl_vertex.h │ │ │ ├── bgrl_vertex_sptr.h │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_graph.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_search.cxx │ │ ├── bgrl2 │ │ │ ├── CMakeLists.txt │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bgrl2_algs.cxx │ │ │ │ ├── bgrl2_algs.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── bgrl2_edge.h │ │ │ ├── bgrl2_edge.hxx │ │ │ ├── bgrl2_graph.h │ │ │ ├── bgrl2_graph.hxx │ │ │ ├── bgrl2_hg_edge.h │ │ │ ├── bgrl2_hg_graph.cxx │ │ │ ├── bgrl2_hg_graph.h │ │ │ ├── bgrl2_hg_hyperedge.h │ │ │ ├── bgrl2_hg_hypergraph.cxx │ │ │ ├── bgrl2_hg_hypergraph.h │ │ │ ├── bgrl2_hg_vertex.h │ │ │ ├── bgrl2_vertex.h │ │ │ ├── bgrl2_vertex.hxx │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ ├── bgrl2_edge+test_node-.cxx │ │ │ │ ├── bgrl2_graph+test_node.test_edge-.cxx │ │ │ │ ├── bgrl2_vertex+test_edge-.cxx │ │ │ │ ├── vbl_smart_ptr+test_edge-.cxx │ │ │ │ ├── vbl_smart_ptr+test_graph-.cxx │ │ │ │ └── vbl_smart_ptr+test_node-.cxx │ │ │ │ ├── graph_test.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_edge.h │ │ │ │ ├── test_edge_sptr.h │ │ │ │ ├── test_graph.h │ │ │ │ ├── test_graph_sptr.h │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_node.h │ │ │ │ ├── test_node_sptr.h │ │ │ │ └── test_template_include.cxx │ │ ├── bgui │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ └── vbl_smart_ptr+bgui_bargraph_clipon_tableau-.cxx │ │ │ ├── bgui_bargraph_clipon_tableau.cxx │ │ │ ├── bgui_bargraph_clipon_tableau.h │ │ │ ├── bgui_bargraph_clipon_tableau_sptr.h │ │ │ ├── bgui_graph_tableau.cxx │ │ │ ├── bgui_graph_tableau.h │ │ │ ├── bgui_graph_tableau_sptr.h │ │ │ ├── bgui_histogram_tableau.cxx │ │ │ ├── bgui_histogram_tableau.h │ │ │ ├── bgui_histogram_tableau_sptr.h │ │ │ ├── bgui_image_tableau.cxx │ │ │ ├── bgui_image_tableau.h │ │ │ ├── bgui_image_tableau_sptr.h │ │ │ ├── bgui_image_utils.cxx │ │ │ ├── bgui_image_utils.h │ │ │ ├── bgui_picker_tableau.cxx │ │ │ ├── bgui_picker_tableau.h │ │ │ ├── bgui_picker_tableau_sptr.h │ │ │ ├── bgui_range_adjuster_tableau.cxx │ │ │ ├── bgui_range_adjuster_tableau.h │ │ │ ├── bgui_range_adjuster_tableau_sptr.h │ │ │ ├── bgui_vsol2D_tableau.cxx │ │ │ ├── bgui_vsol2D_tableau.h │ │ │ ├── bgui_vsol2D_tableau_sptr.h │ │ │ ├── bgui_vsol_camera_tableau.cxx │ │ │ ├── bgui_vsol_camera_tableau.h │ │ │ ├── bgui_vsol_camera_tableau_sptr.h │ │ │ ├── bgui_vsol_soview2D.cxx │ │ │ ├── bgui_vsol_soview2D.h │ │ │ ├── bgui_vtol2D_rubberband_client.cxx │ │ │ ├── bgui_vtol2D_rubberband_client.h │ │ │ ├── bgui_vtol2D_tableau.cxx │ │ │ ├── bgui_vtol2D_tableau.h │ │ │ ├── bgui_vtol2D_tableau_sptr.h │ │ │ ├── bgui_vtol_soview2D.cxx │ │ │ ├── bgui_vtol_soview2D.h │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── basic01_pick_tableau.cxx │ │ │ │ ├── basic02_graph_tableau.cxx │ │ │ │ └── basic03_image_tableau.cxx │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_histogram.cxx │ │ │ │ └── test_include.cxx │ │ ├── bgui3d │ │ │ ├── CMakeLists.txt │ │ │ ├── bgui3d.cxx │ │ │ ├── bgui3d.h │ │ │ ├── bgui3d_algo.cxx │ │ │ ├── bgui3d_algo.h │ │ │ ├── bgui3d_examiner_slider_tableau.cxx │ │ │ ├── bgui3d_examiner_slider_tableau.h │ │ │ ├── bgui3d_examiner_slider_tableau_sptr.h │ │ │ ├── bgui3d_examiner_tableau.cxx │ │ │ ├── bgui3d_examiner_tableau.h │ │ │ ├── bgui3d_examiner_tableau_sptr.h │ │ │ ├── bgui3d_file_io.cxx │ │ │ ├── bgui3d_file_io.h │ │ │ ├── bgui3d_fullviewer_tableau.cxx │ │ │ ├── bgui3d_fullviewer_tableau.h │ │ │ ├── bgui3d_fullviewer_tableau_sptr.h │ │ │ ├── bgui3d_project2d_tableau.cxx │ │ │ ├── bgui3d_project2d_tableau.h │ │ │ ├── bgui3d_project2d_tableau_sptr.h │ │ │ ├── bgui3d_tableau.cxx │ │ │ ├── bgui3d_tableau.h │ │ │ ├── bgui3d_tableau_sptr.h │ │ │ ├── bgui3d_translate_event.cxx │ │ │ ├── bgui3d_translate_event.h │ │ │ ├── bgui3d_viewer_tableau.cxx │ │ │ ├── bgui3d_viewer_tableau.h │ │ │ ├── bgui3d_viewer_tableau_sptr.h │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── example_basic.cxx │ │ │ │ ├── example_basic_animate.cxx │ │ │ │ ├── example_basic_trackball.cxx │ │ │ │ ├── example_examiner_27balls.cxx │ │ │ │ ├── example_examiner_animate.cxx │ │ │ │ ├── example_examiner_cylinders.cxx │ │ │ │ ├── example_examiner_file.cxx │ │ │ │ ├── example_examiner_helix.cxx │ │ │ │ ├── example_grid_examiner.cxx │ │ │ │ ├── example_grid_multiscene.cxx │ │ │ │ ├── example_interact.cxx │ │ │ │ ├── example_point_set.cxx │ │ │ │ ├── example_project2d.cxx │ │ │ │ └── introduction_doxy.txt │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bhdfs │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── vbl_smart_ptr+bhdfs_fstream-.cxx │ │ │ │ └── vbl_smart_ptr+bhdfs_manager-.cxx │ │ │ ├── bhdfs_fstream.cxx │ │ │ ├── bhdfs_fstream.h │ │ │ ├── bhdfs_manager.cxx │ │ │ ├── bhdfs_manager.h │ │ │ ├── bhdfs_vil_load.cxx │ │ │ ├── bhdfs_vil_load.h │ │ │ ├── bhdfs_vil_save.cxx │ │ │ ├── bhdfs_vil_save.h │ │ │ ├── bhdfs_vil_stream.cxx │ │ │ ├── bhdfs_vil_stream.h │ │ │ ├── notes │ │ │ │ ├── TODOs.txt │ │ │ │ ├── readme.txt │ │ │ │ ├── s3_copy_files_from_local.py │ │ │ │ ├── s3_copy_files_to_local.py │ │ │ │ ├── s4_prepare_stdin_txt.py │ │ │ │ ├── s5_correct_cams_mapper.py │ │ │ │ ├── test_mapper │ │ │ │ ├── view_00.png │ │ │ │ └── view_01.png │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── brdb_value_t+bhdfs_manager_sptr-.cxx │ │ │ │ ├── bhdfs_processes.h │ │ │ │ ├── bhdfs_register.cxx │ │ │ │ ├── bhdfs_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bhdfs_boxm2_load_scene_process.cxx │ │ │ │ │ ├── bhdfs_fs_manager_processes.cxx │ │ │ │ │ ├── bhdfs_load_image_view_process.cxx │ │ │ │ │ ├── bhdfs_load_perspective_camera_process.cxx │ │ │ │ │ ├── bhdfs_load_txt_file_process.cxx │ │ │ │ │ ├── bhdfs_mapper_scripting_processes.cxx │ │ │ │ │ ├── bhdfs_save_image_view_process.cxx │ │ │ │ │ └── bhdfs_save_txt_file_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_fstream.cxx │ │ │ │ ├── test_hadoop.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_manager.cxx │ │ │ │ ├── test_vil_save_load_image.cxx │ │ │ │ └── test_vil_stream.cxx │ │ ├── bil │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bil_bounded_image_view+double-.cxx │ │ │ │ ├── bil_bounded_image_view+uchar-.cxx │ │ │ │ ├── bil_bounded_image_view+ushort-.cxx │ │ │ │ ├── vbl_smart_ptr+bil_arf_image_istream-.cxx │ │ │ │ └── vbl_smart_ptr+bil_raw_image_istream-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bil_detect_ridges+float-.cxx │ │ │ │ │ ├── bil_detect_ridges+uint_16-.cxx │ │ │ │ │ ├── bil_finite_differences+double-.cxx │ │ │ │ │ ├── bil_finite_differences+float-.cxx │ │ │ │ │ ├── bil_finite_second_differences+double-.cxx │ │ │ │ │ ├── bil_finite_second_differences+float-.cxx │ │ │ │ │ ├── bil_harr_wavelet_transform+float-.cxx │ │ │ │ │ ├── bil_perform_tensor_decomposition+float-.cxx │ │ │ │ │ └── bil_scale_image+float-.cxx │ │ │ │ ├── bil_blob_finder.cxx │ │ │ │ ├── bil_blob_finder.h │ │ │ │ ├── bil_cedt.cxx │ │ │ │ ├── bil_cedt.h │ │ │ │ ├── bil_color_conversions.cxx │ │ │ │ ├── bil_color_conversions.h │ │ │ │ ├── bil_compass_edge_detector.cxx │ │ │ │ ├── bil_compass_edge_detector.h │ │ │ │ ├── bil_debayer_image.cxx │ │ │ │ ├── bil_debayer_image.h │ │ │ │ ├── bil_detect_ridges.cxx │ │ │ │ ├── bil_detect_ridges.h │ │ │ │ ├── bil_detect_ridges.hxx │ │ │ │ ├── bil_edge_indicator.h │ │ │ │ ├── bil_edt.cxx │ │ │ │ ├── bil_edt.h │ │ │ │ ├── bil_equalize.h │ │ │ │ ├── bil_finite_differences.h │ │ │ │ ├── bil_finite_differences.hxx │ │ │ │ ├── bil_finite_second_differences.h │ │ │ │ ├── bil_finite_second_differences.hxx │ │ │ │ ├── bil_harr_wavelet_transform.h │ │ │ │ ├── bil_harr_wavelet_transform.hxx │ │ │ │ ├── bil_nms.cxx │ │ │ │ ├── bil_nms.h │ │ │ │ ├── bil_perform_tensor_decomposition.h │ │ │ │ ├── bil_perform_tensor_decomposition.hxx │ │ │ │ ├── bil_roi_mask.h │ │ │ │ ├── bil_scale_image.h │ │ │ │ ├── bil_scale_image.hxx │ │ │ │ ├── bil_trace_4con_boundary.cxx │ │ │ │ ├── bil_trace_4con_boundary.h │ │ │ │ ├── bil_trace_8con_boundary.cxx │ │ │ │ ├── bil_trace_8con_boundary.h │ │ │ │ ├── bil_wshed2d.cxx │ │ │ │ ├── bil_wshed2d.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── c.20.tif │ │ │ │ │ ├── test_bil_cedt.cxx │ │ │ │ │ ├── test_bil_detect_ridges.cxx │ │ │ │ │ ├── test_bil_edt.cxx │ │ │ │ │ ├── test_bil_finite_differences.cxx │ │ │ │ │ ├── test_bil_finite_second_differences.cxx │ │ │ │ │ ├── test_bil_scale_image.cxx │ │ │ │ │ ├── test_bil_wshed2d.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── bil_arf_image_istream.cxx │ │ │ ├── bil_arf_image_istream.h │ │ │ ├── bil_bounded_image_view.h │ │ │ ├── bil_bounded_image_view.hxx │ │ │ ├── bil_math.h │ │ │ ├── bil_raw_image_istream.cxx │ │ │ ├── bil_raw_image_istream.h │ │ │ ├── exe │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── bil_debayer_exe.cxx │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── file_read_data │ │ │ │ ├── ff_nitf_float.nitf │ │ │ │ ├── ff_rgb8bit.mit │ │ │ │ ├── ff_rgb8bit_true.txt │ │ │ │ └── test_raw_image_stream.raw │ │ │ │ ├── test_bounded_image_view.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_raw_image_istream.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bkml │ │ │ ├── CMakeLists.txt │ │ │ ├── bkml_parser.cxx │ │ │ ├── bkml_parser.h │ │ │ ├── bkml_write.cxx │ │ │ ├── bkml_write.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_bkml.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_region.kml │ │ ├── bmsh3d │ │ │ ├── CMakeLists.txt │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bmsh3d_fileio.cxx │ │ │ │ ├── bmsh3d_fileio.h │ │ │ │ ├── bmsh3d_fileio_ply.cxx │ │ │ │ ├── bmsh3d_mesh_bnd.cxx │ │ │ │ ├── bmsh3d_mesh_bnd.h │ │ │ │ ├── bmsh3d_mesh_tri.cxx │ │ │ │ ├── bmsh3d_mesh_tri.h │ │ │ │ ├── bmsh3d_mesh_triangulate.cxx │ │ │ │ ├── bmsh3d_mesh_triangulate.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── bmsh3d_dist.h │ │ │ ├── bmsh3d_edge.cxx │ │ │ ├── bmsh3d_edge.h │ │ │ ├── bmsh3d_face.cxx │ │ │ ├── bmsh3d_face.h │ │ │ ├── bmsh3d_face_mc.cxx │ │ │ ├── bmsh3d_face_mc.h │ │ │ ├── bmsh3d_fuzzy_boolean.h │ │ │ ├── bmsh3d_graph.cxx │ │ │ ├── bmsh3d_graph.h │ │ │ ├── bmsh3d_halfedge.cxx │ │ │ ├── bmsh3d_halfedge.h │ │ │ ├── bmsh3d_he_mesh.cxx │ │ │ ├── bmsh3d_he_mesh.h │ │ │ ├── bmsh3d_mesh.cxx │ │ │ ├── bmsh3d_mesh.h │ │ │ ├── bmsh3d_mesh_conn_recov.cxx │ │ │ ├── bmsh3d_mesh_mc.cxx │ │ │ ├── bmsh3d_mesh_mc.h │ │ │ ├── bmsh3d_pt_set.cxx │ │ │ ├── bmsh3d_pt_set.h │ │ │ ├── bmsh3d_ptr_list.h │ │ │ ├── bmsh3d_textured_face_mc.cxx │ │ │ ├── bmsh3d_textured_face_mc.h │ │ │ ├── bmsh3d_textured_mesh_mc.cxx │ │ │ ├── bmsh3d_textured_mesh_mc.h │ │ │ ├── bmsh3d_triangle.h │ │ │ ├── bmsh3d_utils.h │ │ │ ├── bmsh3d_vertex.cxx │ │ │ ├── bmsh3d_vertex.h │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bmsh3d_mesh2ply.cxx │ │ │ │ └── example_triangles.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bmsh3d_cmdpara.cxx │ │ │ │ ├── bmsh3d_cmdpara.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bmsh3d_test_face_geom.cxx │ │ │ │ ├── test_data │ │ │ │ │ ├── BAMbunny.ply │ │ │ │ │ ├── BAPbunny.ply │ │ │ │ │ ├── BAUbunny.ply │ │ │ │ │ ├── BBMbunny.ply │ │ │ │ │ ├── BBPbunny.ply │ │ │ │ │ ├── BBUbunny.ply │ │ │ │ │ ├── cube.ply │ │ │ │ │ ├── cube_w_verror.ply │ │ │ │ │ ├── cube_without_bases.ply │ │ │ │ │ ├── lambunny.ply │ │ │ │ │ ├── lapbunny.ply │ │ │ │ │ ├── laubunny.ply │ │ │ │ │ ├── lbmbunny.ply │ │ │ │ │ ├── lbpbunny.ply │ │ │ │ │ ├── lbubunny.ply │ │ │ │ │ ├── out.ply │ │ │ │ │ └── resaved_cube_w_verror.ply │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_mesh_break_face.cxx │ │ │ └── vis │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bmsh3d_vis_backpt.cxx │ │ │ │ ├── bmsh3d_vis_backpt.h │ │ │ │ ├── bmsh3d_vis_edge.cxx │ │ │ │ ├── bmsh3d_vis_edge.h │ │ │ │ ├── bmsh3d_vis_face.cxx │ │ │ │ ├── bmsh3d_vis_face.h │ │ │ │ ├── bmsh3d_vis_mesh.cxx │ │ │ │ ├── bmsh3d_vis_mesh.h │ │ │ │ ├── bmsh3d_vis_utils.cxx │ │ │ │ ├── bmsh3d_vis_utils.h │ │ │ │ ├── bmsh3d_vis_vertex.cxx │ │ │ │ ├── bmsh3d_vis_vertex.h │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bnabo │ │ │ ├── CMakeLists.txt │ │ │ ├── bnabo.cxx │ │ │ ├── bnabo.h │ │ │ ├── bnabo_brute_force.cxx │ │ │ ├── bnabo_index_heap.h │ │ │ ├── bnabo_kdd_tree.cxx │ │ │ └── bnabo_private.h │ │ ├── bnl │ │ │ ├── CMakeLists.txt │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bnl_fresnel.cxx │ │ │ │ ├── bnl_fresnel.h │ │ │ │ ├── bnl_legendre_polynomial.cxx │ │ │ │ ├── bnl_legendre_polynomial.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_fresnel.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_legendre_polynomial.cxx │ │ │ ├── bnl_parabolic_interpolator.cxx │ │ │ ├── bnl_parabolic_interpolator.h │ │ │ ├── bnl_quadratic_interpolator.cxx │ │ │ ├── bnl_quadratic_interpolator.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ └── test_include.cxx │ │ ├── bocl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bocl_manager+bocl_manager_child-.cxx │ │ │ │ ├── brdb_value_t+bocl_device_sptr-.cxx │ │ │ │ ├── brdb_value_t+bocl_mem_sptr-.cxx │ │ │ │ ├── vbl_smart_ptr+bocl_device-.cxx │ │ │ │ └── vbl_smart_ptr+bocl_mem-.cxx │ │ │ ├── bocl_buffer.cxx │ │ │ ├── bocl_buffer.h │ │ │ ├── bocl_buffer_mgr.cxx │ │ │ ├── bocl_buffer_mgr.h │ │ │ ├── bocl_cl.h │ │ │ ├── bocl_cl_gl.h │ │ │ ├── bocl_device.cxx │ │ │ ├── bocl_device.h │ │ │ ├── bocl_device_info.cxx │ │ │ ├── bocl_device_info.h │ │ │ ├── bocl_kernel.cxx │ │ │ ├── bocl_kernel.h │ │ │ ├── bocl_manager.cxx │ │ │ ├── bocl_manager.h │ │ │ ├── bocl_manager.hxx │ │ │ ├── bocl_mem.cxx │ │ │ ├── bocl_mem.h │ │ │ ├── bocl_utils.cxx │ │ │ ├── bocl_utils.h │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bocl_processes.h │ │ │ │ ├── bocl_register.cxx │ │ │ │ ├── bocl_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bocl_get_device_process.cxx │ │ │ │ │ ├── bocl_info_process.cxx │ │ │ │ │ └── bocl_init_manager_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ ├── bocl_manager+bocl_command_queue_mgr-.cxx │ │ │ │ └── bocl_manager+bocl_global_memory_bandwidth_manager-.cxx │ │ │ │ ├── bocl_command_queue_mgr.cxx │ │ │ │ ├── bocl_command_queue_mgr.h │ │ │ │ ├── bocl_global_memory_bandwidth_manager.cxx │ │ │ │ ├── bocl_global_memory_bandwidth_manager.h │ │ │ │ ├── test_command_queue.cl │ │ │ │ ├── test_command_queue.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_global_io_bandwidth.cl │ │ │ │ ├── test_global_io_bandwidth.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_kernel.cl │ │ │ │ ├── test_kernel.cxx │ │ │ │ ├── test_local_mem_access.cl │ │ │ │ ├── test_local_mem_access.cxx │ │ │ │ ├── test_mem.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bpgl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bpgl_camera_estimator+dummy-.cxx │ │ │ │ ├── bpgl_reg_fundamental_matrix+double-.cxx │ │ │ │ └── bpgl_segmented_rolling_shutter_camera+double-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bpgl_list+vgl_h_matrix_2d+double--.cxx │ │ │ │ │ └── bpgl_list+vpgl_proj_camera+double--.cxx │ │ │ │ ├── bpgl_bundle_rolling_shutter_adjust.cxx │ │ │ │ ├── bpgl_bundle_rolling_shutter_adjust.h │ │ │ │ ├── bpgl_camera_from_box.cxx │ │ │ │ ├── bpgl_camera_from_box.h │ │ │ │ ├── bpgl_camera_homographies.cxx │ │ │ │ ├── bpgl_camera_homographies.h │ │ │ │ ├── bpgl_construct_cameras.cxx │ │ │ │ ├── bpgl_construct_cameras.h │ │ │ │ ├── bpgl_fm_compute_affine_ransac.cxx │ │ │ │ ├── bpgl_fm_compute_affine_ransac.h │ │ │ │ ├── bpgl_fm_compute_ransac.cxx │ │ │ │ ├── bpgl_fm_compute_ransac.h │ │ │ │ ├── bpgl_fm_compute_reg_ransac.cxx │ │ │ │ ├── bpgl_fm_compute_reg_ransac.h │ │ │ │ ├── bpgl_interpolate.cxx │ │ │ │ ├── bpgl_interpolate.h │ │ │ │ ├── bpgl_list.h │ │ │ │ ├── bpgl_list.hxx │ │ │ │ ├── bpgl_nitf_camera_coverage.cxx │ │ │ │ ├── bpgl_nitf_camera_coverage.h │ │ │ │ ├── bpgl_project.cxx │ │ │ │ ├── bpgl_project.h │ │ │ │ ├── bpgl_transform_camera.cxx │ │ │ │ ├── bpgl_transform_camera.h │ │ │ │ ├── bpgl_vsol_lens_warp.cxx │ │ │ │ ├── bpgl_vsol_lens_warp.h │ │ │ │ ├── examples │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── bpgl_synth_bundle_adjust.cxx │ │ │ │ └── tests │ │ │ │ │ ├── 07JAN27.RPB │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_camera_bounds.cxx │ │ │ │ │ ├── test_camera_from_box.cxx │ │ │ │ │ ├── test_camera_homographies.cxx │ │ │ │ │ ├── test_construct_cameras.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_fm_compute.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_interpolate.cxx │ │ │ │ │ ├── test_optimize_camera.cxx │ │ │ │ │ ├── test_project.cxx │ │ │ │ │ ├── test_rational_geo_adjust.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── bpgl_camera_estimator.h │ │ │ ├── bpgl_camera_estimator.hxx │ │ │ ├── bpgl_camera_estimator_amoeba.h │ │ │ ├── bpgl_camera_utils.cxx │ │ │ ├── bpgl_camera_utils.h │ │ │ ├── bpgl_comp_rational_camera.h │ │ │ ├── bpgl_comp_rational_camera.hxx │ │ │ ├── bpgl_reg_fundamental_matrix.h │ │ │ ├── bpgl_reg_fundamental_matrix.hxx │ │ │ ├── bpgl_rolling_shutter_camera.h │ │ │ ├── bpgl_segmented_rolling_shutter_camera.h │ │ │ ├── bpgl_segmented_rolling_shutter_camera.hxx │ │ │ ├── depth_map │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_io_smart_ptr+depth_map_region-.cxx │ │ │ │ │ ├── vbl_smart_ptr+depth_map_region-.cxx │ │ │ │ │ ├── vbl_smart_ptr+depth_map_scene-.cxx │ │ │ │ │ ├── vsl_map_io+vcl_string.depth_map_region_sptr-.cxx │ │ │ │ │ └── vsl_vector_io+depth_map_region_sptr-.cxx │ │ │ │ ├── depth_map_defs.h │ │ │ │ ├── depth_map_region.cxx │ │ │ │ ├── depth_map_region.h │ │ │ │ ├── depth_map_region_sptr.h │ │ │ │ ├── depth_map_scene.cxx │ │ │ │ ├── depth_map_scene.h │ │ │ │ ├── depth_map_scene_sptr.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_depth_map.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ └── test_include.cxx │ │ │ ├── icam │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_array_3d+vgl_rotation_3d+double--.cxx │ │ │ │ │ ├── vbl_io_smart_ptr+icam_view_sphere-.cxx │ │ │ │ │ ├── vbl_smart_ptr+icam_cylinder_map-.cxx │ │ │ │ │ ├── vbl_smart_ptr+icam_spherical_map-.cxx │ │ │ │ │ ├── vbl_smart_ptr+icam_view_sphere-.cxx │ │ │ │ │ └── vsph_view_sphere+vsph_view_point+icam_view_metadata--.cxx │ │ │ │ ├── icam_cost_func.cxx │ │ │ │ ├── icam_cost_func.h │ │ │ │ ├── icam_cylinder_map.cxx │ │ │ │ ├── icam_cylinder_map.h │ │ │ │ ├── icam_cylinder_map_sptr.h │ │ │ │ ├── icam_depth_trans_pyramid.cxx │ │ │ │ ├── icam_depth_trans_pyramid.h │ │ │ │ ├── icam_depth_transform.cxx │ │ │ │ ├── icam_depth_transform.h │ │ │ │ ├── icam_image.h │ │ │ │ ├── icam_minimizer.cxx │ │ │ │ ├── icam_minimizer.h │ │ │ │ ├── icam_minimizer_params.h │ │ │ │ ├── icam_sample.cxx │ │ │ │ ├── icam_sample.h │ │ │ │ ├── icam_spherical_map.cxx │ │ │ │ ├── icam_spherical_map.h │ │ │ │ ├── icam_spherical_map_sptr.h │ │ │ │ ├── icam_transform_2d.cxx │ │ │ │ ├── icam_transform_2d.h │ │ │ │ ├── icam_utils.cxx │ │ │ │ ├── icam_utils.h │ │ │ │ ├── icam_view_metadata.cxx │ │ │ │ ├── icam_view_metadata.h │ │ │ │ ├── icam_view_sphere.cxx │ │ │ │ ├── icam_view_sphere.h │ │ │ │ ├── icam_view_sphere_sptr.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_cylinder_map.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_icam_transform.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_minimizer.cxx │ │ │ │ │ └── test_spherical_map.cxx │ │ │ ├── ihog │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_io_smart_ptr+ihog_transform_2d-.cxx │ │ │ │ │ ├── vbl_smart_ptr+ihog_transform_2d-.cxx │ │ │ │ │ └── vbl_smart_ptr+ihog_world_roi-.cxx │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── compute_homographies_exe.cxx │ │ │ │ │ └── register_images_exe.cxx │ │ │ │ ├── ihog_cost_func.cxx │ │ │ │ ├── ihog_cost_func.h │ │ │ │ ├── ihog_image.h │ │ │ │ ├── ihog_lsqr_cost_func.cxx │ │ │ │ ├── ihog_lsqr_cost_func.h │ │ │ │ ├── ihog_minfo_cost_func.cxx │ │ │ │ ├── ihog_minfo_cost_func.h │ │ │ │ ├── ihog_minimizer.cxx │ │ │ │ ├── ihog_minimizer.h │ │ │ │ ├── ihog_sample_grid_bilin.cxx │ │ │ │ ├── ihog_sample_grid_bilin.h │ │ │ │ ├── ihog_transform_2d.cxx │ │ │ │ ├── ihog_transform_2d.h │ │ │ │ ├── ihog_transform_2d_sptr.h │ │ │ │ ├── ihog_utils.cxx │ │ │ │ ├── ihog_utils.h │ │ │ │ ├── ihog_world_roi.cxx │ │ │ │ ├── ihog_world_roi.h │ │ │ │ ├── ihog_world_roi_sptr.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── dalmation.tif │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_minimizer.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_camera_utils.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_segmented_rolling_shutter_camera.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── brad │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brad_eigenspace+brad_grad_hist_feature_vector-.cxx │ │ │ │ ├── brad_eigenspace+brad_grad_int_feature_vector-.cxx │ │ │ │ ├── brad_eigenspace+brad_hist_prob_feature_vector-.cxx │ │ │ │ ├── vbl_smart_ptr+brad_atmospheric_parameters-.cxx │ │ │ │ ├── vbl_smart_ptr+brad_eigenspace_base-.cxx │ │ │ │ └── vbl_smart_ptr+brad_image_metadata-.cxx │ │ │ ├── brad_atmospheric_parameters.cxx │ │ │ ├── brad_atmospheric_parameters.h │ │ │ ├── brad_eigenspace.h │ │ │ ├── brad_eigenspace.hxx │ │ │ ├── brad_eigenspace_base.cxx │ │ │ ├── brad_eigenspace_base.h │ │ │ ├── brad_eigenspace_sptr.h │ │ │ ├── brad_estimate_shadows.cxx │ │ │ ├── brad_estimate_shadows.h │ │ │ ├── brad_grad_hist_feature_vector.cxx │ │ │ ├── brad_grad_hist_feature_vector.h │ │ │ ├── brad_grad_int_feature_vector.cxx │ │ │ ├── brad_grad_int_feature_vector.h │ │ │ ├── brad_hist_prob_feature_vector.cxx │ │ │ ├── brad_hist_prob_feature_vector.h │ │ │ ├── brad_illum_cost_function.h │ │ │ ├── brad_illum_util.cxx │ │ │ ├── brad_illum_util.h │ │ │ ├── brad_image_atmospherics_est.cxx │ │ │ ├── brad_image_atmospherics_est.h │ │ │ ├── brad_image_metadata.cxx │ │ │ ├── brad_image_metadata.h │ │ │ ├── brad_phongs_model_est.cxx │ │ │ ├── brad_phongs_model_est.h │ │ │ ├── brad_sun_dir_index.cxx │ │ │ ├── brad_sun_dir_index.h │ │ │ ├── brad_sun_pos.cxx │ │ │ ├── brad_sun_pos.h │ │ │ ├── brad_synoptic_function_1d.cxx │ │ │ ├── brad_synoptic_function_1d.h │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_io_smart_ptr+brad_atmospheric_parameters-.cxx │ │ │ │ │ └── vbl_io_smart_ptr+brad_image_metadata-.cxx │ │ │ │ ├── brad_io_atmospheric_parameters.cxx │ │ │ │ ├── brad_io_atmospheric_parameters.h │ │ │ │ ├── brad_io_image_metadata.cxx │ │ │ │ ├── brad_io_image_metadata.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_atmospheric_parameters.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_feature_pca.cxx │ │ │ │ ├── test_illum.cxx │ │ │ │ ├── test_image_metadata.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_phongs_model_est.cxx │ │ │ │ ├── test_sun_dir_index.cxx │ │ │ │ ├── test_sun_hist.cxx │ │ │ │ ├── test_sun_pos.cxx │ │ │ │ ├── test_synoptic_function.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── brdb │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+bool-.cxx │ │ │ │ ├── brdb_value_t+double-.cxx │ │ │ │ ├── brdb_value_t+float-.cxx │ │ │ │ ├── brdb_value_t+int-.cxx │ │ │ │ ├── brdb_value_t+long-.cxx │ │ │ │ ├── brdb_value_t+uint-.cxx │ │ │ │ ├── brdb_value_t+vcl_string-.cxx │ │ │ │ ├── vbl_smart_ptr+brdb_database-.cxx │ │ │ │ ├── vbl_smart_ptr+brdb_relation-.cxx │ │ │ │ ├── vbl_smart_ptr+brdb_selection-.cxx │ │ │ │ ├── vbl_smart_ptr+brdb_tuple-.cxx │ │ │ │ └── vbl_smart_ptr+brdb_value-.cxx │ │ │ ├── brdb_database.cxx │ │ │ ├── brdb_database.h │ │ │ ├── brdb_database_manager.cxx │ │ │ ├── brdb_database_manager.h │ │ │ ├── brdb_database_sptr.h │ │ │ ├── brdb_export.h │ │ │ ├── brdb_query.cxx │ │ │ ├── brdb_query.h │ │ │ ├── brdb_query_aptr.h │ │ │ ├── brdb_relation.cxx │ │ │ ├── brdb_relation.h │ │ │ ├── brdb_relation_sptr.h │ │ │ ├── brdb_selection.cxx │ │ │ ├── brdb_selection.h │ │ │ ├── brdb_selection_sptr.h │ │ │ ├── brdb_tuple.cxx │ │ │ ├── brdb_tuple.h │ │ │ ├── brdb_tuple_sptr.h │ │ │ ├── brdb_value.cxx │ │ │ ├── brdb_value.h │ │ │ ├── brdb_value.hxx │ │ │ ├── brdb_value_sptr.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sample_database.cxx │ │ │ │ ├── sample_database.h │ │ │ │ ├── test_database.cxx │ │ │ │ ├── test_database_manager.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_query.cxx │ │ │ │ ├── test_relation.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ ├── test_tuple.cxx │ │ │ │ └── test_value.cxx │ │ ├── bsl │ │ │ ├── CMakeLists.txt │ │ │ ├── bsl_opinion.cxx │ │ │ ├── bsl_opinion.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bsol │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── vbl_smart_ptr+bsol_hough_line_index-.cxx │ │ │ │ ├── vbl_smart_ptr+bsol_intrinsic_curve_2d-.cxx │ │ │ │ └── vbl_smart_ptr+bsol_intrinsic_curve_3d-.cxx │ │ │ ├── bsol_algs.cxx │ │ │ ├── bsol_algs.h │ │ │ ├── bsol_distance_histogram.cxx │ │ │ ├── bsol_distance_histogram.h │ │ │ ├── bsol_hough_line_index.cxx │ │ │ ├── bsol_hough_line_index.h │ │ │ ├── bsol_hough_line_index_sptr.h │ │ │ ├── bsol_intrinsic_curve_2d.cxx │ │ │ ├── bsol_intrinsic_curve_2d.h │ │ │ ├── bsol_intrinsic_curve_2d_sptr.h │ │ │ ├── bsol_intrinsic_curve_3d.cxx │ │ │ ├── bsol_intrinsic_curve_3d.h │ │ │ ├── bsol_intrinsic_curve_3d_sptr.h │ │ │ ├── bsol_point_index_2d.cxx │ │ │ ├── bsol_point_index_2d.h │ │ │ ├── bsol_point_index_3d.cxx │ │ │ ├── bsol_point_index_3d.h │ │ │ ├── dll.h │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_hough_index.cxx │ │ │ │ └── test_include.cxx │ │ ├── bsta │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── bsta_beta+double-.cxx │ │ │ │ ├── bsta_beta+float-.cxx │ │ │ │ ├── bsta_gaussian_full+double.2-.cxx │ │ │ │ ├── bsta_gaussian_full+double.3-.cxx │ │ │ │ ├── bsta_gaussian_full+double.4-.cxx │ │ │ │ ├── bsta_gaussian_full+float.2-.cxx │ │ │ │ ├── bsta_gaussian_full+float.3-.cxx │ │ │ │ ├── bsta_gaussian_full+float.4-.cxx │ │ │ │ ├── bsta_gaussian_full+float.6-.cxx │ │ │ │ ├── bsta_gaussian_indep+double.3-.cxx │ │ │ │ ├── bsta_gaussian_indep+double.4-.cxx │ │ │ │ ├── bsta_gaussian_indep+float.2-.cxx │ │ │ │ ├── bsta_gaussian_indep+float.3-.cxx │ │ │ │ ├── bsta_gaussian_indep+float.4-.cxx │ │ │ │ ├── bsta_gaussian_sphere+double.1-.cxx │ │ │ │ ├── bsta_gaussian_sphere+double.2-.cxx │ │ │ │ ├── bsta_gaussian_sphere+double.3-.cxx │ │ │ │ ├── bsta_gaussian_sphere+float.1-.cxx │ │ │ │ ├── bsta_gaussian_sphere+float.2-.cxx │ │ │ │ ├── bsta_gaussian_sphere+float.3-.cxx │ │ │ │ ├── bsta_histogram+char-.cxx │ │ │ │ ├── bsta_histogram+double-.cxx │ │ │ │ ├── bsta_histogram+float-.cxx │ │ │ │ ├── bsta_joint_histogram+double-.cxx │ │ │ │ ├── bsta_joint_histogram+float-.cxx │ │ │ │ ├── bsta_joint_histogram_3d+double-.cxx │ │ │ │ ├── bsta_joint_histogram_3d+float-.cxx │ │ │ │ ├── bsta_k_means+double-.cxx │ │ │ │ ├── bsta_k_means+float-.cxx │ │ │ │ ├── bsta_kent+double-.cxx │ │ │ │ ├── bsta_otsu_threshold+double-.cxx │ │ │ │ ├── bsta_otsu_threshold+float-.cxx │ │ │ │ ├── bsta_parzen_sphere+double.1-.cxx │ │ │ │ ├── bsta_parzen_sphere+double.3-.cxx │ │ │ │ ├── bsta_parzen_sphere+float.1-.cxx │ │ │ │ ├── bsta_parzen_sphere+float.3-.cxx │ │ │ │ ├── bsta_sampler+uint-.cxx │ │ │ │ ├── bsta_spherical_histogram+double-.cxx │ │ │ │ ├── bsta_spherical_histogram+float-.cxx │ │ │ │ ├── bsta_von_mises+double.2-.cxx │ │ │ │ ├── bsta_von_mises+double.3-.cxx │ │ │ │ ├── bsta_von_mises+float.2-.cxx │ │ │ │ ├── bsta_von_mises+float.3-.cxx │ │ │ │ ├── bsta_weibull+double-.cxx │ │ │ │ ├── bsta_weibull+float-.cxx │ │ │ │ ├── vbl_smart_ptr+bsta_histogram_base-.cxx │ │ │ │ ├── vbl_smart_ptr+bsta_joint_histogram_3d_base-.cxx │ │ │ │ ├── vbl_smart_ptr+bsta_joint_histogram_base-.cxx │ │ │ │ └── vbl_smart_ptr+bsta_random_wrapper-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_fd3---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_ff3---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_id3---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_if3---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_sd3---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_sf1---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture+bsta_num_obs+bsta_gauss_sf3---.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3--.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3--.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3--.cxx │ │ │ │ │ ├── bsta_adaptive_updater+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3--.cxx │ │ │ │ │ ├── bsta_mean_shift+double.1-.cxx │ │ │ │ │ ├── bsta_mean_shift+float.1-.cxx │ │ │ │ │ ├── bsta_mean_shift+float.2-.cxx │ │ │ │ │ ├── bsta_mean_shift+float.3-.cxx │ │ │ │ │ ├── bsta_mix_beta_updater+bsta_mixture_fixed+bsta_num_obs+bsta_beta+float--.3--.cxx │ │ │ │ │ ├── bsta_parzen_updater+bsta_parzen_sphere+float.1--.cxx │ │ │ │ │ ├── bsta_parzen_updater+bsta_parzen_sphere+float.3--.cxx │ │ │ │ │ ├── bsta_sample_set+double.1-.cxx │ │ │ │ │ ├── bsta_sample_set+double.2-.cxx │ │ │ │ │ ├── bsta_sample_set+float.1-.cxx │ │ │ │ │ ├── bsta_sample_set+float.2-.cxx │ │ │ │ │ ├── bsta_sample_set+float.3-.cxx │ │ │ │ │ ├── bsta_von_mises_updater+bsta_von_mises+double.2--.cxx │ │ │ │ │ ├── bsta_von_mises_updater+bsta_von_mises+double.3--.cxx │ │ │ │ │ ├── bsta_von_mises_updater+bsta_von_mises+float.2--.cxx │ │ │ │ │ ├── bsta_von_mises_updater+bsta_von_mises+float.3--.cxx │ │ │ │ │ └── vbl_smart_ptr+bsta_sigma_normalizer-.cxx │ │ │ │ ├── bsta_adaptive_updater.h │ │ │ │ ├── bsta_adaptive_updater.hxx │ │ │ │ ├── bsta_bayes_functor.h │ │ │ │ ├── bsta_beta_updater.h │ │ │ │ ├── bsta_beta_updater.hxx │ │ │ │ ├── bsta_display_vrml.h │ │ │ │ ├── bsta_fit_gaussian.h │ │ │ │ ├── bsta_fit_weibull.cxx │ │ │ │ ├── bsta_fit_weibull.h │ │ │ │ ├── bsta_gaussian_stats.h │ │ │ │ ├── bsta_gaussian_updater.h │ │ │ │ ├── bsta_mean_shift.h │ │ │ │ ├── bsta_mean_shift.hxx │ │ │ │ ├── bsta_mixture_functors.h │ │ │ │ ├── bsta_mvnrand.h │ │ │ │ ├── bsta_parzen_updater.h │ │ │ │ ├── bsta_parzen_updater.hxx │ │ │ │ ├── bsta_sample_set.h │ │ │ │ ├── bsta_sample_set.hxx │ │ │ │ ├── bsta_sigma_normalizer.cxx │ │ │ │ ├── bsta_sigma_normalizer.h │ │ │ │ ├── bsta_truth_updater.h │ │ │ │ ├── bsta_truth_updater.hxx │ │ │ │ ├── bsta_von_mises_updater.h │ │ │ │ ├── bsta_von_mises_updater.hxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── beta_distr_100_10.txt │ │ │ │ │ ├── beta_distr_100_100.txt │ │ │ │ │ ├── beta_distr_10_100.txt │ │ │ │ │ ├── beta_distr_2_2.txt │ │ │ │ │ ├── beta_distr_2_7.txt │ │ │ │ │ ├── beta_distr_7_2.txt │ │ │ │ │ ├── test_beta_updater.cxx │ │ │ │ │ ├── test_display_vrml.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_fit_gaussian.cxx │ │ │ │ │ ├── test_fit_weibull.cxx │ │ │ │ │ ├── test_gaussian_model.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_mean_shift.cxx │ │ │ │ │ ├── test_rand_sampling.cxx │ │ │ │ │ ├── test_template_include.cxx │ │ │ │ │ └── test_von_mises_update.cxx │ │ │ ├── bsta_attributes.h │ │ │ ├── bsta_basic_functors.h │ │ │ ├── bsta_beta.h │ │ │ ├── bsta_beta.hxx │ │ │ ├── bsta_beta_f1.h │ │ │ ├── bsta_detector_gaussian.h │ │ │ ├── bsta_detector_mixture.h │ │ │ ├── bsta_distribution.h │ │ │ ├── bsta_gauss.cxx │ │ │ ├── bsta_gauss.h │ │ │ ├── bsta_gauss_fd1.h │ │ │ ├── bsta_gauss_fd2.h │ │ │ ├── bsta_gauss_fd3.h │ │ │ ├── bsta_gauss_ff1.h │ │ │ ├── bsta_gauss_ff2.h │ │ │ ├── bsta_gauss_ff3.h │ │ │ ├── bsta_gauss_id1.h │ │ │ ├── bsta_gauss_id2.h │ │ │ ├── bsta_gauss_id3.h │ │ │ ├── bsta_gauss_if1.h │ │ │ ├── bsta_gauss_if2.h │ │ │ ├── bsta_gauss_if3.h │ │ │ ├── bsta_gauss_if4.h │ │ │ ├── bsta_gauss_sd1.h │ │ │ ├── bsta_gauss_sd2.h │ │ │ ├── bsta_gauss_sd3.h │ │ │ ├── bsta_gauss_sf1.h │ │ │ ├── bsta_gauss_sf2.h │ │ │ ├── bsta_gauss_sf3.h │ │ │ ├── bsta_gaussian.h │ │ │ ├── bsta_gaussian_full.h │ │ │ ├── bsta_gaussian_full.hxx │ │ │ ├── bsta_gaussian_indep.h │ │ │ ├── bsta_gaussian_indep.hxx │ │ │ ├── bsta_gaussian_sphere.h │ │ │ ├── bsta_gaussian_sphere.hxx │ │ │ ├── bsta_histogram.cxx │ │ │ ├── bsta_histogram.h │ │ │ ├── bsta_histogram.hxx │ │ │ ├── bsta_histogram_base.h │ │ │ ├── bsta_histogram_sptr.h │ │ │ ├── bsta_int_histogram_1d.cxx │ │ │ ├── bsta_int_histogram_1d.h │ │ │ ├── bsta_int_histogram_2d.cxx │ │ │ ├── bsta_int_histogram_2d.h │ │ │ ├── bsta_joint_histogram.h │ │ │ ├── bsta_joint_histogram.hxx │ │ │ ├── bsta_joint_histogram_3d.h │ │ │ ├── bsta_joint_histogram_3d.hxx │ │ │ ├── bsta_joint_histogram_3d_base.h │ │ │ ├── bsta_joint_histogram_3d_sptr.h │ │ │ ├── bsta_joint_histogram_base.h │ │ │ ├── bsta_joint_histogram_sptr.h │ │ │ ├── bsta_k_means.cxx │ │ │ ├── bsta_k_means.h │ │ │ ├── bsta_k_means.hxx │ │ │ ├── bsta_k_medoid.cxx │ │ │ ├── bsta_k_medoid.h │ │ │ ├── bsta_kent.h │ │ │ ├── bsta_kent.hxx │ │ │ ├── bsta_mixture.h │ │ │ ├── bsta_mixture_fixed.h │ │ │ ├── bsta_otsu_threshold.h │ │ │ ├── bsta_otsu_threshold.hxx │ │ │ ├── bsta_parzen.h │ │ │ ├── bsta_parzen_sf1.h │ │ │ ├── bsta_parzen_sf2.h │ │ │ ├── bsta_parzen_sf3.h │ │ │ ├── bsta_parzen_sphere.h │ │ │ ├── bsta_parzen_sphere.hxx │ │ │ ├── bsta_random_wrapper.cxx │ │ │ ├── bsta_random_wrapper.h │ │ │ ├── bsta_sampler.h │ │ │ ├── bsta_sampler.hxx │ │ │ ├── bsta_spherical_histogram.h │ │ │ ├── bsta_spherical_histogram.hxx │ │ │ ├── bsta_von_mises.h │ │ │ ├── bsta_von_mises.hxx │ │ │ ├── bsta_weibull.h │ │ │ ├── bsta_weibull.hxx │ │ │ ├── introduction_doxy.txt │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bsta_io_attributes.h │ │ │ │ ├── bsta_io_beta.h │ │ │ │ ├── bsta_io_gaussian_full.h │ │ │ │ ├── bsta_io_gaussian_indep.h │ │ │ │ ├── bsta_io_gaussian_sphere.h │ │ │ │ ├── bsta_io_histogram.cxx │ │ │ │ ├── bsta_io_histogram.h │ │ │ │ ├── bsta_io_mixture.h │ │ │ │ ├── bsta_io_mixture_fixed.h │ │ │ │ ├── bsta_io_parzen_sphere.h │ │ │ │ ├── bsta_io_von_mises.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_bsta_histogram_io.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ └── test_include.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+bsta_histogram_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+bsta_random_wrapper_sptr-.cxx │ │ │ │ │ └── brdb_value_t+bsta_sigma_normalizer_sptr-.cxx │ │ │ │ ├── bsta_processes.h │ │ │ │ ├── bsta_register.cxx │ │ │ │ ├── bsta_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bsta_initialize_random_seed_process.cxx │ │ │ │ │ └── bsta_sigma_normalization_table_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── beta_distr_2_2.txt │ │ │ │ ├── test_beta.cxx │ │ │ │ ├── test_bsta_histogram.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_gaussian_full.cxx │ │ │ │ ├── test_gaussian_indep.cxx │ │ │ │ ├── test_gaussian_sphere.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_k_means.cxx │ │ │ │ ├── test_k_medoid.cxx │ │ │ │ ├── test_kent.cxx │ │ │ │ ├── test_mixture.cxx │ │ │ │ ├── test_otsu_threshold.cxx │ │ │ │ ├── test_parzen_sphere.cxx │ │ │ │ ├── test_sampler.cxx │ │ │ │ ├── test_spherical_histogram.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ ├── test_von_mises.cxx │ │ │ │ └── test_weibull.cxx │ │ │ └── vis │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bsta_svg_tools.cxx │ │ │ │ ├── bsta_svg_tools.h │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_vis_svg.cxx │ │ ├── btol │ │ │ ├── CMakeLists.txt │ │ │ ├── btol_edge_algs.cxx │ │ │ ├── btol_edge_algs.h │ │ │ ├── btol_face_algs.cxx │ │ │ ├── btol_face_algs.h │ │ │ ├── btol_vertex_algs.cxx │ │ │ ├── btol_vertex_algs.h │ │ │ ├── dll.h │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_face_algs.cxx │ │ │ │ └── test_include.cxx │ │ ├── bugl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── bugl_gaussian_point_2d+double-.cxx │ │ │ │ ├── bugl_gaussian_point_3d+double-.cxx │ │ │ │ ├── bugl_random_transform_set_2d+double-.cxx │ │ │ │ ├── bugl_random_transform_set_2d+float-.cxx │ │ │ │ ├── vbl_smart_ptr+bugl_normal_point_2d-.cxx │ │ │ │ └── vbl_smart_ptr+bugl_normal_point_3d-.cxx │ │ │ ├── bugl_curve_3d.cxx │ │ │ ├── bugl_curve_3d.h │ │ │ ├── bugl_gaussian_point_2d.h │ │ │ ├── bugl_gaussian_point_2d.hxx │ │ │ ├── bugl_gaussian_point_3d.h │ │ │ ├── bugl_gaussian_point_3d.hxx │ │ │ ├── bugl_normal_point_2d.h │ │ │ ├── bugl_normal_point_2d_sptr.h │ │ │ ├── bugl_normal_point_3d.h │ │ │ ├── bugl_normal_point_3d_sptr.h │ │ │ ├── bugl_random_transform_set_2d.h │ │ │ ├── bugl_random_transform_set_2d.hxx │ │ │ ├── bugl_uncertainty_point_2d.h │ │ │ ├── bugl_uncertainty_point_3d.h │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_bugl.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_random_transform_set_2d.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bvgl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── bvgl_intersection+double-.cxx │ │ │ │ ├── bvgl_poly_region_3d+double-.cxx │ │ │ │ ├── bvgl_scaled_shape+double-.cxx │ │ │ │ ├── bvgl_spline_region_3d+double-.cxx │ │ │ │ ├── bvgl_triangle_3d+double-.cxx │ │ │ │ ├── bvgl_triangle_3d+float-.cxx │ │ │ │ ├── bvgl_triangle_interpolation_iterator+double-.cxx │ │ │ │ ├── bvgl_triangle_interpolation_iterator+float-.cxx │ │ │ │ ├── bvgl_volume_of_intersection+double-.cxx │ │ │ │ ├── vbl_array_3d+vcl_vector+double--.cxx │ │ │ │ ├── vbl_array_3d+vcl_vector+vgl_point_3d+double---.cxx │ │ │ │ ├── vbl_array_3d+vcl_vector+vgl_vector_3d+double---.cxx │ │ │ │ ├── vbl_smart_ptr+bvgl_articulated_poly-.cxx │ │ │ │ ├── vbl_smart_ptr+bvgl_change_obj-.cxx │ │ │ │ └── vbl_smart_ptr+bvgl_changes-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bvgl_2d_geo_index+float-.cxx │ │ │ │ │ ├── bvgl_2d_geo_index+int-.cxx │ │ │ │ │ ├── bvgl_2d_geo_index+vcl_vector+float--.cxx │ │ │ │ │ ├── bvgl_2d_geo_index+vcl_vector+int--.cxx │ │ │ │ │ └── vbl_smart_ptr+bvgl_2d_geo_index_node_base.cxx │ │ │ │ ├── bvgl_2d_geo_index.cxx │ │ │ │ ├── bvgl_2d_geo_index.h │ │ │ │ ├── bvgl_2d_geo_index.hxx │ │ │ │ ├── bvgl_2d_geo_index_node_base.cxx │ │ │ │ ├── bvgl_2d_geo_index_node_base.h │ │ │ │ ├── bvgl_2d_geo_index_sptr.h │ │ │ │ ├── bvgl_biarc.cxx │ │ │ │ ├── bvgl_biarc.h │ │ │ │ ├── bvgl_eulerspiral.cxx │ │ │ │ ├── bvgl_eulerspiral.h │ │ │ │ ├── bvgl_eulerspiral_base.cxx │ │ │ │ ├── bvgl_eulerspiral_base.h │ │ │ │ ├── bvgl_eulerspiral_lookup_table.bvl │ │ │ │ ├── bvgl_where_brl_lib_dir.h.in │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_2d_geo_index.cxx │ │ │ │ │ ├── test_biarc.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_eulerspiral.cxx │ │ │ │ │ └── test_include.cxx │ │ │ ├── bvgl_articulated_poly.cxx │ │ │ ├── bvgl_articulated_poly.h │ │ │ ├── bvgl_articulated_poly_sptr.h │ │ │ ├── bvgl_change_obj.cxx │ │ │ ├── bvgl_change_obj.h │ │ │ ├── bvgl_change_obj_sptr.h │ │ │ ├── bvgl_changes.cxx │ │ │ ├── bvgl_changes.h │ │ │ ├── bvgl_changes_sptr.h │ │ │ ├── bvgl_cross_section.cxx │ │ │ ├── bvgl_cross_section.h │ │ │ ├── bvgl_gen_cylinder.cxx │ │ │ ├── bvgl_gen_cylinder.h │ │ │ ├── bvgl_grid_index_3d.h │ │ │ ├── bvgl_intersection.h │ │ │ ├── bvgl_intersection.hxx │ │ │ ├── bvgl_k_nearest_neighbors_3d.h │ │ │ ├── bvgl_knn_index_3d.h │ │ │ ├── bvgl_labelme_parser.cxx │ │ │ ├── bvgl_labelme_parser.h │ │ │ ├── bvgl_param_curve.cxx │ │ │ ├── bvgl_param_curve.h │ │ │ ├── bvgl_point_3d_cmp.h │ │ │ ├── bvgl_poly_region_3d.h │ │ │ ├── bvgl_poly_region_3d.hxx │ │ │ ├── bvgl_ray_pyramid.cxx │ │ │ ├── bvgl_ray_pyramid.h │ │ │ ├── bvgl_scaled_shape_3d.h │ │ │ ├── bvgl_scaled_shape_3d.hxx │ │ │ ├── bvgl_spline_region_3d.h │ │ │ ├── bvgl_spline_region_3d.hxx │ │ │ ├── bvgl_triangle_3d.h │ │ │ ├── bvgl_triangle_3d.hxx │ │ │ ├── bvgl_triangle_interpolation_iterator.h │ │ │ ├── bvgl_triangle_interpolation_iterator.hxx │ │ │ ├── bvgl_volume_of_intersection.h │ │ │ ├── bvgl_volume_of_intersection.hxx │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_bvgl_changes.cxx │ │ │ │ ├── test_bvgl_intersection.cxx │ │ │ │ ├── test_bvgl_labelme_parser.cxx │ │ │ │ ├── test_bvgl_ray_pyramid.cxx │ │ │ │ ├── test_bvgl_volume_of_intersection.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_gen_cylinder.cxx │ │ │ │ ├── test_grid_index_3d.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_k_nearest_neighbors.cxx │ │ │ │ ├── test_knn_index_3d.cxx │ │ │ │ ├── test_poly_region.cxx │ │ │ │ ├── test_scaled_shape.cxx │ │ │ │ ├── test_spline_region.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bvrml │ │ │ ├── CMakeLists.txt │ │ │ ├── bvrml_export.h │ │ │ ├── bvrml_write.cxx │ │ │ ├── bvrml_write.h │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bvrml_processes.h │ │ │ │ ├── bvrml_register.cxx │ │ │ │ ├── bvrml_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bvrml_image_to_points_process.cxx │ │ │ │ │ ├── bvrml_initialize_process.cxx │ │ │ │ │ ├── bvrml_ply_processes.cxx │ │ │ │ │ └── bvrml_write_processes.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bwm │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── vbl_smart_ptr+bwm_3d_corr-.cxx │ │ │ │ ├── vbl_smart_ptr+bwm_command-.cxx │ │ │ │ ├── vbl_smart_ptr+bwm_corr-.cxx │ │ │ │ ├── vbl_smart_ptr+bwm_observable-.cxx │ │ │ │ ├── vbl_smart_ptr+bwm_observable_mesh-.cxx │ │ │ │ └── vbl_smart_ptr+bwm_observable_textured_mesh-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bwm_algo.cxx │ │ │ │ ├── bwm_algo.h │ │ │ │ ├── bwm_delaunay_tri.cxx │ │ │ │ ├── bwm_delaunay_tri.h │ │ │ │ ├── bwm_image_processor.cxx │ │ │ │ ├── bwm_image_processor.h │ │ │ │ ├── bwm_lidar_algo.cxx │ │ │ │ ├── bwm_lidar_algo.h │ │ │ │ ├── bwm_rat_proj_camera.cxx │ │ │ │ ├── bwm_rat_proj_camera.h │ │ │ │ ├── bwm_shape_file.cxx │ │ │ │ ├── bwm_shape_file.h │ │ │ │ ├── bwm_soview2D_cross.cxx │ │ │ │ ├── bwm_soview2D_cross.h │ │ │ │ ├── bwm_soview2D_vertex.h │ │ │ │ ├── bwm_utils.cxx │ │ │ │ ├── bwm_utils.h │ │ │ │ ├── bwm_utm_lat_lon.cxx │ │ │ │ ├── bwm_utm_lat_lon.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── bwm_3d_corr.cxx │ │ │ ├── bwm_3d_corr.h │ │ │ ├── bwm_3d_corr_sptr.h │ │ │ ├── bwm_command.h │ │ │ ├── bwm_command_macros.h │ │ │ ├── bwm_command_sptr.h │ │ │ ├── bwm_corr.cxx │ │ │ ├── bwm_corr.h │ │ │ ├── bwm_corr_sptr.h │ │ │ ├── bwm_def.h │ │ │ ├── bwm_input.h │ │ │ ├── bwm_load_commands.h │ │ │ ├── bwm_macros.h │ │ │ ├── bwm_menu.cxx │ │ │ ├── bwm_menu.h │ │ │ ├── bwm_observable.h │ │ │ ├── bwm_observable_mesh.cxx │ │ │ ├── bwm_observable_mesh.h │ │ │ ├── bwm_observable_mesh_circular.cxx │ │ │ ├── bwm_observable_mesh_circular.h │ │ │ ├── bwm_observable_mesh_sptr.h │ │ │ ├── bwm_observable_point.cxx │ │ │ ├── bwm_observable_point.h │ │ │ ├── bwm_observable_point_sptr.h │ │ │ ├── bwm_observable_polyline.cxx │ │ │ ├── bwm_observable_polyline.h │ │ │ ├── bwm_observable_polyline_sptr.h │ │ │ ├── bwm_observable_sptr.h │ │ │ ├── bwm_observable_textured_mesh.cxx │ │ │ ├── bwm_observable_textured_mesh.h │ │ │ ├── bwm_observable_textured_mesh_sptr.h │ │ │ ├── bwm_observer.cxx │ │ │ ├── bwm_observer.h │ │ │ ├── bwm_observer_cam.cxx │ │ │ ├── bwm_observer_cam.h │ │ │ ├── bwm_observer_generic_cam.cxx │ │ │ ├── bwm_observer_generic_cam.h │ │ │ ├── bwm_observer_geo_cam.cxx │ │ │ ├── bwm_observer_geo_cam.h │ │ │ ├── bwm_observer_img.cxx │ │ │ ├── bwm_observer_img.h │ │ │ ├── bwm_observer_mgr.cxx │ │ │ ├── bwm_observer_mgr.h │ │ │ ├── bwm_observer_proj_cam.cxx │ │ │ ├── bwm_observer_proj_cam.h │ │ │ ├── bwm_observer_rat_cam.cxx │ │ │ ├── bwm_observer_rat_cam.h │ │ │ ├── bwm_observer_vgui.cxx │ │ │ ├── bwm_observer_vgui.h │ │ │ ├── bwm_observer_video.cxx │ │ │ ├── bwm_observer_video.h │ │ │ ├── bwm_plane_fitting_lsf.cxx │ │ │ ├── bwm_plane_fitting_lsf.h │ │ │ ├── bwm_popup_menu.cxx │ │ │ ├── bwm_popup_menu.h │ │ │ ├── bwm_process_commands.h │ │ │ ├── bwm_process_mgr.cxx │ │ │ ├── bwm_process_mgr.h │ │ │ ├── bwm_site_mgr.cxx │ │ │ ├── bwm_site_mgr.h │ │ │ ├── bwm_tableau.h │ │ │ ├── bwm_tableau_cam.cxx │ │ │ ├── bwm_tableau_cam.h │ │ │ ├── bwm_tableau_factory.cxx │ │ │ ├── bwm_tableau_factory.h │ │ │ ├── bwm_tableau_generic_cam.cxx │ │ │ ├── bwm_tableau_generic_cam.h │ │ │ ├── bwm_tableau_geo_cam.cxx │ │ │ ├── bwm_tableau_geo_cam.h │ │ │ ├── bwm_tableau_img.cxx │ │ │ ├── bwm_tableau_img.h │ │ │ ├── bwm_tableau_mgr.cxx │ │ │ ├── bwm_tableau_mgr.h │ │ │ ├── bwm_tableau_proj_cam.cxx │ │ │ ├── bwm_tableau_proj_cam.h │ │ │ ├── bwm_tableau_rat_cam.cxx │ │ │ ├── bwm_tableau_rat_cam.h │ │ │ ├── bwm_tableau_sptr.h │ │ │ ├── bwm_tableau_text.cxx │ │ │ ├── bwm_tableau_text.h │ │ │ ├── bwm_tableau_video.cxx │ │ │ ├── bwm_tableau_video.h │ │ │ ├── bwm_texture_map_generator.cxx │ │ │ ├── bwm_texture_map_generator.h │ │ │ ├── bwm_world.cxx │ │ │ ├── bwm_world.h │ │ │ ├── doc │ │ │ │ ├── Controls.docx │ │ │ │ ├── HELP_cam.txt │ │ │ │ ├── HELP_camera_correction.doc │ │ │ │ └── HELP_coin3d.txt │ │ │ ├── exe │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bwm_3d_fixed_transform.cxx │ │ │ │ ├── bwm_3d_site_transform.cxx │ │ │ │ ├── bwm_3d_site_transform_points.cxx │ │ │ │ ├── bwm_batch_project.cxx │ │ │ │ ├── bwm_batch_project_meshes_to_perspective_video.cxx │ │ │ │ ├── bwm_bundler4_to_video_site.cxx │ │ │ │ ├── bwm_bundler_to_video_site.cxx │ │ │ │ ├── bwm_compute_orientation_variance.cxx │ │ │ │ ├── bwm_main.cxx │ │ │ │ ├── bwm_nvm_avg_focal_length.cxx │ │ │ │ ├── bwm_test_TFT_constraints.cxx │ │ │ │ ├── bwm_triangulate_2d_corrs.cxx │ │ │ │ └── bwm_visualsfm_to_vpgl_cams.cxx │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── vbl_smart_ptr+bwm_site-.cxx │ │ │ │ ├── bwm_io_config_parser.cxx │ │ │ │ ├── bwm_io_config_parser.h │ │ │ │ ├── bwm_io_kml_camera.cxx │ │ │ │ ├── bwm_io_kml_camera.h │ │ │ │ ├── bwm_io_kml_parser.cxx │ │ │ │ ├── bwm_io_kml_parser.h │ │ │ │ ├── bwm_io_structs.h │ │ │ │ ├── bwm_site.cxx │ │ │ │ ├── bwm_site.h │ │ │ │ ├── bwm_site_sptr.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_kml_parser.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bwm_processes.h │ │ │ │ ├── bwm_register.cxx │ │ │ │ ├── bwm_register.h │ │ │ │ ├── processes │ │ │ │ │ └── bwm_create_corr_file_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── process │ │ │ │ ├── bwm_process.cxx │ │ │ │ ├── bwm_process.h │ │ │ │ ├── bwm_site_process.cxx │ │ │ │ └── bwm_site_process.h │ │ │ ├── reg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── vbl_smart_ptr+bwm_reg_image-.cxx │ │ │ │ ├── bwm_reg_edge_champher.cxx │ │ │ │ ├── bwm_reg_edge_champher.h │ │ │ │ ├── bwm_reg_image.cxx │ │ │ │ ├── bwm_reg_image.h │ │ │ │ ├── bwm_reg_image_sptr.h │ │ │ │ ├── bwm_reg_matcher.cxx │ │ │ │ ├── bwm_reg_matcher.h │ │ │ │ ├── bwm_reg_processor.cxx │ │ │ │ ├── bwm_reg_processor.h │ │ │ │ ├── bwm_reg_utils.cxx │ │ │ │ ├── bwm_reg_utils.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_champher.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_matcher.cxx │ │ │ │ │ └── test_processor.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jcp1_042799_0930.txt │ │ │ │ ├── test_delaunay.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_move_proj_plane.cxx │ │ │ ├── video │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_smart_ptr+bwm_video_cam_istream-.cxx │ │ │ │ │ ├── vbl_smart_ptr+bwm_video_cam_ostream-.cxx │ │ │ │ │ └── vbl_smart_ptr+bwm_video_corr-.cxx │ │ │ │ ├── bwm_video_cam_istream.cxx │ │ │ │ ├── bwm_video_cam_istream.h │ │ │ │ ├── bwm_video_cam_istream_sptr.h │ │ │ │ ├── bwm_video_cam_ostream.cxx │ │ │ │ ├── bwm_video_cam_ostream.h │ │ │ │ ├── bwm_video_cam_ostream_sptr.h │ │ │ │ ├── bwm_video_corr.cxx │ │ │ │ ├── bwm_video_corr.h │ │ │ │ ├── bwm_video_corr_processor.cxx │ │ │ │ ├── bwm_video_corr_processor.h │ │ │ │ ├── bwm_video_corr_sptr.h │ │ │ │ ├── bwm_video_export.h │ │ │ │ ├── bwm_video_registration.cxx │ │ │ │ ├── bwm_video_registration.h │ │ │ │ ├── bwm_video_site_io.cxx │ │ │ │ ├── bwm_video_site_io.h │ │ │ │ ├── bwm_video_site_io_defs.h │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bwm_extract_snippets.cxx │ │ │ │ │ ├── bwm_transform_video_site_proc.cxx │ │ │ │ │ ├── bwm_video_corr_proc.cxx │ │ │ │ │ ├── bwm_video_corr_proc_gt.cxx │ │ │ │ │ ├── bwm_video_corr_to_groundtruth_images.cxx │ │ │ │ │ ├── bwm_video_normalize.cxx │ │ │ │ │ ├── bwm_video_normalize_3d_corr.cxx │ │ │ │ │ └── bwm_video_planar_reg_proc.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_cam_iostream.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_video_corr_processor.cxx │ │ │ │ │ └── test_video_site_io.cxx │ │ │ └── wxWidgets │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bwm_wx_app.cxx │ │ │ │ ├── bwm_wx_app.h │ │ │ │ ├── bwm_wx_frame.cxx │ │ │ │ ├── bwm_wx_frame.h │ │ │ │ ├── bwm_wx_menu.cxx │ │ │ │ ├── bwm_wx_menu.h │ │ │ │ ├── crosscut.xrc │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bxml │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── vbl_io_smart_ptr+bxml_document-.cxx │ │ │ │ ├── vbl_smart_ptr+bxml_data-.cxx │ │ │ │ └── vbl_smart_ptr+bxml_document-.cxx │ │ │ ├── bsvg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bsvg_document.cxx │ │ │ │ ├── bsvg_document.h │ │ │ │ ├── bsvg_element.cxx │ │ │ │ ├── bsvg_element.h │ │ │ │ ├── bsvg_plot.cxx │ │ │ │ ├── bsvg_plot.h │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── brdb_value_t+bxml_document_sptr-.cxx │ │ │ │ │ ├── bsvg_processes.h │ │ │ │ │ ├── bsvg_register.cxx │ │ │ │ │ ├── bsvg_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── bsvg_plot_bar_processes.cxx │ │ │ │ │ │ └── bsvg_plot_roc_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_svg.cxx │ │ │ ├── bxml_document.cxx │ │ │ ├── bxml_document.h │ │ │ ├── bxml_find.cxx │ │ │ ├── bxml_find.h │ │ │ ├── bxml_read.cxx │ │ │ ├── bxml_read.h │ │ │ ├── bxml_write.cxx │ │ │ ├── bxml_write.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_find.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_io.cxx │ │ ├── imesh │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+imesh_mesh_sptr-.cxx │ │ │ │ └── vbl_smart_ptr+imesh_mesh-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── imesh_imls_surface+imesh_imls_surface+-integral_data.vgl_point_3d+double--.cxx │ │ │ │ │ └── imesh_imls_surface+vgl_vector_2d+double-.vgl_point_3d+double--.cxx │ │ │ │ ├── imesh_detect.cxx │ │ │ │ ├── imesh_detect.h │ │ │ │ ├── imesh_generate_mesh.cxx │ │ │ │ ├── imesh_generate_mesh.h │ │ │ │ ├── imesh_imls_surface.cxx │ │ │ │ ├── imesh_imls_surface.h │ │ │ │ ├── imesh_imls_surface.hxx │ │ │ │ ├── imesh_intersect.cxx │ │ │ │ ├── imesh_intersect.h │ │ │ │ ├── imesh_kd_tree.cxx │ │ │ │ ├── imesh_kd_tree.h │ │ │ │ ├── imesh_kd_tree.hxx │ │ │ │ ├── imesh_operations.cxx │ │ │ │ ├── imesh_operations.h │ │ │ │ ├── imesh_pca.cxx │ │ │ │ ├── imesh_pca.h │ │ │ │ ├── imesh_project.cxx │ │ │ │ ├── imesh_project.h │ │ │ │ ├── imesh_render.cxx │ │ │ │ ├── imesh_render.h │ │ │ │ ├── imesh_transform.cxx │ │ │ │ ├── imesh_transform.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_generate_mesh.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── imesh_detection.cxx │ │ │ ├── imesh_detection.h │ │ │ ├── imesh_face.cxx │ │ │ ├── imesh_face.h │ │ │ ├── imesh_fileio.cxx │ │ │ ├── imesh_fileio.h │ │ │ ├── imesh_half_edge.cxx │ │ │ ├── imesh_half_edge.h │ │ │ ├── imesh_mesh.cxx │ │ │ ├── imesh_mesh.h │ │ │ ├── imesh_operations.cxx │ │ │ ├── imesh_operations.h │ │ │ ├── imesh_vertex.cxx │ │ │ ├── imesh_vertex.h │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_detect.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_imls_surface.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_intersect.cxx │ │ │ │ ├── test_kd_tree.cxx │ │ │ │ ├── test_share.cxx │ │ │ │ └── test_share.h │ │ ├── volm │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── vbl_smart_ptr+volm_buffered_index-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_camera_space-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_geo_index2_node_base.cxx │ │ │ │ ├── vbl_smart_ptr+volm_geo_index_node-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_loc_hyp-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_osm_object_line-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_osm_object_point-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_osm_object_polygon-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_osm_objects.cxx │ │ │ │ ├── vbl_smart_ptr+volm_query-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_satellite_resources-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_spherical_container-.cxx │ │ │ │ ├── vbl_smart_ptr+volm_spherical_shell_container-.cxx │ │ │ │ ├── volm_geo_index2+volm-.cxx │ │ │ │ ├── volm_utils+double-.cxx │ │ │ │ └── volm_utils+float-.cxx │ │ │ ├── bae_tag_to_volm_labels.txt │ │ │ ├── conf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bvgl_2d_geo_index+volm_conf_land_map_indexer-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_conf_buffered_index-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_conf_indexer-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_conf_land_map_indexer-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_conf_object-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_conf_query-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_conf_score-.cxx │ │ │ │ │ ├── volm_conf_buffer+volm_conf_object-.cxx │ │ │ │ │ ├── volm_conf_buffer+volm_conf_score-.cxx │ │ │ │ │ ├── vsl_map_io+uchar.vcl_vector+vgl_point_2d+double---.cxx │ │ │ │ │ └── vsl_map_io+uchar.vcl_vector+vgl_point_3d+double---.cxx │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── volm_conf_create_2d_index.cxx │ │ │ │ │ ├── volm_conf_create_land_map_indexer.cxx │ │ │ │ │ └── volm_conf_visualize_index.cxx │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_volm_conf_buffer.cxx │ │ │ │ │ ├── test_volm_conf_object.cxx │ │ │ │ │ ├── test_volm_conf_query.cxx │ │ │ │ │ └── test_volm_conf_score.cxx │ │ │ │ ├── volm_conf_2d_indexer.cxx │ │ │ │ ├── volm_conf_2d_indexer.h │ │ │ │ ├── volm_conf_buffer.h │ │ │ │ ├── volm_conf_buffer.hxx │ │ │ │ ├── volm_conf_buffered_index.cxx │ │ │ │ ├── volm_conf_buffered_index.h │ │ │ │ ├── volm_conf_indexer.cxx │ │ │ │ ├── volm_conf_indexer.h │ │ │ │ ├── volm_conf_land_map_indexer.cxx │ │ │ │ ├── volm_conf_land_map_indexer.h │ │ │ │ ├── volm_conf_object.cxx │ │ │ │ ├── volm_conf_object.h │ │ │ │ ├── volm_conf_query.cxx │ │ │ │ ├── volm_conf_query.h │ │ │ │ ├── volm_conf_score.cxx │ │ │ │ └── volm_conf_score.h │ │ │ ├── desc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_smart_ptr+volm_desc-.cxx │ │ │ │ │ ├── vbl_smart_ptr+volm_desc_indexer-.cxx │ │ │ │ │ └── vbl_smart_ptr+volm_desc_matcher-.cxx │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── volm_desc_land_exe.cxx │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_volm_descriptor.cxx │ │ │ │ ├── volm_desc.cxx │ │ │ │ ├── volm_desc.h │ │ │ │ ├── volm_desc_ex.cxx │ │ │ │ ├── volm_desc_ex.h │ │ │ │ ├── volm_desc_ex_2d.cxx │ │ │ │ ├── volm_desc_ex_2d.h │ │ │ │ ├── volm_desc_ex_2d_indexer.cxx │ │ │ │ ├── volm_desc_ex_2d_indexer.h │ │ │ │ ├── volm_desc_ex_2d_matcher.cxx │ │ │ │ ├── volm_desc_ex_2d_matcher.h │ │ │ │ ├── volm_desc_ex_land_only.cxx │ │ │ │ ├── volm_desc_ex_land_only.h │ │ │ │ ├── volm_desc_indexer.cxx │ │ │ │ ├── volm_desc_indexer.h │ │ │ │ ├── volm_desc_land.cxx │ │ │ │ ├── volm_desc_land.h │ │ │ │ ├── volm_desc_land_indexer.cxx │ │ │ │ ├── volm_desc_land_indexer.h │ │ │ │ ├── volm_desc_land_matcher.cxx │ │ │ │ ├── volm_desc_land_matcher.h │ │ │ │ ├── volm_desc_matcher.cxx │ │ │ │ └── volm_desc_matcher.h │ │ │ ├── exe │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── volm_construct_cam_space_query.cxx │ │ │ │ ├── volm_create_bvxm_scenes.cxx │ │ │ │ ├── volm_create_osm_2d_map.cxx │ │ │ │ ├── volm_create_osm_intersection_kml.cxx │ │ │ │ ├── volm_create_osm_kml.cxx │ │ │ │ ├── volm_create_osm_objects.cxx │ │ │ │ ├── volm_dummy_matcher.cxx │ │ │ │ ├── volm_evaluate.cxx │ │ │ │ ├── volm_evaluate_output_tiles.cxx │ │ │ │ ├── volm_generate_hypos.cxx │ │ │ │ ├── volm_generate_osm.cxx │ │ │ │ ├── volm_land_classification_tools.cxx │ │ │ │ ├── volm_land_classify_lidar.cxx │ │ │ │ ├── volm_parse_candidate_region.cxx │ │ │ │ ├── volm_prepare_landclass_images.cxx │ │ │ │ ├── volm_query_creation.cxx │ │ │ │ ├── volm_refine_height_map.cxx │ │ │ │ └── volm_sort_bvxm_scene_urban.cxx │ │ │ ├── fallback_category.txt │ │ │ ├── osm_to_volm_labels.txt │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+volm_satellite_resources_sptr-.cxx │ │ │ │ │ └── rsdl_bins_2d+double.float-.cxx │ │ │ │ ├── processes │ │ │ │ │ ├── volm_combine_height_map_process.cxx │ │ │ │ │ ├── volm_correct_rational_cameras_ransac_process.cxx │ │ │ │ │ ├── volm_correct_rational_cameras_ransac_with_intial_process.cxx │ │ │ │ │ ├── volm_create_satellite_site_process.cxx │ │ │ │ │ ├── volm_find_intersecting_sat_resources_process.cxx │ │ │ │ │ ├── volm_find_overlapping_sat_resources_process.cxx │ │ │ │ │ ├── volm_generate_class_map_process.cxx │ │ │ │ │ ├── volm_generate_height_map_from_ply.cxx │ │ │ │ │ ├── volm_map_osm_process.cxx │ │ │ │ │ ├── volm_ndsm_generation_process.cxx │ │ │ │ │ ├── volm_project_dem_to_sat_img_process.cxx │ │ │ │ │ ├── volm_refine_bvxm_height_map_process.cxx │ │ │ │ │ ├── volm_registration_error_process.cxx │ │ │ │ │ ├── volm_transfer_geoindex_id_to_str_process.cxx │ │ │ │ │ └── volm_upsample_dem_projected_img_process.cxx │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── volm_processes.h │ │ │ │ ├── volm_register.cxx │ │ │ │ └── volm_register.h │ │ │ ├── road_junction_category.txt │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test.osm │ │ │ │ ├── test.xml │ │ │ │ ├── test_camera_space.cxx │ │ │ │ ├── test_candidate_region_parser.cxx │ │ │ │ ├── test_category_io.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_find_overlapping.cxx │ │ │ │ ├── test_geo_index2.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_index.cxx │ │ │ │ ├── test_io.cxx │ │ │ │ ├── test_loc_hyp.cxx │ │ │ │ ├── test_osm_object.cxx │ │ │ │ ├── test_osm_parser.cxx │ │ │ │ ├── test_query.cxx │ │ │ │ ├── test_region.kml │ │ │ │ ├── test_region_index.cxx │ │ │ │ ├── test_region_query.cxx │ │ │ │ ├── test_spherical_container.cxx │ │ │ │ ├── test_spherical_region.cxx │ │ │ │ ├── test_spherical_shell_container.cxx │ │ │ │ ├── test_tile.cxx │ │ │ │ └── test_utils.cxx │ │ │ ├── volm_buffered_index.cxx │ │ │ ├── volm_buffered_index.h │ │ │ ├── volm_camera_space.cxx │ │ │ ├── volm_camera_space.h │ │ │ ├── volm_camera_space_sptr.h │ │ │ ├── volm_candidate_list.cxx │ │ │ ├── volm_candidate_list.h │ │ │ ├── volm_candidate_region_parser.cxx │ │ │ ├── volm_candidate_region_parser.h │ │ │ ├── volm_category_io.cxx │ │ │ ├── volm_category_io.h │ │ │ ├── volm_char_codes.h │ │ │ ├── volm_export.h │ │ │ ├── volm_geo_index.cxx │ │ │ ├── volm_geo_index.h │ │ │ ├── volm_geo_index2.cxx │ │ │ ├── volm_geo_index2.h │ │ │ ├── volm_geo_index2.hxx │ │ │ ├── volm_geo_index2_node_base.cxx │ │ │ ├── volm_geo_index2_node_base.h │ │ │ ├── volm_geo_index2_sptr.h │ │ │ ├── volm_geo_index_sptr.h │ │ │ ├── volm_io.cxx │ │ │ ├── volm_io.h │ │ │ ├── volm_io_tools.cxx │ │ │ ├── volm_io_tools.h │ │ │ ├── volm_loc_hyp.cxx │ │ │ ├── volm_loc_hyp.h │ │ │ ├── volm_loc_hyp_sptr.h │ │ │ ├── volm_osm_object_line.cxx │ │ │ ├── volm_osm_object_line.h │ │ │ ├── volm_osm_object_point.cxx │ │ │ ├── volm_osm_object_point.h │ │ │ ├── volm_osm_object_polygon.cxx │ │ │ ├── volm_osm_object_polygon.h │ │ │ ├── volm_osm_objects.cxx │ │ │ ├── volm_osm_objects.h │ │ │ ├── volm_osm_parser.cxx │ │ │ ├── volm_osm_parser.h │ │ │ ├── volm_query.cxx │ │ │ ├── volm_query.h │ │ │ ├── volm_query_sptr.h │ │ │ ├── volm_satellite_resources.cxx │ │ │ ├── volm_satellite_resources.h │ │ │ ├── volm_satellite_resources_sptr.h │ │ │ ├── volm_spherical_container.cxx │ │ │ ├── volm_spherical_container.h │ │ │ ├── volm_spherical_container_sptr.h │ │ │ ├── volm_spherical_index_query_matcher.cxx │ │ │ ├── volm_spherical_index_query_matcher.h │ │ │ ├── volm_spherical_layers.cxx │ │ │ ├── volm_spherical_layers.h │ │ │ ├── volm_spherical_query_region.cxx │ │ │ ├── volm_spherical_query_region.h │ │ │ ├── volm_spherical_region.cxx │ │ │ ├── volm_spherical_region.h │ │ │ ├── volm_spherical_region_index.cxx │ │ │ ├── volm_spherical_region_index.h │ │ │ ├── volm_spherical_region_query.cxx │ │ │ ├── volm_spherical_region_query.h │ │ │ ├── volm_spherical_shell_container.cxx │ │ │ ├── volm_spherical_shell_container.h │ │ │ ├── volm_spherical_shell_container_sptr.h │ │ │ ├── volm_tile.cxx │ │ │ ├── volm_tile.h │ │ │ ├── volm_utils.cxx │ │ │ ├── volm_utils.h │ │ │ ├── volm_utils.hxx │ │ │ ├── volm_vrml_io.cxx │ │ │ └── volm_vrml_io.h │ │ └── vsph │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ ├── vbl_smart_ptr+vsph_spherical_coord-.cxx │ │ │ ├── vbl_smart_ptr+vsph_unit_sphere-.cxx │ │ │ ├── vsl_vector_io+vsph_edge-.cxx │ │ │ ├── vsl_vector_io+vsph_sph_point_2d-.cxx │ │ │ ├── vsph_view_sphere+vsph_view_point+double--.cxx │ │ │ └── vsph_view_sphere+vsph_view_point+vcl_string--.cxx │ │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_camera_bounds.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_grid_index.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_sph_cover.cxx │ │ │ ├── test_sph_geom.cxx │ │ │ ├── test_sph_segment.cxx │ │ │ ├── test_spherical_coord.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_unit_sphere.cxx │ │ │ ├── test_utils.cxx │ │ │ └── test_view_sphere.cxx │ │ │ ├── vsph_camera_bounds.cxx │ │ │ ├── vsph_camera_bounds.h │ │ │ ├── vsph_defs.h │ │ │ ├── vsph_grid_index_2d.cxx │ │ │ ├── vsph_grid_index_2d.h │ │ │ ├── vsph_segment_sphere.cxx │ │ │ ├── vsph_segment_sphere.h │ │ │ ├── vsph_sph_box_2d.cxx │ │ │ ├── vsph_sph_box_2d.h │ │ │ ├── vsph_sph_cover_2d.cxx │ │ │ ├── vsph_sph_cover_2d.h │ │ │ ├── vsph_sph_point_2d.cxx │ │ │ ├── vsph_sph_point_2d.h │ │ │ ├── vsph_sph_point_3d.cxx │ │ │ ├── vsph_sph_point_3d.h │ │ │ ├── vsph_spherical_coord.cxx │ │ │ ├── vsph_spherical_coord.h │ │ │ ├── vsph_spherical_coord_sptr.h │ │ │ ├── vsph_unit_sphere.cxx │ │ │ ├── vsph_unit_sphere.h │ │ │ ├── vsph_unit_sphere_sptr.h │ │ │ ├── vsph_utils.cxx │ │ │ ├── vsph_utils.h │ │ │ ├── vsph_view_point.h │ │ │ ├── vsph_view_sphere.h │ │ │ └── vsph_view_sphere.hxx │ ├── bmods │ │ ├── FindEXPAT.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindHadoop.cmake │ │ ├── FindSHAPELIB.cmake │ │ ├── find_cmu_camera.cmake │ │ └── find_xerces.cmake │ ├── bpro │ │ ├── CMakeLists.txt │ │ ├── bprb │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bprb_parameters+bool-.cxx │ │ │ │ ├── bprb_parameters+bprb_filepath-.cxx │ │ │ │ ├── bprb_parameters+double-.cxx │ │ │ │ ├── bprb_parameters+float-.cxx │ │ │ │ ├── bprb_parameters+int-.cxx │ │ │ │ ├── bprb_parameters+uint-.cxx │ │ │ │ ├── bprb_parameters+vcl_string-.cxx │ │ │ │ ├── bprb_process_manager+bprb_batch_process_manager-.cxx │ │ │ │ ├── vbl_smart_ptr+bprb_parameters-.cxx │ │ │ │ └── vbl_smart_ptr+bprb_process-.cxx │ │ │ ├── bprb_batch_process_manager.cxx │ │ │ ├── bprb_batch_process_manager.h │ │ │ ├── bprb_func_process.h │ │ │ ├── bprb_macros.h │ │ │ ├── bprb_null_process.cxx │ │ │ ├── bprb_null_process.h │ │ │ ├── bprb_parameters.cxx │ │ │ ├── bprb_parameters.h │ │ │ ├── bprb_parameters.hxx │ │ │ ├── bprb_parameters_sptr.h │ │ │ ├── bprb_process.cxx │ │ │ ├── bprb_process.h │ │ │ ├── bprb_process_ext.cxx │ │ │ ├── bprb_process_ext.h │ │ │ ├── bprb_process_manager.h │ │ │ ├── bprb_process_manager.hxx │ │ │ ├── bprb_process_sptr.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bprb_test_process.cxx │ │ │ │ ├── bprb_test_process.h │ │ │ │ ├── params.xml │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_process.cxx │ │ │ │ ├── test_process_params.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bpro_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── bpro_batch.cxx │ │ │ ├── bpro_batch.h │ │ │ ├── bpro_defs.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ └── core │ │ │ ├── CMakeLists.txt │ │ │ ├── bbas_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+bbas_1d_array_double_sptr-.cxx │ │ │ │ ├── brdb_value_t+bbas_1d_array_float_sptr-.cxx │ │ │ │ ├── brdb_value_t+bbas_1d_array_int_sptr-.cxx │ │ │ │ ├── brdb_value_t+bbas_1d_array_string_sptr-.cxx │ │ │ │ ├── brdb_value_t+bbas_1d_array_uint_sptr-.cxx │ │ │ │ ├── brdb_value_t+bsta_joint_histogram_3d_base_sptr-.cxx │ │ │ │ ├── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbas_1d_array_double-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbas_1d_array_float-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbas_1d_array_int-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbas_1d_array_string-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbas_1d_array_unsigned-.cxx │ │ │ │ ├── vbl_smart_ptr+bbas_1d_array_double-.cxx │ │ │ │ ├── vbl_smart_ptr+bbas_1d_array_float-.cxx │ │ │ │ ├── vbl_smart_ptr+bbas_1d_array_int-.cxx │ │ │ │ ├── vbl_smart_ptr+bbas_1d_array_string-.cxx │ │ │ │ └── vbl_smart_ptr+bbas_1d_array_unsigned-.cxx │ │ │ ├── bbas_1d_array_double.cxx │ │ │ ├── bbas_1d_array_double.h │ │ │ ├── bbas_1d_array_float.cxx │ │ │ ├── bbas_1d_array_float.h │ │ │ ├── bbas_1d_array_int.cxx │ │ │ ├── bbas_1d_array_int.h │ │ │ ├── bbas_1d_array_string.cxx │ │ │ ├── bbas_1d_array_string.h │ │ │ ├── bbas_1d_array_string_sptr.h │ │ │ ├── bbas_1d_array_unsigned.cxx │ │ │ ├── bbas_1d_array_unsigned.h │ │ │ ├── bbas_processes.h │ │ │ ├── bbas_register.cxx │ │ │ ├── bbas_register.h │ │ │ ├── processes │ │ │ │ ├── bbas_atmospheric_corr_process.cxx │ │ │ │ ├── bbas_camera_angles_process.cxx │ │ │ │ ├── bbas_estimate_irradiance_process.cxx │ │ │ │ ├── bbas_merge_string_array_process.cxx │ │ │ │ ├── bbas_remove_from_db_process.cxx │ │ │ │ ├── bbas_string_array_process.cxx │ │ │ │ ├── bpgl_depth_map_processes.cxx │ │ │ │ ├── bsl_expected_image_process.cxx │ │ │ │ ├── bsl_fusion_process.cxx │ │ │ │ ├── bsta_clone_joint_hist_3d_process.cxx │ │ │ │ ├── bsta_joint_hist_3d_vrml_process.cxx │ │ │ │ ├── bsta_load_joint_hist_3d_process.cxx │ │ │ │ ├── bsta_save_joint_hist_3d_process.cxx │ │ │ │ └── imesh_ply_bbox_process.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── brad_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+brad_atmospheric_parameters_sptr-.cxx │ │ │ │ ├── brdb_value_t+brad_eigenspace_sptr-.cxx │ │ │ │ └── brdb_value_t+brad_image_metadata_sptr-.cxx │ │ │ ├── brad_processes.h │ │ │ ├── brad_register.cxx │ │ │ ├── brad_register.h │ │ │ ├── processes │ │ │ │ ├── brad_classify_image_pixel_process.cxx │ │ │ │ ├── brad_classify_image_process.cxx │ │ │ │ ├── brad_compute_eigenspace_process.cxx │ │ │ │ ├── brad_convert_reflectance_to_digital_count_process.cxx │ │ │ │ ├── brad_create_atmospheric_parameters_process.cxx │ │ │ │ ├── brad_create_eigenspace_process.cxx │ │ │ │ ├── brad_create_image_metadata_process.cxx │ │ │ │ ├── brad_describe_eigenspace_process.cxx │ │ │ │ ├── brad_display_sun_index_process.cxx │ │ │ │ ├── brad_eigenimage_pixel_process.cxx │ │ │ │ ├── brad_estimate_atmospheric_parameters_process.cxx │ │ │ │ ├── brad_estimate_empty_process.cxx │ │ │ │ ├── brad_estimate_phongs_model_process.cxx │ │ │ │ ├── brad_estimate_radiance_values_process.cxx │ │ │ │ ├── brad_estimate_reflectance_process.cxx │ │ │ │ ├── brad_estimate_shadow_model_process.cxx │ │ │ │ ├── brad_estimate_shadows_process.cxx │ │ │ │ ├── brad_estimate_synoptic_function_1d_process.cxx │ │ │ │ ├── brad_get_cloud_coverage_process.cxx │ │ │ │ ├── brad_get_image_coverage_process.cxx │ │ │ │ ├── brad_get_meta_data_info_process.cxx │ │ │ │ ├── brad_get_sun_angles_date_time_process.cxx │ │ │ │ ├── brad_get_sun_angles_process.cxx │ │ │ │ ├── brad_load_atmospheric_parameters_process.cxx │ │ │ │ ├── brad_load_eigenspace_process.cxx │ │ │ │ ├── brad_load_image_metadata_process.cxx │ │ │ │ ├── brad_nitf_abs_radiometric_calibration_process.cxx │ │ │ │ ├── brad_nitf_read_metadata_process.cxx │ │ │ │ ├── brad_save_atmospheric_parameters_process.cxx │ │ │ │ ├── brad_save_eigenspace_process.cxx │ │ │ │ ├── brad_save_image_metadata_process.cxx │ │ │ │ ├── brad_save_sun_index_process.cxx │ │ │ │ ├── brad_set_sun_angles_process.cxx │ │ │ │ ├── brad_sun_dir_bin_process.cxx │ │ │ │ ├── brad_train_histograms_process.cxx │ │ │ │ └── brad_update_joint_hist_3d_process.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── brip_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── brip_processes.h │ │ │ ├── brip_register.cxx │ │ │ ├── brip_register.h │ │ │ ├── processes │ │ │ │ ├── brip_blob_intersection_process.cxx │ │ │ │ ├── brip_blobwise_kl_div_process.cxx │ │ │ │ ├── brip_blobwise_mutual_info_process.cxx │ │ │ │ ├── brip_extrema_process.cxx │ │ │ │ ├── brip_image_mutual_info_process.cxx │ │ │ │ ├── brip_solve_gain_offset_process.cxx │ │ │ │ └── brip_truncate_nitf_bit_process.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── bvgl_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── bvgl_processes.h │ │ │ ├── bvgl_register.cxx │ │ │ ├── bvgl_register.h │ │ │ ├── processes │ │ │ │ ├── bvgl_generate_mask_process.cxx │ │ │ │ ├── bvgl_geo_index_region_resource_process.cxx │ │ │ │ └── bvgl_intersection_process.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── icam_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+icam_view_sphere_sptr-.cxx │ │ │ │ ├── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ └── brdb_value_t+vpgl_camera_double_sptr-.cxx │ │ │ ├── icam_processes.h │ │ │ ├── icam_register.cxx │ │ │ ├── icam_register.h │ │ │ ├── processes │ │ │ │ ├── icam_correct_cam_rotation_process.cxx │ │ │ │ ├── icam_create_view_sphere_process.cxx │ │ │ │ └── icam_register_image_process.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── ihog_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── ihog_processes.h │ │ │ ├── ihog_register.cxx │ │ │ ├── ihog_register.h │ │ │ ├── processes │ │ │ │ ├── ihog_compute_mi_cost_surface_process.cxx │ │ │ │ ├── ihog_mutual_information_process.cxx │ │ │ │ └── ihog_register_translational_process.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── sdet_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ └── brdb_value_t+sdet_texture_classifier_sptr-.cxx │ │ │ ├── processes │ │ │ │ ├── sdet_create_texture_classifier_process.cxx │ │ │ │ ├── sdet_detect_edge_tangent_interp_process.cxx │ │ │ │ ├── sdet_detect_edge_tangent_interp_process.h │ │ │ │ ├── sdet_detect_edge_tangent_process.cxx │ │ │ │ ├── sdet_detect_edge_tangent_process.h │ │ │ │ ├── sdet_detect_edges_process.cxx │ │ │ │ ├── sdet_detect_edges_process.h │ │ │ │ ├── sdet_detect_third_order_edges_process.cxx │ │ │ │ ├── sdet_detect_third_order_edges_process.h │ │ │ │ ├── sdet_exp_img_classifier_process.cxx │ │ │ │ ├── sdet_filter_bank_processes.cxx │ │ │ │ ├── sdet_print_texton_dict_process.cxx │ │ │ │ ├── sdet_segment_image_process.cxx │ │ │ │ ├── sdet_segment_image_process.h │ │ │ │ ├── sdet_texture_classifier_kernel_margin_process.cxx │ │ │ │ ├── sdet_texture_classifier_process.cxx │ │ │ │ ├── sdet_texture_classifier_process2.cxx │ │ │ │ ├── sdet_texture_classifier_roc_process.cxx │ │ │ │ ├── sdet_texture_classify_satellite_clouds.cxx │ │ │ │ └── sdet_texture_training_process.cxx │ │ │ ├── sdet_processes.h │ │ │ ├── sdet_register.cxx │ │ │ ├── sdet_register.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── vidl_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+vidl_istream_sptr-.cxx │ │ │ │ ├── brdb_value_t+vidl_ostream_sptr-.cxx │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ ├── processes │ │ │ │ ├── vidl_close_istream_process.cxx │ │ │ │ ├── vidl_close_ostream_process.cxx │ │ │ │ ├── vidl_get_frame_istream_process.cxx │ │ │ │ ├── vidl_open_dshow_istream_process.cxx │ │ │ │ ├── vidl_open_istream_process.cxx │ │ │ │ ├── vidl_open_ostream_process.cxx │ │ │ │ └── vidl_put_frame_ostream_process.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── vidl_io_istream.cxx │ │ │ ├── vidl_io_istream.h │ │ │ ├── vidl_io_ostream.cxx │ │ │ ├── vidl_io_ostream.h │ │ │ ├── vidl_pro_utils.cxx │ │ │ ├── vidl_pro_utils.h │ │ │ ├── vidl_processes.h │ │ │ ├── vidl_register.cxx │ │ │ └── vidl_register.h │ │ │ ├── vil_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+bil_raw_image_istream_sptr-.cxx │ │ │ │ ├── brdb_value_t+vil_image_resource_sptr-.cxx │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ ├── processes │ │ │ │ ├── bil_compass_edge_detector_process.cxx │ │ │ │ ├── bil_create_arf_image_istream_process.cxx │ │ │ │ ├── bil_create_raw_image_istream_process.cxx │ │ │ │ ├── bil_read_CLIF07_data_process.cxx │ │ │ │ ├── vil_BGR_to_RGB_process.cxx │ │ │ │ ├── vil_EO_IR_combine_process.cxx │ │ │ │ ├── vil_binary_edge_detection_process.cxx │ │ │ │ ├── vil_binary_image_op_process.cxx │ │ │ │ ├── vil_blob_detection_process.cxx │ │ │ │ ├── vil_block_entropy_process.cxx │ │ │ │ ├── vil_combine_grey_images_process.cxx │ │ │ │ ├── vil_convert_pixel_type_process.cxx │ │ │ │ ├── vil_convert_to_n_planes_process.cxx │ │ │ │ ├── vil_crop_image_process.cxx │ │ │ │ ├── vil_debayer_BGGR_to_RGB_process.cxx │ │ │ │ ├── vil_edge_detection_process.cxx │ │ │ │ ├── vil_fill_holes_in_regions_process.cxx │ │ │ │ ├── vil_filter_image_process.cxx │ │ │ │ ├── vil_gaussian_process.cxx │ │ │ │ ├── vil_gradient_angle_process.cxx │ │ │ │ ├── vil_gradient_process.cxx │ │ │ │ ├── vil_grey_to_rgb_process.cxx │ │ │ │ ├── vil_histogram_equalize_process.cxx │ │ │ │ ├── vil_image_dilate_disk_process.cxx │ │ │ │ ├── vil_image_mean_and_variance_process.cxx │ │ │ │ ├── vil_image_mean_process.cxx │ │ │ │ ├── vil_image_normalise_process.cxx │ │ │ │ ├── vil_image_pair_process.cxx │ │ │ │ ├── vil_image_range_process.cxx │ │ │ │ ├── vil_image_size_process.cxx │ │ │ │ ├── vil_image_ssd_process.cxx │ │ │ │ ├── vil_image_sum_process.cxx │ │ │ │ ├── vil_init_byte_image_process.cxx │ │ │ │ ├── vil_init_float_image_process.cxx │ │ │ │ ├── vil_invert_float_image_process.cxx │ │ │ │ ├── vil_load_from_ascii_process.cxx │ │ │ │ ├── vil_load_image_resource_process.cxx │ │ │ │ ├── vil_load_image_view_binary_process.cxx │ │ │ │ ├── vil_load_image_view_process.cxx │ │ │ │ ├── vil_map_image_binary_process.cxx │ │ │ │ ├── vil_map_image_process.cxx │ │ │ │ ├── vil_mask_image_using_ids_process.cxx │ │ │ │ ├── vil_median_filter_process.cxx │ │ │ │ ├── vil_nitf_bits_per_pixel_process.cxx │ │ │ │ ├── vil_nitf_date_time_process.cxx │ │ │ │ ├── vil_nitf_remove_margin_process.cxx │ │ │ │ ├── vil_pixel_value_process.cxx │ │ │ │ ├── vil_pixelwise_roc_process.cxx │ │ │ │ ├── vil_resample_process.cxx │ │ │ │ ├── vil_rgb_to_grey_process.cxx │ │ │ │ ├── vil_rgbi_to_grey_process.cxx │ │ │ │ ├── vil_save_image_view_binary_process.cxx │ │ │ │ ├── vil_save_image_view_process.cxx │ │ │ │ ├── vil_scale_and_offset_values_process.cxx │ │ │ │ ├── vil_set_float_image_pixel_process.cxx │ │ │ │ ├── vil_shadow_detection_process.cxx │ │ │ │ ├── vil_shadow_ridge_detection_process.cxx │ │ │ │ ├── vil_stretch_image_process.cxx │ │ │ │ ├── vil_threshold_image_process.cxx │ │ │ │ ├── vil_truncate_image_process.cxx │ │ │ │ └── vil_two_planes_composite_process.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_vil_convert_to_n_planes_process.cxx │ │ │ │ └── test_vil_crop_image_process.cxx │ │ │ ├── vil_math_functors.h │ │ │ ├── vil_processes.h │ │ │ ├── vil_register.cxx │ │ │ └── vil_register.h │ │ │ └── vpgl_pro │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ ├── brdb_value_t+vpgl_camera_double_sptr-.cxx │ │ │ └── brdb_value_t+vpgl_lvcs_sptr-.cxx │ │ │ ├── processes │ │ │ ├── bpgl_transform_perspective_cameras_process.cxx │ │ │ ├── vpgl_compute_affine_from_rational_process.cxx │ │ │ ├── vpgl_compute_image_to_world_homography_process.cxx │ │ │ ├── vpgl_compute_persp_cam_pa_covariance_process.cxx │ │ │ ├── vpgl_compute_utm_zone_process.cxx │ │ │ ├── vpgl_convert_local_rational_to_generic_process.cxx │ │ │ ├── vpgl_convert_local_rational_to_perspective_process.cxx │ │ │ ├── vpgl_convert_local_to_global_coordinates_array_process.cxx │ │ │ ├── vpgl_convert_local_to_global_coordinates_process.cxx │ │ │ ├── vpgl_convert_to_generic_camera_process.cxx │ │ │ ├── vpgl_convert_to_local_coordinates_process.cxx │ │ │ ├── vpgl_convert_to_local_rational_camera_process.cxx │ │ │ ├── vpgl_correct_rational_camera_process.cxx │ │ │ ├── vpgl_correct_rational_cameras_multi_corr_process.cxx │ │ │ ├── vpgl_correct_rational_cameras_process.cxx │ │ │ ├── vpgl_create_local_rational_camera_nitf_process.cxx │ │ │ ├── vpgl_create_local_rational_camera_process.cxx │ │ │ ├── vpgl_create_lvcs_process.cxx │ │ │ ├── vpgl_create_perspective_camera_process.cxx │ │ │ ├── vpgl_crop_img_using_3d_box_process.cxx │ │ │ ├── vpgl_export_cameras_to_nvm_process.cxx │ │ │ ├── vpgl_generate_3d_point_from_cams_process.cxx │ │ │ ├── vpgl_generate_3d_point_process_from_depth_process.cxx │ │ │ ├── vpgl_generate_xyz_from_depth_image_process.cxx │ │ │ ├── vpgl_geo_camera_processes.cxx │ │ │ ├── vpgl_get_backproject_ray_process.cxx │ │ │ ├── vpgl_get_bounding_box_process.cxx │ │ │ ├── vpgl_get_perspective_cam_center_process.cxx │ │ │ ├── vpgl_get_rpc_offsets_process.cxx │ │ │ ├── vpgl_get_view_direction_at_point_process.cxx │ │ │ ├── vpgl_interpolate_perspective_cameras_process.cxx │ │ │ ├── vpgl_isfm_rational_camera_process.cxx │ │ │ ├── vpgl_isfm_rational_camera_seed_process.cxx │ │ │ ├── vpgl_isfm_rational_camera_with_initial_process.cxx │ │ │ ├── vpgl_load_affine_camera_process.cxx │ │ │ ├── vpgl_load_local_rational_camera_process.cxx │ │ │ ├── vpgl_load_lvcs_process.cxx │ │ │ ├── vpgl_load_perspective_camera_process.cxx │ │ │ ├── vpgl_load_proj_camera_process.cxx │ │ │ ├── vpgl_load_rational_camera_nitf_process.cxx │ │ │ ├── vpgl_load_rational_camera_process.cxx │ │ │ ├── vpgl_nitf_camera_coverage_process.cxx │ │ │ ├── vpgl_nitf_footprint_process.cxx │ │ │ ├── vpgl_persp_cam_from_photo_overlay_process.cxx │ │ │ ├── vpgl_perspective_cam_distance_processes.cxx │ │ │ ├── vpgl_perturb_perspective_camera_processes.cxx │ │ │ ├── vpgl_project_process.cxx │ │ │ ├── vpgl_projective_to_rational_camera_process.cxx │ │ │ ├── vpgl_rational_camera_process.cxx │ │ │ ├── vpgl_rectify_images_process.cxx │ │ │ ├── vpgl_resample_perspective_camera_process.cxx │ │ │ ├── vpgl_save_lvcs_process.cxx │ │ │ ├── vpgl_save_perspective_camera_process.cxx │ │ │ ├── vpgl_save_perspective_camera_vrml_process.cxx │ │ │ ├── vpgl_save_rational_camera_process.cxx │ │ │ └── vpgl_scale_perspective_camera_process.cxx │ │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ │ │ ├── vpgl_processes.h │ │ │ ├── vpgl_register.cxx │ │ │ └── vpgl_register.h │ ├── bseg │ │ ├── CMakeLists.txt │ │ ├── bapl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bapl_lowe_pyramid+float-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bapl_conn_table-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bapl_keypoint_set-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_bbf_node-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_conn_table-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_dense_sift-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_dsift-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_keypoint-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_keypoint_set-.cxx │ │ │ │ ├── vbl_smart_ptr+bapl_lowe_pyramid_set-.cxx │ │ │ │ └── vnl_vector_fixed+double.128-.cxx │ │ │ ├── bapl_affine2d_est.cxx │ │ │ ├── bapl_affine2d_est.h │ │ │ ├── bapl_affine_roi.cxx │ │ │ ├── bapl_affine_roi.h │ │ │ ├── bapl_affine_transform.cxx │ │ │ ├── bapl_affine_transform.h │ │ │ ├── bapl_bbf_tree.cxx │ │ │ ├── bapl_bbf_tree.h │ │ │ ├── bapl_connectivity.cxx │ │ │ ├── bapl_connectivity.h │ │ │ ├── bapl_connectivity_sptr.h │ │ │ ├── bapl_dense_sift.cxx │ │ │ ├── bapl_dense_sift.h │ │ │ ├── bapl_dense_sift_sptr.h │ │ │ ├── bapl_dsift.cxx │ │ │ ├── bapl_dsift.h │ │ │ ├── bapl_dsift_sptr.h │ │ │ ├── bapl_keypoint.cxx │ │ │ ├── bapl_keypoint.h │ │ │ ├── bapl_keypoint_extractor.cxx │ │ │ ├── bapl_keypoint_extractor.h │ │ │ ├── bapl_keypoint_set.cxx │ │ │ ├── bapl_keypoint_set.h │ │ │ ├── bapl_keypoint_set_sptr.h │ │ │ ├── bapl_keypoint_sptr.h │ │ │ ├── bapl_lowe_cluster.cxx │ │ │ ├── bapl_lowe_cluster.h │ │ │ ├── bapl_lowe_keypoint.cxx │ │ │ ├── bapl_lowe_keypoint.h │ │ │ ├── bapl_lowe_keypoint_sptr.h │ │ │ ├── bapl_lowe_pyramid.h │ │ │ ├── bapl_lowe_pyramid.hxx │ │ │ ├── bapl_lowe_pyramid_set.cxx │ │ │ ├── bapl_lowe_pyramid_set.h │ │ │ ├── bapl_lowe_pyramid_set_sptr.h │ │ │ ├── bapl_mi_matcher.cxx │ │ │ ├── bapl_mi_matcher.h │ │ │ ├── bapl_mi_matcher_params.cxx │ │ │ ├── bapl_mi_matcher_params.h │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bapl_draw_keypoints.cxx │ │ │ │ ├── bapl_lowe_recognizer.cxx │ │ │ │ └── bapl_make_pyramids.cxx │ │ │ ├── introduction_doxy.txt │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── vbl_io_smart_ptr+bapl_dsift-.cxx │ │ │ │ ├── bapl_io_dsift.cxx │ │ │ │ ├── bapl_io_dsift.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+bapl_conn_table_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+bapl_keypoint_set_sptr-.cxx │ │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ ├── bapl_processes.h │ │ │ │ ├── bapl_register.cxx │ │ │ │ ├── bapl_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bapl_connectivity_processes.cxx │ │ │ │ │ ├── bapl_extract_keypoints_process.cxx │ │ │ │ │ └── bapl_match_keypoints_process.cxx │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── vxl_bundler_kermit.py │ │ │ │ └── vxl_bundler_video.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── frame000.key │ │ │ │ ├── frame001.key │ │ │ │ ├── kermit000.jpg │ │ │ │ ├── matches_with_ids.txt │ │ │ │ ├── test_compute_tracks.cxx │ │ │ │ ├── test_dense_sift.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_lowe_pyramid_set.cxx │ │ │ │ ├── test_match_keypoints.cxx │ │ │ │ ├── test_matcher.cxx │ │ │ │ ├── test_roi.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ └── test_transform.cxx │ │ ├── bbgm │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bbgm_feature_image+bbgm_mask_feature-.cxx │ │ │ │ ├── bbgm_feature_image+bbgm_mask_pair_feature-.cxx │ │ │ │ ├── bbgm_feature_image+bbgm_pair_group_feature-.cxx │ │ │ │ ├── bbgm_image_of+bsta_mixture+bsta_num_obs+bsta_gauss_if3---.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_gauss_if3--.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture+bsta_num_obs+bsta_gauss_ff3----.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture+bsta_num_obs+bsta_gauss_if3----.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture+bsta_num_obs+bsta_gauss_sf1----.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture+bsta_num_obs+bsta_gauss_sf3----.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ ├── bbgm_image_of+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ ├── bbgm_image_of+bsta_parzen_sphere+float.3--.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbgm_feature_image_base-.cxx │ │ │ │ ├── vbl_io_smart_ptr+bbgm_image_base-.cxx │ │ │ │ ├── vbl_smart_ptr+bbgm_feature_image_base-.cxx │ │ │ │ ├── vbl_smart_ptr+bbgm_image_base-.cxx │ │ │ │ ├── vbl_smart_ptr+bbgm_view_maker_base-.cxx │ │ │ │ ├── vbl_smart_ptr+bbgm_viewer-.cxx │ │ │ │ ├── vsl_binary_loader+bbgm_feature_image_base-.cxx │ │ │ │ ├── vsl_binary_loader+bbgm_image_base-.cxx │ │ │ │ ├── vsl_vector_io+vbl_array_2d+float--.cxx │ │ │ │ └── vsl_vector_io+vbl_array_2d+int--.cxx │ │ │ ├── bbgm_apply.h │ │ │ ├── bbgm_detect.h │ │ │ ├── bbgm_feature_image.cxx │ │ │ ├── bbgm_feature_image.h │ │ │ ├── bbgm_feature_image.hxx │ │ │ ├── bbgm_feature_image_sptr.h │ │ │ ├── bbgm_features.cxx │ │ │ ├── bbgm_features.h │ │ │ ├── bbgm_image_of.cxx │ │ │ ├── bbgm_image_of.h │ │ │ ├── bbgm_image_of.hxx │ │ │ ├── bbgm_image_sptr.h │ │ │ ├── bbgm_loader.cxx │ │ │ ├── bbgm_loader.h │ │ │ ├── bbgm_measure.h │ │ │ ├── bbgm_planes_to_sample.h │ │ │ ├── bbgm_update.h │ │ │ ├── bbgm_view_maker.h │ │ │ ├── bbgm_view_maker_sptr.h │ │ │ ├── bbgm_viewer.cxx │ │ │ ├── bbgm_viewer.h │ │ │ ├── bbgm_viewer_sptr.h │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── brdb_value_t+bbgm_image_sptr-.cxx │ │ │ │ ├── bbgm_processes.h │ │ │ │ ├── bbgm_register.cxx │ │ │ │ ├── bbgm_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bbgm_display_dist_image_process.cxx │ │ │ │ │ ├── bbgm_load_image_of_process.cxx │ │ │ │ │ ├── bbgm_local_frame_trans_process.cxx │ │ │ │ │ ├── bbgm_measure_process.cxx │ │ │ │ │ ├── bbgm_save_image_of_process.cxx │ │ │ │ │ ├── bbgm_update_dist_image_process.cxx │ │ │ │ │ ├── bbgm_update_dist_image_stream_process.cxx │ │ │ │ │ └── bbgm_update_parzen_dist_image_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_io.cxx │ │ │ │ │ ├── test_neighborhood_ops.cxx │ │ │ │ │ └── test_update_dist_image.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_bg_model_speed.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_measure.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bbgm_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── reg_bbgm.cxx │ │ │ ├── reg_bbgm.h │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ └── update_background_stream.py │ │ ├── bmdl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bmdl_classify+double-.cxx │ │ │ │ └── bmdl_classify+float-.cxx │ │ │ ├── bmdl_classify.h │ │ │ ├── bmdl_classify.hxx │ │ │ ├── bmdl_mesh.cxx │ │ │ ├── bmdl_mesh.h │ │ │ ├── introduction_doxy.txt │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ ├── bmdl_defs.h │ │ │ │ ├── bmdl_processes.h │ │ │ │ ├── bmdl_register.cxx │ │ │ │ ├── bmdl_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bmdl_classify_process.cxx │ │ │ │ │ ├── bmdl_generate_mesh_process.cxx │ │ │ │ │ ├── bmdl_lidar_roi_process.cxx │ │ │ │ │ └── bmdl_trace_boundaries_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── classify_params.xml │ │ │ │ │ ├── first_ret.tif │ │ │ │ │ ├── ground.tif │ │ │ │ │ ├── height.tif │ │ │ │ │ ├── label.tif │ │ │ │ │ ├── last_ret.tif │ │ │ │ │ ├── test_bmdl_classify_process.cxx │ │ │ │ │ ├── test_bmdl_generate_mesh_process.cxx │ │ │ │ │ ├── test_bmdl_trace_boundaries_process.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ └── test_include.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── bmdl_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── bmdl.py │ │ │ ├── bmdl_tiled.py │ │ │ ├── modeling_params.xml │ │ │ ├── reg_bmdl.cxx │ │ │ ├── reg_bmdl.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── boct │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── boct_loc_code+short-.cxx │ │ │ │ ├── boct_test_util+short.vgl_point_3d+double--.cxx │ │ │ │ ├── boct_tree+short.bool-.cxx │ │ │ │ ├── boct_tree+short.char-.cxx │ │ │ │ ├── boct_tree+short.float-.cxx │ │ │ │ ├── boct_tree+short.int-.cxx │ │ │ │ ├── boct_tree+short.vgl_point_3d+double--.cxx │ │ │ │ ├── boct_tree+short.vnl_vector_fixed+float.2--.cxx │ │ │ │ ├── boct_tree_cell+short.bool-.cxx │ │ │ │ ├── boct_tree_cell+short.char-.cxx │ │ │ │ ├── boct_tree_cell+short.float-.cxx │ │ │ │ ├── boct_tree_cell+short.int-.cxx │ │ │ │ ├── boct_tree_cell+short.vgl_point_3d+double--.cxx │ │ │ │ ├── boct_tree_cell+short.vnl_vector_fixed+float.2--.cxx │ │ │ │ └── boct_tree_cell_reader+short.float-.cxx │ │ │ ├── boct_bit_tree.cxx │ │ │ ├── boct_bit_tree.h │ │ │ ├── boct_loc_code.h │ │ │ ├── boct_loc_code.hxx │ │ │ ├── boct_test_util.h │ │ │ ├── boct_test_util.hxx │ │ │ ├── boct_tree.h │ │ │ ├── boct_tree.hxx │ │ │ ├── boct_tree_cell.cxx │ │ │ ├── boct_tree_cell.h │ │ │ ├── boct_tree_cell.hxx │ │ │ ├── boct_tree_cell_reader.h │ │ │ ├── boct_tree_cell_reader.hxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_binary_io.cxx │ │ │ │ ├── test_bit_tree.cxx │ │ │ │ ├── test_clone_tree.cxx │ │ │ │ ├── test_create_tree.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_find_neighbors.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_locate_point.cxx │ │ │ │ ├── test_locate_region.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ └── test_tree_cell_reader.cxx │ │ │ └── util │ │ │ │ ├── boct_clone_tree.h │ │ │ │ └── boct_construct_tree.h │ │ ├── boxm │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── boct_tree+short.bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ ├── boct_tree+short.vnl_vector_fixed+double.10--.cxx │ │ │ │ ├── boct_tree+short.vnl_vector_fixed+float.10--.cxx │ │ │ │ ├── boct_tree+short.vnl_vector_fixed+float.3--.cxx │ │ │ │ ├── boct_tree_cell+short.bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ ├── boxm_block+boct_tree+short.bool--.cxx │ │ │ │ ├── boxm_block+boct_tree+short.bsta_num_obs+bsta_gauss_sf1---.cxx │ │ │ │ ├── boxm_block+boct_tree+short.char--.cxx │ │ │ │ ├── boxm_block+boct_tree+short.float--.cxx │ │ │ │ ├── boxm_block+boct_tree+short.int--.cxx │ │ │ │ ├── boxm_block+boct_tree+short.vgl_point_3d+double---.cxx │ │ │ │ ├── boxm_block+boct_tree+short.vnl_vector_fixed+double.10---.cxx │ │ │ │ ├── boxm_block+boct_tree+short.vnl_vector_fixed+float.10---.cxx │ │ │ │ ├── boxm_block+boct_tree+short.vnl_vector_fixed+float.3---.cxx │ │ │ │ ├── boxm_block_iterator+boct_tree+short.bool--.cxx │ │ │ │ ├── boxm_block_iterator+boct_tree+short.bsta_num_obs+bsta_gauss_sf1---.cxx │ │ │ │ ├── boxm_block_iterator+boct_tree+short.char--.cxx │ │ │ │ ├── boxm_block_iterator+boct_tree+short.float--.cxx │ │ │ │ ├── boxm_block_iterator+boct_tree+short.int--.cxx │ │ │ │ ├── boxm_block_iterator+boct_tree+short.vgl_point_3d+double---.cxx │ │ │ │ ├── boxm_scene+boct_tree+short.bool--.cxx │ │ │ │ ├── boxm_scene+boct_tree+short.bsta_num_obs+bsta_gauss_sf1---.cxx │ │ │ │ ├── boxm_scene+boct_tree+short.char--.cxx │ │ │ │ ├── boxm_scene+boct_tree+short.float--.cxx │ │ │ │ ├── boxm_scene+boct_tree+short.int--.cxx │ │ │ │ ├── boxm_scene+boct_tree+short.vgl_point_3d+double---.cxx │ │ │ │ ├── brdb_value_t+boxm_scene_base_sptr-.cxx │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.bool--~-.cxx │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.bsta_num_obs+bsta_gauss_sf1---~-.cxx │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.char--~-.cxx │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.float--~-.cxx │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.int--~-.cxx │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.vgl_point_3d+double---~-.cxx │ │ │ │ ├── vbl_array_3d+vsl_b_ifstream~-.cxx │ │ │ │ ├── vbl_io_smart_ptr+boxm_scene_base-.cxx │ │ │ │ └── vbl_smart_ptr+boxm_scene_base-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm_compute_scene_difference.h │ │ │ │ ├── boxm_compute_scene_statistics.h │ │ │ │ ├── boxm_crop_scene.h │ │ │ │ ├── boxm_fill_in_mesh.h │ │ │ │ ├── boxm_fill_internal_cells.h │ │ │ │ ├── boxm_init_scene.h │ │ │ │ ├── boxm_linear_operations.h │ │ │ │ ├── boxm_merge_mog.cxx │ │ │ │ ├── boxm_merge_mog.h │ │ │ │ ├── boxm_refine.h │ │ │ │ ├── boxm_save_block_raw.h │ │ │ │ ├── boxm_save_scene_raw.h │ │ │ │ ├── boxm_save_scene_raw_general.h │ │ │ │ ├── boxm_scene_levels_utils.h │ │ │ │ ├── boxm_split_sample.h │ │ │ │ ├── boxm_upload_mesh.h │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm_algo_processes.h │ │ │ │ │ ├── boxm_algo_register.cxx │ │ │ │ │ ├── boxm_algo_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── boxm_compute_entropy_process.cxx │ │ │ │ │ │ ├── boxm_compute_expected_color_scene_process.cxx │ │ │ │ │ │ ├── boxm_compute_scene_difference_process.cxx │ │ │ │ │ │ ├── boxm_create_scene_from_ply_process.cxx │ │ │ │ │ │ ├── boxm_describe_scene_process.cxx │ │ │ │ │ │ ├── boxm_explore_cells_at_level_process.cxx │ │ │ │ │ │ ├── boxm_fill_internal_cells_process.cxx │ │ │ │ │ │ ├── boxm_init_scene_process.cxx │ │ │ │ │ │ ├── boxm_line_backproject_process.cxx │ │ │ │ │ │ ├── boxm_linear_combination_process.cxx │ │ │ │ │ │ ├── boxm_merge_mixtures_process.cxx │ │ │ │ │ │ ├── boxm_refine_scene_process.cxx │ │ │ │ │ │ ├── boxm_remove_level0_process.cxx │ │ │ │ │ │ ├── boxm_render_expected_edge_vrml_process.cxx │ │ │ │ │ │ ├── boxm_replace_const_app_process.cxx │ │ │ │ │ │ ├── boxm_roi_init_process.cxx │ │ │ │ │ │ ├── boxm_roi_init_rational_camera_process.cxx │ │ │ │ │ │ ├── boxm_save_occupancy_raw_process.cxx │ │ │ │ │ │ ├── boxm_save_scene_raw_process.cxx │ │ │ │ │ │ └── boxm_split_scene_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── rt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── boxm_edge_tangent_updater+short.float.float-.cxx │ │ │ │ │ │ ├── boxm_edge_updater+short.float.float-.cxx │ │ │ │ │ │ ├── boxm_opt2_optimizer+short.BOXM_APM_MOG_GREY.BOXM_AUX_OPT2_GREY-.cxx │ │ │ │ │ │ ├── boxm_opt2_optimizer+short.BOXM_APM_SIMPLE_GREY.BOXM_AUX_OPT2_GREY-.cxx │ │ │ │ │ │ ├── boxm_opt3_optimizer+short.BOXM_APM_MOG_GREY.BOXM_APM_MOG_GREY-.cxx │ │ │ │ │ │ ├── boxm_opt3_optimizer+short.BOXM_APM_SIMPLE_GREY.BOXM_APM_MOG_GREY-.cxx │ │ │ │ │ │ ├── boxm_opt_rt_bayesian_optimizer+short.BOXM_APM_MOG_GREY.BOXM_AUX_OPT_RT_GREY-.cxx │ │ │ │ │ │ ├── boxm_opt_rt_bayesian_optimizer+short.BOXM_APM_SIMPLE_GREY.BOXM_AUX_OPT_RT_GREY-.cxx │ │ │ │ │ │ ├── boxm_shadow_app_initializer+short.BOXM_APM_SIMPLE_GREY.BOXM_AUX_OPT_RT_GREY-.cxx │ │ │ │ │ │ ├── boxm_shadow_bayes_optimizer+short.BOXM_APM_SIMPLE_GREY.BOXM_AUX_OPT_RT_GREY-.cxx │ │ │ │ │ │ └── bpgl_camera_estimator+boxm_expected_edge_functor+short.boxm_inf_line_sample+float---.cxx │ │ │ │ │ ├── boxm_change_3d_functor.h │ │ │ │ │ ├── boxm_change_probability_functor.h │ │ │ │ │ ├── boxm_compute_num_rays_statistics.h │ │ │ │ │ ├── boxm_edge_tangent_updater.h │ │ │ │ │ ├── boxm_edge_tangent_updater.hxx │ │ │ │ │ ├── boxm_edge_updater.h │ │ │ │ │ ├── boxm_edge_updater.hxx │ │ │ │ │ ├── boxm_expected_edge_functor.h │ │ │ │ │ ├── boxm_generate_edge_sample_functor.h │ │ │ │ │ ├── boxm_generate_edge_tangent_sample_functor.h │ │ │ │ │ ├── boxm_generate_opt2_sample_functor.h │ │ │ │ │ ├── boxm_generate_opt3_sample_functor.h │ │ │ │ │ ├── boxm_generate_opt_sample_functor.h │ │ │ │ │ ├── boxm_generate_shadow_sample_functor.h │ │ │ │ │ ├── boxm_opt2_optimizer.h │ │ │ │ │ ├── boxm_opt2_optimizer.hxx │ │ │ │ │ ├── boxm_opt3_optimizer.h │ │ │ │ │ ├── boxm_opt3_optimizer.hxx │ │ │ │ │ ├── boxm_opt_appearance_estimator.h │ │ │ │ │ ├── boxm_opt_rt_bayesian_optimizer.h │ │ │ │ │ ├── boxm_opt_rt_bayesian_optimizer.hxx │ │ │ │ │ ├── boxm_pre_infinity_functor.h │ │ │ │ │ ├── boxm_render_expected_depth_functor.h │ │ │ │ │ ├── boxm_render_expected_edge_image_functor.h │ │ │ │ │ ├── boxm_render_expected_edge_tangent_image_functor.h │ │ │ │ │ ├── boxm_render_expected_image_functor.h │ │ │ │ │ ├── boxm_render_expected_shadow_image_functor.h │ │ │ │ │ ├── boxm_rpc_registration.h │ │ │ │ │ ├── boxm_shadow_app_initializer.h │ │ │ │ │ ├── boxm_shadow_app_initializer.hxx │ │ │ │ │ ├── boxm_shadow_appearance_estimator.h │ │ │ │ │ ├── boxm_shadow_bayes_optimizer.h │ │ │ │ │ ├── boxm_shadow_bayes_optimizer.hxx │ │ │ │ │ ├── boxm_sun_vis_prob_functor.h │ │ │ │ │ ├── boxm_update_image_functor.h │ │ │ │ │ ├── dummy.cxx │ │ │ │ │ ├── pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── boxm_algo_rt_processes.h │ │ │ │ │ │ ├── boxm_algo_rt_register.cxx │ │ │ │ │ │ ├── boxm_algo_rt_register.h │ │ │ │ │ │ ├── processes │ │ │ │ │ │ │ ├── boxm_change_probabilty_process.cxx │ │ │ │ │ │ │ ├── boxm_edge_update_process.cxx │ │ │ │ │ │ │ ├── boxm_estimate_camera_process.cxx │ │ │ │ │ │ │ ├── boxm_generate_edge_samples_process.cxx │ │ │ │ │ │ │ ├── boxm_generate_opt2_samples_process.cxx │ │ │ │ │ │ │ ├── boxm_generate_opt3_samples_process.cxx │ │ │ │ │ │ │ ├── boxm_generate_opt_samples_process.cxx │ │ │ │ │ │ │ ├── boxm_opt2_update_process.cxx │ │ │ │ │ │ │ ├── boxm_opt3_update_process.cxx │ │ │ │ │ │ │ ├── boxm_opt_bayesian_update_process.cxx │ │ │ │ │ │ │ ├── boxm_ray_statistics_process.cxx │ │ │ │ │ │ │ ├── boxm_render_expected_depth_rt_process.cxx │ │ │ │ │ │ │ ├── boxm_render_expected_edge_process.cxx │ │ │ │ │ │ │ ├── boxm_render_expected_rt_process.cxx │ │ │ │ │ │ │ ├── boxm_rpc_registration_process.cxx │ │ │ │ │ │ │ └── boxm_update_rt_process.cxx │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── test_include.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_bayesian_optimizer.cxx │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_edges.cxx │ │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ │ ├── test_shadow_appearance.cxx │ │ │ │ │ │ └── test_template_include.cxx │ │ │ │ ├── sp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm_compute_volume_visibility.h │ │ │ │ │ ├── boxm_depth_image_triangle.h │ │ │ │ │ ├── boxm_render_image.h │ │ │ │ │ ├── boxm_render_image_triangle.h │ │ │ │ │ ├── boxm_update.h │ │ │ │ │ ├── boxm_update_triangle.h │ │ │ │ │ ├── dummy.cxx │ │ │ │ │ ├── pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Templates │ │ │ │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ │ │ ├── boxm_algo_sp_processes.h │ │ │ │ │ │ ├── boxm_algo_sp_register.cxx │ │ │ │ │ │ ├── boxm_algo_sp_register.h │ │ │ │ │ │ ├── processes │ │ │ │ │ │ │ ├── boxm_render_expected_process.cxx │ │ │ │ │ │ │ ├── boxm_update_process.cxx │ │ │ │ │ │ │ └── boxm_volume_visibility_process.cxx │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── test_include.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_compute_visibility.cxx │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ │ ├── test_render_image.cxx │ │ │ │ │ │ ├── test_update.cxx │ │ │ │ │ │ └── test_update_multi_bin.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_boxm_fill_internal_cells.cxx │ │ │ │ │ ├── test_boxm_scene_crop.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_fill_in_mesh.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_linear_operations.cxx │ │ │ │ │ ├── test_remove_level0.cxx │ │ │ │ │ ├── test_save_scene_raw.cxx │ │ │ │ │ ├── test_upload_mesh.cxx │ │ │ │ │ ├── test_utils.cxx │ │ │ │ │ └── test_utils.h │ │ │ ├── basic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.bsta_num_obs+bsta_gauss_sf1---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.float--.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.int--.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.vgl_point_3d+double---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.boxm_edge_sample+float---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.boxm_edge_tangent_sample+float---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.boxm_sample+BOXM_APM_MOB_GREY---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.boxm_sample+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.boxm_sample+BOXM_APM_SIMPLE_GREY---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_iterator+boct_tree+short.vgl_point_3d+double---.cxx │ │ │ │ │ ├── boxm_block_vis_graph_node+boct_tree+short.vgl_point_3d+double---.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_edge_sample+float--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_edge_tangent_sample+float--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_inf_line_sample+float--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_sample+BOXM_APM_MOB_GREY--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_sample+BOXM_APM_SIMPLE_GREY--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boxm_cell_vis_graph_iterator+short.vgl_point_3d+double--.cxx │ │ │ │ │ ├── brdb_value_t+boxm_array_1d_float_sptr-.cxx │ │ │ │ │ ├── vbl_io_smart_ptr+boxm_array_1d_float-.cxx │ │ │ │ │ └── vbl_smart_ptr+boxm_array_1d_float-.cxx │ │ │ │ ├── boxm_block_vis_graph_iterator.h │ │ │ │ ├── boxm_block_vis_graph_iterator.hxx │ │ │ │ ├── boxm_block_vis_graph_node.h │ │ │ │ ├── boxm_cell_vis_graph_iterator.h │ │ │ │ ├── boxm_cell_vis_graph_iterator.hxx │ │ │ │ ├── boxm_num_rays_functor.h │ │ │ │ ├── boxm_raytrace_function.h │ │ │ │ ├── boxm_seg_length_functor.h │ │ │ │ ├── boxm_util_data_types.cxx │ │ │ │ ├── boxm_util_data_types.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_block_vis_graph.cxx │ │ │ │ │ ├── test_cell_vis_graph.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── boxm_apm_traits.cxx │ │ │ ├── boxm_apm_traits.h │ │ │ ├── boxm_aux_scene.h │ │ │ ├── boxm_aux_scene.hxx │ │ │ ├── boxm_aux_traits.h │ │ │ ├── boxm_block.h │ │ │ ├── boxm_block.hxx │ │ │ ├── boxm_export.h │ │ │ ├── boxm_io_scene_base.cxx │ │ │ ├── boxm_io_scene_base.h │ │ │ ├── boxm_scene.h │ │ │ ├── boxm_scene.hxx │ │ │ ├── boxm_scene_base.cxx │ │ │ ├── boxm_scene_base.h │ │ │ ├── boxm_scene_parser.cxx │ │ │ ├── boxm_scene_parser.h │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boct_tree+short.vnl_vector_fixed+float.3--.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.vnl_vector_fixed+float.3---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.vnl_vector_fixed+float.3---.cxx │ │ │ │ │ ├── brdb_value_t+boxm_scene_base_sptr-.cxx │ │ │ │ │ └── vbl_array_3d+boxm_block+boct_tree+short.vnl_vector_fixed+float.3---~-.cxx │ │ │ │ ├── boxm_processes.h │ │ │ │ ├── boxm_register.cxx │ │ │ │ ├── boxm_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── boxm_camera_viewing_scene_process.cxx │ │ │ │ │ ├── boxm_clean_scene_process.cxx │ │ │ │ │ ├── boxm_construct_scene_from_image_process.cxx │ │ │ │ │ ├── boxm_create_scene_process.cxx │ │ │ │ │ ├── boxm_force_write_blocks_process.cxx │ │ │ │ │ ├── boxm_load_scene_process.cxx │ │ │ │ │ ├── boxm_proj_local_cam_process.cxx │ │ │ │ │ └── boxm_upload_mesh_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── sample │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boct_tree+short.boxm_edge_sample+float--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_edge_tangent_sample+float--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_opt2_sample+float--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_rt_sample+float--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_sample+BOXM_APM_MOB_GREY--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_sample+BOXM_APM_SIMPLE_GREY--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boct_tree+short.boxm_scalar_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_edge_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_edge_tangent_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_opt2_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_rt_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_sample+BOXM_APM_MOB_GREY--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_sample+BOXM_APM_SIMPLE_GREY--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boct_tree_cell+short.boxm_scalar_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_edge_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_edge_tangent_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_inf_line_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_opt2_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_rt_sample+float--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_sample+BOXM_APM_MOB_GREY--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_scalar_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_edge_sample+float-.boxm_aux_edge_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_inf_line_sample+float-.boxm_edge_tangent_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_MOB_GREY-.boxm_rt_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_MOG_GREY-.boxm_opt2_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_MOG_GREY-.boxm_rt_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_MOG_GREY-.float-.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_SIMPLE_GREY-.boxm_opt2_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_SIMPLE_GREY-.boxm_rt_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_SIMPLE_GREY-.boxm_scalar_sample+float--.cxx │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_SIMPLE_GREY-.float-.cxx │ │ │ │ │ ├── boxm_aux_scene+short.float.boxm_edge_tangent_sample+float--.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_edge_sample+float---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_edge_tangent_sample+float---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_inf_line_sample+float---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_opt2_sample+float---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_rt_sample+float---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_sample+BOXM_APM_MOB_GREY---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_sample+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_sample+BOXM_APM_SIMPLE_GREY---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_scalar_sample+float---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.boxm_edge_sample+float---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.boxm_edge_tangent_sample+float---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.boxm_sample+BOXM_APM_MOB_GREY---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.boxm_sample+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.boxm_sample+BOXM_APM_SIMPLE_GREY---.cxx │ │ │ │ │ ├── boxm_block_iterator+boct_tree+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_edge_sample+float-.cxx │ │ │ │ │ ├── boxm_edge_tangent_sample+float-.cxx │ │ │ │ │ ├── boxm_inf_line_sample+float-.cxx │ │ │ │ │ ├── boxm_opt2_sample+float-.cxx │ │ │ │ │ ├── boxm_plane_obs+float-.cxx │ │ │ │ │ ├── boxm_rt_sample+float-.cxx │ │ │ │ │ ├── boxm_sample+BOXM_APM_MOB_GREY-.cxx │ │ │ │ │ ├── boxm_sample+BOXM_APM_MOG_GREY-.cxx │ │ │ │ │ ├── boxm_sample+BOXM_APM_SIMPLE_GREY-.cxx │ │ │ │ │ ├── boxm_sample_multi_bin+BOXM_APM_MOG_GREY-.cxx │ │ │ │ │ ├── boxm_scalar_sample+float-.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_edge_sample+float---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_edge_tangent_sample+float---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_opt2_sample+float---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_rt_sample+float---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_sample+BOXM_APM_MOB_GREY---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_sample+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_sample+BOXM_APM_SIMPLE_GREY---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_scalar_sample+float---.cxx │ │ │ │ │ ├── boxm_scene+boct_tree+short.int--.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_edge_sample+float---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_edge_tangent_sample+float---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_opt2_sample+float---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_rt_sample+float---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_sample+BOXM_APM_MOB_GREY---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_sample+BOXM_APM_MOG_GREY---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_sample+BOXM_APM_SIMPLE_GREY---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_sample_multi_bin+BOXM_APM_MOG_GREY---~-.cxx │ │ │ │ │ ├── vbl_array_3d+boxm_block+boct_tree+short.boxm_scalar_sample+float---~-.cxx │ │ │ │ │ └── vil_image_view+boxm_inf_line_sample+float--.cxx │ │ │ │ ├── algo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── boct_tree+short.boxm_opt3_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ │ ├── boct_tree_cell+short.boxm_opt3_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ │ ├── boct_tree_cell_reader+short.boxm_opt3_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_MOG_GREY-.boxm_opt3_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ │ ├── boxm_aux_scene+short.boxm_sample+BOXM_APM_SIMPLE_GREY-.boxm_opt3_sample+BOXM_APM_MOG_GREY--.cxx │ │ │ │ │ │ ├── boxm_block+boct_tree+short.boxm_opt3_sample+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ │ ├── boxm_opt3_sample+BOXM_APM_MOG_GREY-.cxx │ │ │ │ │ │ ├── boxm_scene+boct_tree+short.boxm_opt3_sample+BOXM_APM_MOG_GREY---.cxx │ │ │ │ │ │ └── vbl_array_3d+boxm_block+boct_tree+short.boxm_opt3_sample+BOXM_APM_MOG_GREY---~-.cxx │ │ │ │ │ ├── boxm_mob_grey_processor.cxx │ │ │ │ │ ├── boxm_mob_grey_processor.h │ │ │ │ │ ├── boxm_mog_grey_processor.cxx │ │ │ │ │ ├── boxm_mog_grey_processor.h │ │ │ │ │ ├── boxm_sigma_normalizer.cxx │ │ │ │ │ ├── boxm_sigma_normalizer.h │ │ │ │ │ ├── boxm_simple_grey_processor.cxx │ │ │ │ │ ├── boxm_simple_grey_processor.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ │ └── test_sigma_normalizer.cxx │ │ │ │ ├── boxm_edge_sample.h │ │ │ │ ├── boxm_edge_sample.hxx │ │ │ │ ├── boxm_edge_tangent_sample.h │ │ │ │ ├── boxm_edge_tangent_sample.hxx │ │ │ │ ├── boxm_inf_line_sample.h │ │ │ │ ├── boxm_inf_line_sample.hxx │ │ │ │ ├── boxm_opt2_sample.h │ │ │ │ ├── boxm_opt2_sample.hxx │ │ │ │ ├── boxm_opt3_sample.h │ │ │ │ ├── boxm_opt3_sample.hxx │ │ │ │ ├── boxm_plane_obs.h │ │ │ │ ├── boxm_plane_obs.hxx │ │ │ │ ├── boxm_rt_sample.h │ │ │ │ ├── boxm_rt_sample.hxx │ │ │ │ ├── boxm_sample.h │ │ │ │ ├── boxm_sample.hxx │ │ │ │ ├── boxm_sample_multi_bin.h │ │ │ │ ├── boxm_sample_multi_bin.hxx │ │ │ │ ├── boxm_scalar_sample.h │ │ │ │ ├── boxm_scalar_sample.hxx │ │ │ │ ├── boxm_update_sample.h │ │ │ │ ├── boxm_vis_implicit_sample.h │ │ │ │ ├── dummy.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── camera0.txt │ │ │ │ ├── frame_00000.txt │ │ │ │ ├── test_binary_io.cxx │ │ │ │ ├── test_block_iter.cxx │ │ │ │ ├── test_cell_iterator.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_load_neighboring_blocks.cxx │ │ │ │ ├── test_region_finder.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ ├── test_utils.cxx │ │ │ │ └── test_utils.h │ │ │ └── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ └── boxm_triangle_interpolation_iterator+float-.cxx │ │ │ │ ├── boxm_cell_data_traits.cxx │ │ │ │ ├── boxm_cell_data_traits.h │ │ │ │ ├── boxm_plane_ransac.h │ │ │ │ ├── boxm_quad_scan_iterator.cxx │ │ │ │ ├── boxm_quad_scan_iterator.h │ │ │ │ ├── boxm_rational_camera_utils.cxx │ │ │ │ ├── boxm_rational_camera_utils.h │ │ │ │ ├── boxm_raytrace_operations.cxx │ │ │ │ ├── boxm_raytrace_operations.h │ │ │ │ ├── boxm_test_util.cxx │ │ │ │ ├── boxm_test_util.h │ │ │ │ ├── boxm_triangle_interpolation_iterator.h │ │ │ │ ├── boxm_triangle_interpolation_iterator.hxx │ │ │ │ ├── boxm_triangle_scan_iterator.cxx │ │ │ │ ├── boxm_triangle_scan_iterator.h │ │ │ │ ├── boxm_utils.cxx │ │ │ │ ├── boxm_utils.h │ │ │ │ ├── boxm_vrml_util.h │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── camera0.txt │ │ │ │ ├── frame_00000.txt │ │ │ │ ├── test_boxm_plane_ransac.cxx │ │ │ │ ├── test_boxm_rational_camera_utils.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_quad_interpolate.cxx │ │ │ │ └── test_template_include.cxx │ │ ├── boxm2 │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── boxm2_data+BOXM2_ALPHA-.cxx │ │ │ │ ├── boxm2_data+BOXM2_AUX-.cxx │ │ │ │ ├── boxm2_data+BOXM2_BATCH_HISTOGRAM-.cxx │ │ │ │ ├── boxm2_data+BOXM2_COVARIANCE-.cxx │ │ │ │ ├── boxm2_data+BOXM2_FEATURE_VECTOR-.cxx │ │ │ │ ├── boxm2_data+BOXM2_FLOAT16-.cxx │ │ │ │ ├── boxm2_data+BOXM2_FLOAT8-.cxx │ │ │ │ ├── boxm2_data+BOXM2_GAMMA-.cxx │ │ │ │ ├── boxm2_data+BOXM2_GAUSS_GREY-.cxx │ │ │ │ ├── boxm2_data+BOXM2_GAUSS_RGB-.cxx │ │ │ │ ├── boxm2_data+BOXM2_INTENSITY-.cxx │ │ │ │ ├── boxm2_data+BOXM2_LABEL_SHORT-.cxx │ │ │ │ ├── boxm2_data+BOXM2_MOG2_RGB-.cxx │ │ │ │ ├── boxm2_data+BOXM2_MOG3_GREY-.cxx │ │ │ │ ├── boxm2_data+BOXM2_MOG3_GREY_16-.cxx │ │ │ │ ├── boxm2_data+BOXM2_NORMAL-.cxx │ │ │ │ ├── boxm2_data+BOXM2_NORMAL_ALBEDO_ARRAY-.cxx │ │ │ │ ├── boxm2_data+BOXM2_NUM_OBS-.cxx │ │ │ │ ├── boxm2_data+BOXM2_PIXEL-.cxx │ │ │ │ ├── boxm2_data+BOXM2_POINT-.cxx │ │ │ │ ├── brdb_value_t+boxm2_block_sptr-.cxx │ │ │ │ ├── brdb_value_t+boxm2_data_base_sptr-.cxx │ │ │ │ ├── brdb_value_t+boxm2_scene_sptr-.cxx │ │ │ │ ├── bvgl_2d_geo_index+vcl_vector+boxm2_block_id--.cxx │ │ │ │ ├── vbl_array_3d+vil_image_view+byte-~-.cxx │ │ │ │ ├── vbl_array_3d+vnl_vector_fixed+ushort.2--.cxx │ │ │ │ ├── vbl_smart_ptr+boxm2_block-.cxx │ │ │ │ ├── vbl_smart_ptr+boxm2_block_vis_graph_node-.cxx │ │ │ │ ├── vbl_smart_ptr+boxm2_data_base-.cxx │ │ │ │ ├── vbl_smart_ptr+boxm2_scene-.cxx │ │ │ │ ├── vbl_smart_ptr+boxm2_vecf_articulated_scene-.cxx │ │ │ │ └── vnl_vector_fixed+uchar.8-.cxx │ │ │ ├── basic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boxm2_array_1d+char-.cxx │ │ │ │ │ ├── boxm2_array_1d+float-.cxx │ │ │ │ │ ├── boxm2_array_2d+int-.cxx │ │ │ │ │ ├── boxm2_array_2d+vnl_vector_fixed+uchar.16--.cxx │ │ │ │ │ ├── boxm2_array_2d+vnl_vector_fixed+ushort.2--.cxx │ │ │ │ │ ├── boxm2_array_3d+vnl_vector_fixed+uchar.16--.cxx │ │ │ │ │ ├── brdb_value_t+boxm2_block_id_sptr-.cxx │ │ │ │ │ └── vbl_smart_ptr+boxm2_block_id-.cxx │ │ │ │ ├── boxm2_array_1d.h │ │ │ │ ├── boxm2_array_1d.hxx │ │ │ │ ├── boxm2_array_2d.h │ │ │ │ ├── boxm2_array_2d.hxx │ │ │ │ ├── boxm2_array_3d.h │ │ │ │ ├── boxm2_array_3d.hxx │ │ │ │ ├── boxm2_block_id.cxx │ │ │ │ ├── boxm2_block_id.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── boxm2_block.cxx │ │ │ ├── boxm2_block.h │ │ │ ├── boxm2_block_metadata.cxx │ │ │ ├── boxm2_block_metadata.h │ │ │ ├── boxm2_blocks_vis_graph.cxx │ │ │ ├── boxm2_blocks_vis_graph.h │ │ │ ├── boxm2_bounding_box_parser.cxx │ │ │ ├── boxm2_bounding_box_parser.h │ │ │ ├── boxm2_data.h │ │ │ ├── boxm2_data.hxx │ │ │ ├── boxm2_data_base.cxx │ │ │ ├── boxm2_data_base.h │ │ │ ├── boxm2_data_traits.h │ │ │ ├── boxm2_export.h │ │ │ ├── boxm2_feature_vector.cxx │ │ │ ├── boxm2_feature_vector.h │ │ │ ├── boxm2_normal_albedo_array.cxx │ │ │ ├── boxm2_normal_albedo_array.h │ │ │ ├── boxm2_scene.cxx │ │ │ ├── boxm2_scene.h │ │ │ ├── boxm2_scene_parser.cxx │ │ │ ├── boxm2_scene_parser.h │ │ │ ├── boxm2_util.cxx │ │ │ ├── boxm2_util.h │ │ │ ├── class │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_class_generate_samples.cxx │ │ │ │ ├── boxm2_class_generate_samples.h │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── boxm2_class_write_samples.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ ├── algo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── boxm2_apply_filter_function+FLOAT-.cxx │ │ │ │ │ │ └── boxm2_batch_functors+BOXM2_APMs-.cxx │ │ │ │ │ ├── boxm2_3d_point_estimator_batch_functor.h │ │ │ │ │ ├── boxm2_3d_point_hypothesis_functor.h │ │ │ │ │ ├── boxm2_apply_filter_function.h │ │ │ │ │ ├── boxm2_apply_filter_function.hxx │ │ │ │ │ ├── boxm2_batch_functors.h │ │ │ │ │ ├── boxm2_batch_opt2_functors.h │ │ │ │ │ ├── boxm2_batch_opt2_phongs_functors.h │ │ │ │ │ ├── boxm2_cast_cone_ray_function.h │ │ │ │ │ ├── boxm2_cast_intensities_functor.h │ │ │ │ │ ├── boxm2_cast_ray_function.h │ │ │ │ │ ├── boxm2_change_detection_functor.h │ │ │ │ │ ├── boxm2_compute_derivative_function.cxx │ │ │ │ │ ├── boxm2_compute_derivative_function.h │ │ │ │ │ ├── boxm2_compute_nonsurface_histogram_functor.h │ │ │ │ │ ├── boxm2_compute_normal_albedo_functor.cxx │ │ │ │ │ ├── boxm2_compute_normal_albedo_functor.h │ │ │ │ │ ├── boxm2_compute_normal_albedo_functor_opt.cxx │ │ │ │ │ ├── boxm2_compute_normal_albedo_functor_opt.h │ │ │ │ │ ├── boxm2_compute_phongs_model_functor.h │ │ │ │ │ ├── boxm2_cone_update_image_functor.h │ │ │ │ │ ├── boxm2_create_mog_image_functor.h │ │ │ │ │ ├── boxm2_data_serial_iterator.h │ │ │ │ │ ├── boxm2_export_oriented_point_cloud.cxx │ │ │ │ │ ├── boxm2_export_oriented_point_cloud.h │ │ │ │ │ ├── boxm2_export_oriented_point_cloud_function.cxx │ │ │ │ │ ├── boxm2_export_oriented_point_cloud_function.h │ │ │ │ │ ├── boxm2_export_stack_images_function.cxx │ │ │ │ │ ├── boxm2_export_stack_images_function.h │ │ │ │ │ ├── boxm2_extract_point_cloud.cxx │ │ │ │ │ ├── boxm2_extract_point_cloud.h │ │ │ │ │ ├── boxm2_filter_block_function.cxx │ │ │ │ │ ├── boxm2_filter_block_function.h │ │ │ │ │ ├── boxm2_gauss_grey_processor.cxx │ │ │ │ │ ├── boxm2_gauss_grey_processor.h │ │ │ │ │ ├── boxm2_gauss_rgb_processor.cxx │ │ │ │ │ ├── boxm2_gauss_rgb_processor.h │ │ │ │ │ ├── boxm2_image_density_functor.h │ │ │ │ │ ├── boxm2_import_triangle_mesh.cxx │ │ │ │ │ ├── boxm2_import_triangle_mesh.h │ │ │ │ │ ├── boxm2_mean_intensities_batch_functor.h │ │ │ │ │ ├── boxm2_merge_block_function.cxx │ │ │ │ │ ├── boxm2_merge_block_function.h │ │ │ │ │ ├── boxm2_mog3_grey_processor.cxx │ │ │ │ │ ├── boxm2_mog3_grey_processor.h │ │ │ │ │ ├── boxm2_mog6_view_processor.h │ │ │ │ │ ├── boxm2_normals_to_id_functor.h │ │ │ │ │ ├── boxm2_phongs_model_processor.cxx │ │ │ │ │ ├── boxm2_phongs_model_processor.h │ │ │ │ │ ├── boxm2_points_to_volume_function.cxx │ │ │ │ │ ├── boxm2_points_to_volume_function.h │ │ │ │ │ ├── boxm2_ray_probe_functor.h │ │ │ │ │ ├── boxm2_refine_block_function.cxx │ │ │ │ │ ├── boxm2_refine_block_function.h │ │ │ │ │ ├── boxm2_refine_block_function_with_labels.cxx │ │ │ │ │ ├── boxm2_refine_block_function_with_labels.h │ │ │ │ │ ├── boxm2_refine_block_multi_data.cxx │ │ │ │ │ ├── boxm2_refine_block_multi_data.h │ │ │ │ │ ├── boxm2_render_cone_functor.h │ │ │ │ │ ├── boxm2_render_depth_of_max_prob_functor.h │ │ │ │ │ ├── boxm2_render_exp_depth_functor.h │ │ │ │ │ ├── boxm2_render_exp_image_functor.h │ │ │ │ │ ├── boxm2_render_functions.cxx │ │ │ │ │ ├── boxm2_render_functions.h │ │ │ │ │ ├── boxm2_shadow_model_functor.h │ │ │ │ │ ├── boxm2_surface_distance_refine.h │ │ │ │ │ ├── boxm2_surface_distance_refine.hxx │ │ │ │ │ ├── boxm2_synoptic_function_functors.h │ │ │ │ │ ├── boxm2_update_functions.cxx │ │ │ │ │ ├── boxm2_update_functions.h │ │ │ │ │ ├── boxm2_update_image_functor.h │ │ │ │ │ ├── boxm2_update_using_quality_functor.h │ │ │ │ │ ├── boxm2_update_with_shadow_functor.h │ │ │ │ │ ├── boxm2_vis_probe_functor.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_cone_ray_trace.cxx │ │ │ │ │ │ ├── test_cone_update.cxx │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ │ ├── test_merge_function.cxx │ │ │ │ │ │ ├── test_merge_mixtures.cxx │ │ │ │ │ │ └── test_template_include.cxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_cpp_processes.h │ │ │ │ │ ├── boxm2_cpp_register.cxx │ │ │ │ │ ├── boxm2_cpp_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── boxm2_cpp_batch_compute_3d_points_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_compute_normal_albedo_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_compute_phong_model_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_compute_shadow_model_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_compute_synoptic_function_1d_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_probe_intensities_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_update_nonsurface_model_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_update_opt2_phongs_processes.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_update_opt2_processes.cxx │ │ │ │ │ │ ├── boxm2_cpp_batch_update_processes.cxx │ │ │ │ │ │ ├── boxm2_cpp_cast_3d_point_hypothesis_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_cast_intensities_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_change_detection_process2.cxx │ │ │ │ │ │ ├── boxm2_cpp_compute_3d_points_and_covs_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_compute_derivative_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_cone_update_image_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_create_mog_image_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_filter_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_filter_response_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_get_index_from_3d_point.cxx │ │ │ │ │ │ ├── boxm2_cpp_image_density_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_los_visibility_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_mean_intensities_batch_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_merge_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_normals_to_id_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_points_to_volume_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_query_cell.cxx │ │ │ │ │ │ ├── boxm2_cpp_query_cell_brdf_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_query_cell_data_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_ray_app_density_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_ray_probe_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_refine_process2.cxx │ │ │ │ │ │ ├── boxm2_cpp_render_cone_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_render_depth_of_max_prob_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_render_expected_depth_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_render_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_render_z_images_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_update_image_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_update_using_quality_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_update_with_shadow_process.cxx │ │ │ │ │ │ ├── boxm2_cpp_vis_of_point_process.cxx │ │ │ │ │ │ ├── boxm2_export_oriented_point_cloud_process.cxx │ │ │ │ │ │ ├── boxm2_export_stack_images_process.cxx │ │ │ │ │ │ ├── boxm2_extract_point_cloud_process.cxx │ │ │ │ │ │ └── boxm2_import_triangle_mesh_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── doc │ │ │ │ └── book │ │ │ │ │ ├── atexinfo.tex │ │ │ │ │ ├── awffonts.tex │ │ │ │ │ ├── book.texi │ │ │ │ │ ├── chapter_cpp.texi │ │ │ │ │ ├── chapter_data.texi │ │ │ │ │ ├── chapter_demo.texi │ │ │ │ │ ├── chapter_intro.texi │ │ │ │ │ ├── chapter_io.texi │ │ │ │ │ ├── chapter_mil.texi │ │ │ │ │ ├── chapter_ocl.texi │ │ │ │ │ ├── liboverview.eps │ │ │ │ │ ├── liboverview.png │ │ │ │ │ ├── makefile │ │ │ │ │ ├── streamingoverview.eps │ │ │ │ │ └── streamingoverview.png │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_ALPHA-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_AUX-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_AUX0-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_AUX1-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_AUX2-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_AUX3-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_AUX4-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_FLOAT16-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_MOG2_RGB-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_MOG3_GREY-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_MOG3_GREY_16-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_NUM_OBS_SINGLE-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_NUM_OBS_SINGLE_INT-.cxx │ │ │ │ │ ├── boxm2_stream_cache+BOXM2_POINT-.cxx │ │ │ │ │ ├── brdb_value_t+boxm2_cache_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+boxm2_stream_cache_sptr-.cxx │ │ │ │ │ ├── vbl_smart_ptr+boxm2_cache-.cxx │ │ │ │ │ ├── vbl_smart_ptr+boxm2_stream_block_cache-.cxx │ │ │ │ │ ├── vbl_smart_ptr+boxm2_stream_cache-.cxx │ │ │ │ │ ├── vbl_smart_ptr+boxm2_stream_cache_datatype_helper-.cxx │ │ │ │ │ ├── vbl_smart_ptr+boxm2_stream_cache_helper-.cxx │ │ │ │ │ └── vbl_smart_ptr+boxm2_stream_scene_cache-.cxx │ │ │ │ ├── boxm2_asio_mgr.cxx │ │ │ │ ├── boxm2_asio_mgr.h │ │ │ │ ├── boxm2_cache.cxx │ │ │ │ ├── boxm2_cache.h │ │ │ │ ├── boxm2_cache1.cxx │ │ │ │ ├── boxm2_cache1.h │ │ │ │ ├── boxm2_dumb_cache.cxx │ │ │ │ ├── boxm2_dumb_cache.h │ │ │ │ ├── boxm2_lru_cache.cxx │ │ │ │ ├── boxm2_lru_cache.h │ │ │ │ ├── boxm2_lru_cache1.cxx │ │ │ │ ├── boxm2_lru_cache1.h │ │ │ │ ├── boxm2_nn_cache.cxx │ │ │ │ ├── boxm2_nn_cache.h │ │ │ │ ├── boxm2_sio_mgr.cxx │ │ │ │ ├── boxm2_sio_mgr.h │ │ │ │ ├── boxm2_stream_block_cache.cxx │ │ │ │ ├── boxm2_stream_block_cache.h │ │ │ │ ├── boxm2_stream_cache.cxx │ │ │ │ ├── boxm2_stream_cache.h │ │ │ │ ├── boxm2_stream_cache.hxx │ │ │ │ ├── boxm2_stream_scene_cache.cxx │ │ │ │ ├── boxm2_stream_scene_cache.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── ocl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+boxm2_opencl_cache_sptr-.cxx │ │ │ │ │ └── vbl_smart_ptr+boxm2_opencl_cache-.cxx │ │ │ │ ├── algo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_ocl_aggregate_normal_from_filter_vector.cxx │ │ │ │ │ ├── boxm2_ocl_aggregate_normal_from_filter_vector.h │ │ │ │ │ ├── boxm2_ocl_camera_converter.cxx │ │ │ │ │ ├── boxm2_ocl_camera_converter.h │ │ │ │ │ ├── boxm2_ocl_change_detection.cxx │ │ │ │ │ ├── boxm2_ocl_change_detection.h │ │ │ │ │ ├── boxm2_ocl_cone_update_function.cxx │ │ │ │ │ ├── boxm2_ocl_cone_update_function.h │ │ │ │ │ ├── boxm2_ocl_depth_renderer.cxx │ │ │ │ │ ├── boxm2_ocl_depth_renderer.h │ │ │ │ │ ├── boxm2_ocl_expected_image_renderer.cxx │ │ │ │ │ ├── boxm2_ocl_expected_image_renderer.h │ │ │ │ │ ├── boxm2_ocl_filter_scene_data.cxx │ │ │ │ │ ├── boxm2_ocl_filter_scene_data.h │ │ │ │ │ ├── boxm2_ocl_fuse_based_visibility.cxx │ │ │ │ │ ├── boxm2_ocl_fuse_based_visibility.h │ │ │ │ │ ├── boxm2_ocl_kernel_vector_filter.cxx │ │ │ │ │ ├── boxm2_ocl_kernel_vector_filter.h │ │ │ │ │ ├── boxm2_ocl_num_obs_renderer.cxx │ │ │ │ │ ├── boxm2_ocl_num_obs_renderer.h │ │ │ │ │ ├── boxm2_ocl_paint_batch.cxx │ │ │ │ │ ├── boxm2_ocl_paint_batch.h │ │ │ │ │ ├── boxm2_ocl_paint_online.cxx │ │ │ │ │ ├── boxm2_ocl_paint_online.h │ │ │ │ │ ├── boxm2_ocl_paint_online_color.cxx │ │ │ │ │ ├── boxm2_ocl_paint_online_color.h │ │ │ │ │ ├── boxm2_ocl_refine.cxx │ │ │ │ │ ├── boxm2_ocl_refine.h │ │ │ │ │ ├── boxm2_ocl_refine_bp.cxx │ │ │ │ │ ├── boxm2_ocl_refine_scene_around_geometry.cxx │ │ │ │ │ ├── boxm2_ocl_refine_scene_around_geometry.h │ │ │ │ │ ├── boxm2_ocl_render_expected_image.cxx │ │ │ │ │ ├── boxm2_ocl_render_expected_image.h │ │ │ │ │ ├── boxm2_ocl_render_expected_image_function.cxx │ │ │ │ │ ├── boxm2_ocl_render_expected_image_function.h │ │ │ │ │ ├── boxm2_ocl_render_expected_shadow_map.cxx │ │ │ │ │ ├── boxm2_ocl_render_expected_shadow_map.h │ │ │ │ │ ├── boxm2_ocl_render_scene_uncertainty_map.cxx │ │ │ │ │ ├── boxm2_ocl_render_scene_uncertainty_map.h │ │ │ │ │ ├── boxm2_ocl_update.cxx │ │ │ │ │ ├── boxm2_ocl_update.h │ │ │ │ │ ├── boxm2_ocl_update_auxQ.cxx │ │ │ │ │ ├── boxm2_ocl_update_auxQ.h │ │ │ │ │ ├── boxm2_ocl_update_based_dispersion.cxx │ │ │ │ │ ├── boxm2_ocl_update_based_dispersion.h │ │ │ │ │ ├── boxm2_ocl_update_belief.cxx │ │ │ │ │ ├── boxm2_ocl_update_belief.h │ │ │ │ │ ├── boxm2_ocl_update_color.cxx │ │ │ │ │ ├── boxm2_ocl_update_color.h │ │ │ │ │ ├── boxm2_ocl_update_max_vis.cxx │ │ │ │ │ ├── boxm2_ocl_update_max_vis.h │ │ │ │ │ ├── boxm2_ocl_update_sky.cxx │ │ │ │ │ ├── boxm2_ocl_update_sky.h │ │ │ │ │ ├── boxm2_ocl_update_sun_visibilities.cxx │ │ │ │ │ ├── boxm2_ocl_update_sun_visibilities.h │ │ │ │ │ ├── boxm2_ocl_update_view_dep_app.cxx │ │ │ │ │ ├── boxm2_ocl_update_view_dep_app.h │ │ │ │ │ ├── boxm2_ocl_update_view_dep_app_color.cxx │ │ │ │ │ ├── boxm2_ocl_update_view_dep_app_color.h │ │ │ │ │ ├── boxm2_ocl_update_vis_score.cxx │ │ │ │ │ ├── boxm2_ocl_update_vis_score.h │ │ │ │ │ ├── boxm2_ocl_vis_score_renderer.cxx │ │ │ │ │ ├── boxm2_ocl_vis_score_renderer.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── boxm2_ocl_util.cxx │ │ │ │ ├── boxm2_ocl_util.h │ │ │ │ ├── boxm2_ocl_where_root_dir.h.in │ │ │ │ ├── boxm2_opencl_cache.cxx │ │ │ │ ├── boxm2_opencl_cache.h │ │ │ │ ├── boxm2_opencl_cache1.cxx │ │ │ │ ├── boxm2_opencl_cache1.h │ │ │ │ ├── cl │ │ │ │ │ ├── aggregate_filter_response.cl │ │ │ │ │ ├── atomics_util.cl │ │ │ │ │ ├── backproject.cl │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── image_pyramid.cl │ │ │ │ │ │ ├── linked_list.cl │ │ │ │ │ │ ├── ray_pyramid.cl │ │ │ │ │ │ └── sort_vector.cl │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── batch_naa_kernels.cl │ │ │ │ │ │ ├── batch_update_appearance.cl │ │ │ │ │ │ ├── em_functors.cl │ │ │ │ │ │ ├── em_kernels.cl │ │ │ │ │ │ └── synoptic_function_kernels.cl │ │ │ │ │ ├── batch_update_functors.cl │ │ │ │ │ ├── bit │ │ │ │ │ │ ├── batch_update_kernels.cl │ │ │ │ │ │ ├── batchkernels.cl │ │ │ │ │ │ ├── bit_tree_library_functions.cl │ │ │ │ │ │ ├── bit_tree_library_functions_debug.cl │ │ │ │ │ │ ├── bp_kernels.cl │ │ │ │ │ │ ├── cast_ray_bit.cl │ │ │ │ │ │ ├── compute_index.cl │ │ │ │ │ │ ├── compute_index_label.cl │ │ │ │ │ │ ├── compute_probability_of_image.cl │ │ │ │ │ │ ├── compute_vis.cl │ │ │ │ │ │ ├── filter_block.cl │ │ │ │ │ │ ├── filter_scene_data.cl │ │ │ │ │ │ ├── ingest_label_map.cl │ │ │ │ │ │ ├── ingest_osm_label_map.cl │ │ │ │ │ │ ├── kernel_filter_block.cl │ │ │ │ │ │ ├── merge_bit_scene.cl │ │ │ │ │ │ ├── normalize_kernels.cl │ │ │ │ │ │ ├── pixel_conversion_kernels.cl │ │ │ │ │ │ ├── query_bit_scene.cl │ │ │ │ │ │ ├── refine_bit_scene.cl │ │ │ │ │ │ ├── refine_bit_scene_bp.cl │ │ │ │ │ │ ├── render_bit_scene.cl │ │ │ │ │ │ ├── render_height_map.cl │ │ │ │ │ │ ├── render_median_depth.cl │ │ │ │ │ │ ├── render_nobs_bit_scene.cl │ │ │ │ │ │ ├── render_rgb.cl │ │ │ │ │ │ ├── render_sun_visibilities.cl │ │ │ │ │ │ ├── render_uncertainty_map.cl │ │ │ │ │ │ ├── render_view_dep_rgb.cl │ │ │ │ │ │ ├── sun_visibilities_kernel.cl │ │ │ │ │ │ ├── update_kernels.cl │ │ │ │ │ │ ├── update_naa_kernels.cl │ │ │ │ │ │ ├── update_parents_alpha.cl │ │ │ │ │ │ ├── update_rgb_kernels.cl │ │ │ │ │ │ ├── update_sky_kernels.cl │ │ │ │ │ │ ├── update_view_dep_app_color_kernels.cl │ │ │ │ │ │ ├── update_view_dep_app_kernels.cl │ │ │ │ │ │ └── vis_score_kernel.cl │ │ │ │ │ ├── boxm2_ocl_helpers.cl │ │ │ │ │ ├── bp_functors.cl │ │ │ │ │ ├── camera_convert.cl │ │ │ │ │ ├── cell_utils.cl │ │ │ │ │ ├── change │ │ │ │ │ │ ├── change_detection.cl │ │ │ │ │ │ └── two_pass_change.cl │ │ │ │ │ ├── cone │ │ │ │ │ │ ├── cast_adaptive_cone_ray.cl │ │ │ │ │ │ ├── cast_cone_ray.cl │ │ │ │ │ │ ├── cone_util.cl │ │ │ │ │ │ ├── render_adaptive_cone_kernels.cl │ │ │ │ │ │ ├── render_expected_cone.cl │ │ │ │ │ │ ├── update_adaptive_cone_kernels.cl │ │ │ │ │ │ └── update_cone_kernels.cl │ │ │ │ │ ├── expected_functor.cl │ │ │ │ │ ├── expected_nobs_functor.cl │ │ │ │ │ ├── fusion │ │ │ │ │ │ ├── fusion_kernels.cl │ │ │ │ │ │ └── update_kernels.cl │ │ │ │ │ ├── label_cells_to_refine.cl │ │ │ │ │ ├── ogl │ │ │ │ │ │ └── intersect.cl │ │ │ │ │ ├── onl │ │ │ │ │ │ ├── cholesky_decomposition.cl │ │ │ │ │ │ ├── cubic_fit.cl │ │ │ │ │ │ ├── levenberg_marquardt.cl │ │ │ │ │ │ ├── onl_inverse_4x4.cl │ │ │ │ │ │ ├── phongs_model.cl │ │ │ │ │ │ ├── quadratic_example.cl │ │ │ │ │ │ ├── test_levenberg_marquardt.cl │ │ │ │ │ │ ├── test_onl_cholesky.cl │ │ │ │ │ │ └── test_onl_kernels.cl │ │ │ │ │ ├── pixel_conversion.cl │ │ │ │ │ ├── ray_bundle_library_functions.cl │ │ │ │ │ ├── ray_bundle_library_opt.cl │ │ │ │ │ ├── scene_info.cl │ │ │ │ │ ├── stat │ │ │ │ │ │ ├── chisqr_cdf.cl │ │ │ │ │ │ ├── directional_statistics.cl │ │ │ │ │ │ ├── mem_efficient_weighted_em.cl │ │ │ │ │ │ └── weighted_em.cl │ │ │ │ │ ├── statistics_library_functions.cl │ │ │ │ │ ├── update_cubic_functors.cl │ │ │ │ │ ├── update_functors.cl │ │ │ │ │ ├── update_naa_functors.cl │ │ │ │ │ ├── update_phongs_functors.cl │ │ │ │ │ ├── update_rgb_functors.cl │ │ │ │ │ ├── view_dep_app_color_helper_functions.cl │ │ │ │ │ ├── view_dep_app_common_functions.cl │ │ │ │ │ ├── view_dep_app_helper_functions.cl │ │ │ │ │ ├── view_dep_app_update_color_functors.cl │ │ │ │ │ └── view_dep_app_update_functors.cl │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── auxiliary │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── miniZoomPan.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── jquery.cookie-min.js │ │ │ │ │ │ │ ├── jquery.disabletextselect-min.js │ │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ │ ├── jquery.mousewheel-min.js │ │ │ │ │ │ │ ├── jquery.reel-min.js │ │ │ │ │ │ │ ├── js.js │ │ │ │ │ │ │ └── miniZoomPan.js │ │ │ │ │ ├── boxm2_estimate_uncertain_viewpoints.cxx │ │ │ │ │ ├── boxm2_export_scene.cxx │ │ │ │ │ ├── boxm2_ocl_refine_scene.cxx │ │ │ │ │ ├── boxm2_ocl_render_firstperson_view.cxx │ │ │ │ │ ├── boxm2_ocl_render_view.cxx │ │ │ │ │ └── boxm2_render_hemisphere.cxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_ocl_processes.h │ │ │ │ │ ├── boxm2_ocl_register.cxx │ │ │ │ │ ├── boxm2_ocl_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── boxm2_clear_opencl_cache_process.cxx │ │ │ │ │ │ ├── boxm2_create_opencl_cache_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_adaptive_cone_render_expected_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_adaptive_cone_update_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_aggregate_normal_from_filter_response_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_aggregate_normal_from_filter_vector_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_aux_update_view_direction_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_batch_compute_normal_albedo_array_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_batch_probability_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_batch_synoptic_function_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_batch_synoptic_phongs_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_batch_uncertainty_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_batch_update_scene_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_change_detection_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_change_detection_process2.cxx │ │ │ │ │ │ ├── boxm2_ocl_clear_app_models_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_compute_expectation_per_view_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_compute_expectation_view_direction_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_compute_visibility_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_cone_update_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_convert_float_image_to_rgba_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_create_aux_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_create_coarser_scene_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_create_norm_intensities_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_filter_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_filter_process.h │ │ │ │ │ │ ├── boxm2_ocl_filter_scene_data_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_flip_normals_using_vis_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_fuse_based_visibility_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_ingest_buckeye_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_ingest_dem_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_ingest_label_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_ingest_label_with_cam_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_ingest_osm_label_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_init_alpha_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_kernel_filter_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_kernel_filter_process.h │ │ │ │ │ │ ├── boxm2_ocl_kernel_vector_filter_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_kernel_vector_filter_process.h │ │ │ │ │ │ ├── boxm2_ocl_make_inside_voxels_empty_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_merge_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_paint_batch_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_paint_online_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_probability_of_image_gl_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_probability_of_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_probability_of_image_wcubic_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_query_cell_data_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_query_hist_data_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_refine_bp_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_refine_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_refine_scene_around_geometry_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_cone_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_depth_entropy_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_albedo_normal_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_color_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_depth_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_depth_region_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_height_map_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_image_naa_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_shadow_map_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_expected_z_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_gl_depth_entropy_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_gl_expected_color_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_gl_expected_depth_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_gl_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_gl_view_dep_app_expected_color_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_gl_view_dep_app_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_median_depth_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_scene_uncertainty_map_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_view_dep_expected_color_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_render_view_dep_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_synoptic_update_alpha_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_uncertainty_per_image_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_alpha_naa_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_alpha_wcubic_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_alpha_wphongs_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_auxQ_per_view_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_aux_per_view_naa_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_aux_per_view_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_belief_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_color_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_histogram_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_max_vis_score_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_sky_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_sun_visibilities_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_usingQ_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_view_dep_app_color_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_view_dep_app_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_update_with_alt_process.cxx │ │ │ │ │ │ ├── boxm2_ocl_visualize_change_process.cxx │ │ │ │ │ │ └── boxm2_update_parents_alpha_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── cams │ │ │ │ │ │ └── samplecam.txt │ │ │ │ │ │ ├── imgs │ │ │ │ │ │ └── sample.png │ │ │ │ │ │ ├── scene.xml │ │ │ │ │ │ ├── test_batch_update.cxx │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_filter_kernel.cxx │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_ocl_test_utils.cxx │ │ │ │ │ ├── boxm2_ocl_test_utils.h │ │ │ │ │ ├── scene.xml │ │ │ │ │ ├── test_cubic_estimation.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_image_pyramid.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_kernel_filter.cxx │ │ │ │ │ ├── test_kernel_vector_filter.cxx │ │ │ │ │ ├── test_ocl_cholesky.cxx │ │ │ │ │ ├── test_ocl_levenberg_marquardt.cxx │ │ │ │ │ ├── test_ocl_lm_phongs_model.cxx │ │ │ │ │ ├── test_opencl_cache2.cxx │ │ │ │ │ ├── test_process_mains.cxx │ │ │ │ │ ├── test_refine.cxx │ │ │ │ │ └── test_weighted_em.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── brdb_value_t+vil_image_view_base_sptr-.cxx │ │ │ │ ├── boxm2_processes.h │ │ │ │ ├── boxm2_register.cxx │ │ │ │ ├── boxm2_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── boxm2_add_aux_info_to_ply_process.cxx │ │ │ │ │ ├── boxm2_add_block_process.cxx │ │ │ │ │ ├── boxm2_blob_change_detection_process.cxx │ │ │ │ │ ├── boxm2_blob_precision_recall_process.cxx │ │ │ │ │ ├── boxm2_bundle_to_scene_process.cxx │ │ │ │ │ ├── boxm2_clear_cache_process.cxx │ │ │ │ │ ├── boxm2_combine_expected_images_process.cxx │ │ │ │ │ ├── boxm2_compactify_mog6_view_process.cxx │ │ │ │ │ ├── boxm2_compute_sun_affine_camera_process.cxx │ │ │ │ │ ├── boxm2_create_cache_process.cxx │ │ │ │ │ ├── boxm2_create_camera_position_from_kml.cxx │ │ │ │ │ ├── boxm2_create_scene_mask_process.cxx │ │ │ │ │ ├── boxm2_create_scene_process.cxx │ │ │ │ │ ├── boxm2_create_stream_cache_process.cxx │ │ │ │ │ ├── boxm2_dem_to_xyz_process.cxx │ │ │ │ │ ├── boxm2_describe_scene_process.cxx │ │ │ │ │ ├── boxm2_export_color_point_cloud_process.cxx │ │ │ │ │ ├── boxm2_export_error_point_cloud_process.cxx │ │ │ │ │ ├── boxm2_export_mesh_process.cxx │ │ │ │ │ ├── boxm2_export_textured_mesh_process.cxx │ │ │ │ │ ├── boxm2_import_point_cloud_process.cxx │ │ │ │ │ ├── boxm2_ingest_convex_mesh_process.cxx │ │ │ │ │ ├── boxm2_lidar_to_xyz_process.cxx │ │ │ │ │ ├── boxm2_load_mesh_process.cxx │ │ │ │ │ ├── boxm2_load_scene_process.cxx │ │ │ │ │ ├── boxm2_mask_sift_features_process.cxx │ │ │ │ │ ├── boxm2_ortho_geo_cam_from_scene_process.cxx │ │ │ │ │ ├── boxm2_paint_mesh_process.cxx │ │ │ │ │ ├── boxm2_persp_cam_from_scene_process.cxx │ │ │ │ │ ├── boxm2_roi_init_geotiff_process.cxx │ │ │ │ │ ├── boxm2_roi_init_process.cxx │ │ │ │ │ ├── boxm2_scene_bbox_process.cxx │ │ │ │ │ ├── boxm2_scene_from_box_cams_process.cxx │ │ │ │ │ ├── boxm2_scene_from_nvm_txt_process.cxx │ │ │ │ │ ├── boxm2_scene_illumination_info_process.cxx │ │ │ │ │ ├── boxm2_scene_kml_process.cxx │ │ │ │ │ ├── boxm2_scene_lvcs_process.cxx │ │ │ │ │ ├── boxm2_scene_statistics_process.cxx │ │ │ │ │ ├── boxm2_scene_vrml_process.cxx │ │ │ │ │ ├── boxm2_texture_mesh_process.cxx │ │ │ │ │ ├── boxm2_transform_model_process.cxx │ │ │ │ │ ├── boxm2_write_cache_process.cxx │ │ │ │ │ └── boxm2_write_scene_xml_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── pyscripts │ │ │ │ ├── app │ │ │ │ │ └── tailwindDataProcessor.py │ │ │ │ ├── bbas_adaptor.py │ │ │ │ ├── boxm2_adaptor.py │ │ │ │ ├── boxm2_change_roc.py │ │ │ │ ├── boxm2_create_scene_scripts.py │ │ │ │ ├── boxm2_experiment_adaptor.py │ │ │ │ ├── boxm2_filtering_adaptor.py │ │ │ │ ├── boxm2_fusion_adaptor.py │ │ │ │ ├── boxm2_mesh_adaptor.py │ │ │ │ ├── boxm2_register.py │ │ │ │ ├── boxm2_scene_adaptor.py │ │ │ │ ├── boxm2_tools_adaptor.py │ │ │ │ ├── boxm2_uncertainty_adaptor.py │ │ │ │ ├── brad_adaptor.py │ │ │ │ ├── brip_adaptor.py │ │ │ │ ├── bvgl_adaptor.py │ │ │ │ ├── change │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── helpers.py │ │ │ │ ├── export_point_cloud.py │ │ │ │ ├── ihog_adaptor.py │ │ │ │ ├── reconstruct.py │ │ │ │ ├── sdet_adaptor.py │ │ │ │ ├── vil_adaptor.py │ │ │ │ └── vpgl_adaptor.py │ │ │ ├── reg │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ocl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_ocl_hierarchical_points_to_volume_reg.cxx │ │ │ │ │ ├── boxm2_ocl_hierarchical_points_to_volume_reg.h │ │ │ │ │ ├── boxm2_ocl_hierarchical_reg.cxx │ │ │ │ │ ├── boxm2_ocl_hierarchical_reg.h │ │ │ │ │ ├── boxm2_ocl_reg_minfo_func.cxx │ │ │ │ │ ├── boxm2_ocl_reg_minfo_func.h │ │ │ │ │ ├── boxm2_ocl_reg_mutual_info.cxx │ │ │ │ │ ├── boxm2_ocl_reg_mutual_info.h │ │ │ │ │ ├── boxm2_ocl_reg_points_to_volume_mutual_info.cxx │ │ │ │ │ ├── boxm2_ocl_reg_points_to_volume_mutual_info.h │ │ │ │ │ ├── cl │ │ │ │ │ │ ├── estimate_mi_blockwise_vol.cl │ │ │ │ │ │ └── estimate_mi_ply_blockwise_vol.cl │ │ │ │ │ ├── exe │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── boxm2_ocl_reg_mutual_info_exe.cxx │ │ │ │ │ │ └── boxm2_ocl_reg_points_to_volume_exe.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── public_approval.txt │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_block.cxx │ │ │ │ ├── test_block_vis_graph.cxx │ │ │ │ ├── test_cache.cxx │ │ │ │ ├── test_cache2.cxx │ │ │ │ ├── test_data.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_io.cxx │ │ │ │ ├── test_scene.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ ├── test_utils.cxx │ │ │ │ ├── test_utils.h │ │ │ │ └── test_wrappers.cxx │ │ │ ├── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_cams_and_box_to_scene.cxx │ │ │ │ ├── boxm2_cams_and_box_to_scene.h │ │ │ │ ├── boxm2_convert_bundle.cxx │ │ │ │ ├── boxm2_convert_bundle.h │ │ │ │ ├── boxm2_convert_nvm.cxx │ │ │ │ ├── boxm2_convert_nvm.h │ │ │ │ ├── boxm2_convert_nvm_txt.cxx │ │ │ │ ├── boxm2_convert_nvm_txt.h │ │ │ │ ├── boxm2_detect_change_blobs.cxx │ │ │ │ ├── boxm2_detect_change_blobs.h │ │ │ │ ├── boxm2_point_util.cxx │ │ │ │ ├── boxm2_point_util.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── vecf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boxm2_surface_distance_refine+boxm2_vecf_cranium-.cxx │ │ │ │ │ ├── boxm2_surface_distance_refine+boxm2_vecf_mandible-.cxx │ │ │ │ │ ├── boxm2_surface_distance_refine+boxm2_vecf_middle_fat_pocket-.cxx │ │ │ │ │ ├── boxm2_surface_distance_refine+boxm2_vecf_skin-.cxx │ │ │ │ │ ├── boxm2_vecf_landmark_warp+boxm2_vecf_inverse_square_weighting_function-.cxx │ │ │ │ │ ├── vbl_smart_ptr+boxm2_vecf_articulated_scene-.cxx │ │ │ │ │ └── vbl_smart_ptr+boxm2_vecf_vector_field_base-.cxx │ │ │ │ ├── boxm2_vecf_appearance_extractor.cxx │ │ │ │ ├── boxm2_vecf_appearance_extractor.h │ │ │ │ ├── boxm2_vecf_articulated_params.h │ │ │ │ ├── boxm2_vecf_articulated_scene.cxx │ │ │ │ ├── boxm2_vecf_articulated_scene.h │ │ │ │ ├── boxm2_vecf_composite_face_articulation.cxx │ │ │ │ ├── boxm2_vecf_composite_face_articulation.h │ │ │ │ ├── boxm2_vecf_composite_face_params.cxx │ │ │ │ ├── boxm2_vecf_composite_face_params.h │ │ │ │ ├── boxm2_vecf_composite_face_scene.cxx │ │ │ │ ├── boxm2_vecf_composite_face_scene.h │ │ │ │ ├── boxm2_vecf_composite_head_model.cxx │ │ │ │ ├── boxm2_vecf_composite_head_model.h │ │ │ │ ├── boxm2_vecf_composite_head_model_articulation.cxx │ │ │ │ ├── boxm2_vecf_composite_head_model_articulation.h │ │ │ │ ├── boxm2_vecf_composite_head_parameters.h │ │ │ │ ├── boxm2_vecf_composite_transform.cxx │ │ │ │ ├── boxm2_vecf_composite_transform.h │ │ │ │ ├── boxm2_vecf_cranium.cxx │ │ │ │ ├── boxm2_vecf_cranium.h │ │ │ │ ├── boxm2_vecf_cranium_articulation.cxx │ │ │ │ ├── boxm2_vecf_cranium_articulation.h │ │ │ │ ├── boxm2_vecf_cranium_params.cxx │ │ │ │ ├── boxm2_vecf_cranium_params.h │ │ │ │ ├── boxm2_vecf_cranium_scene.cxx │ │ │ │ ├── boxm2_vecf_cranium_scene.h │ │ │ │ ├── boxm2_vecf_estimate_camera_from_canthus.cxx │ │ │ │ ├── boxm2_vecf_estimate_camera_from_canthus.h │ │ │ │ ├── boxm2_vecf_eye_params.h │ │ │ │ ├── boxm2_vecf_eye_scene.cxx │ │ │ │ ├── boxm2_vecf_eye_scene.h │ │ │ │ ├── boxm2_vecf_eyelid.cxx │ │ │ │ ├── boxm2_vecf_eyelid.h │ │ │ │ ├── boxm2_vecf_eyelid_crease.cxx │ │ │ │ ├── boxm2_vecf_eyelid_crease.h │ │ │ │ ├── boxm2_vecf_fit_face.cxx │ │ │ │ ├── boxm2_vecf_fit_face.h │ │ │ │ ├── boxm2_vecf_fit_fat_pocket.cxx │ │ │ │ ├── boxm2_vecf_fit_fat_pocket.h │ │ │ │ ├── boxm2_vecf_fit_margins.cxx │ │ │ │ ├── boxm2_vecf_fit_margins.h │ │ │ │ ├── boxm2_vecf_fit_orbit.cxx │ │ │ │ ├── boxm2_vecf_fit_orbit.h │ │ │ │ ├── boxm2_vecf_fit_skull.cxx │ │ │ │ ├── boxm2_vecf_fit_skull.h │ │ │ │ ├── boxm2_vecf_geometry_base.h │ │ │ │ ├── boxm2_vecf_head_model.cxx │ │ │ │ ├── boxm2_vecf_head_model.h │ │ │ │ ├── boxm2_vecf_inverse_square_weighting_function.cxx │ │ │ │ ├── boxm2_vecf_inverse_square_weighting_function.h │ │ │ │ ├── boxm2_vecf_labeled_point.cxx │ │ │ │ ├── boxm2_vecf_labeled_point.h │ │ │ │ ├── boxm2_vecf_landmark_warp.h │ │ │ │ ├── boxm2_vecf_landmark_warp.hxx │ │ │ │ ├── boxm2_vecf_lid_base.cxx │ │ │ │ ├── boxm2_vecf_lid_base.h │ │ │ │ ├── boxm2_vecf_mandible.cxx │ │ │ │ ├── boxm2_vecf_mandible.h │ │ │ │ ├── boxm2_vecf_mandible_articulation.cxx │ │ │ │ ├── boxm2_vecf_mandible_articulation.h │ │ │ │ ├── boxm2_vecf_mandible_params.cxx │ │ │ │ ├── boxm2_vecf_mandible_params.h │ │ │ │ ├── boxm2_vecf_mandible_scene.cxx │ │ │ │ ├── boxm2_vecf_mandible_scene.h │ │ │ │ ├── boxm2_vecf_middle_fat_pocket.cxx │ │ │ │ ├── boxm2_vecf_middle_fat_pocket.h │ │ │ │ ├── boxm2_vecf_middle_fat_pocket_articulation.cxx │ │ │ │ ├── boxm2_vecf_middle_fat_pocket_articulation.h │ │ │ │ ├── boxm2_vecf_middle_fat_pocket_params.cxx │ │ │ │ ├── boxm2_vecf_middle_fat_pocket_params.h │ │ │ │ ├── boxm2_vecf_middle_fat_pocket_scene.cxx │ │ │ │ ├── boxm2_vecf_middle_fat_pocket_scene.h │ │ │ │ ├── boxm2_vecf_mouth.cxx │ │ │ │ ├── boxm2_vecf_mouth.h │ │ │ │ ├── boxm2_vecf_mouth_params.cxx │ │ │ │ ├── boxm2_vecf_mouth_params.h │ │ │ │ ├── boxm2_vecf_orbicularis_oris.cxx │ │ │ │ ├── boxm2_vecf_orbicularis_oris.h │ │ │ │ ├── boxm2_vecf_orbicularis_oris_params.cxx │ │ │ │ ├── boxm2_vecf_orbicularis_oris_params.h │ │ │ │ ├── boxm2_vecf_orbit_articulation.cxx │ │ │ │ ├── boxm2_vecf_orbit_articulation.h │ │ │ │ ├── boxm2_vecf_orbit_exporter.cxx │ │ │ │ ├── boxm2_vecf_orbit_exporter.h │ │ │ │ ├── boxm2_vecf_orbit_param_stats.cxx │ │ │ │ ├── boxm2_vecf_orbit_param_stats.h │ │ │ │ ├── boxm2_vecf_orbit_params.cxx │ │ │ │ ├── boxm2_vecf_orbit_params.h │ │ │ │ ├── boxm2_vecf_orbit_scene.cxx │ │ │ │ ├── boxm2_vecf_orbit_scene.h │ │ │ │ ├── boxm2_vecf_plot_orbit.cxx │ │ │ │ ├── boxm2_vecf_plot_orbit.h │ │ │ │ ├── boxm2_vecf_point_cloud_orbit_viewer.cxx │ │ │ │ ├── boxm2_vecf_point_cloud_orbit_viewer.h │ │ │ │ ├── boxm2_vecf_scene_articulation.h │ │ │ │ ├── boxm2_vecf_similarity_transform.cxx │ │ │ │ ├── boxm2_vecf_similarity_transform.h │ │ │ │ ├── boxm2_vecf_skin.cxx │ │ │ │ ├── boxm2_vecf_skin.h │ │ │ │ ├── boxm2_vecf_skin_params.cxx │ │ │ │ ├── boxm2_vecf_skin_params.h │ │ │ │ ├── boxm2_vecf_skin_scene.cxx │ │ │ │ ├── boxm2_vecf_skin_scene.h │ │ │ │ ├── boxm2_vecf_skull_articulation.cxx │ │ │ │ ├── boxm2_vecf_skull_articulation.h │ │ │ │ ├── boxm2_vecf_skull_params.cxx │ │ │ │ ├── boxm2_vecf_skull_params.h │ │ │ │ ├── boxm2_vecf_skull_scene.cxx │ │ │ │ ├── boxm2_vecf_skull_scene.h │ │ │ │ ├── boxm2_vecf_spline_field.cxx │ │ │ │ ├── boxm2_vecf_spline_field.h │ │ │ │ ├── boxm2_vecf_vector_field.h │ │ │ │ ├── boxm2_vecf_vector_field.hxx │ │ │ │ ├── boxm2_vecf_vector_field_base.cxx │ │ │ │ ├── boxm2_vecf_vector_field_base.h │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── estimate_camera_via_orbit.cxx │ │ │ │ │ ├── face_fitter.cxx │ │ │ │ │ ├── orbit_fitter.cxx │ │ │ │ │ ├── orbit_pc_viewer.cxx │ │ │ │ │ ├── orbit_stats.cxx │ │ │ │ │ ├── scene_creator.cxx │ │ │ │ │ └── skull_fitter.cxx │ │ │ │ ├── ocl │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── vbl_smart_ptr+boxm2_vecf_ocl_transform_scene-.cxx │ │ │ │ │ │ └── vbl_smart_ptr+boxm2_vecf_ocl_vector_field-.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_appearance_extractor.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_appearance_extractor.h │ │ │ │ │ ├── boxm2_vecf_ocl_composite_head_model.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_composite_head_model.h │ │ │ │ │ ├── boxm2_vecf_ocl_composite_transform.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_composite_transform.h │ │ │ │ │ ├── boxm2_vecf_ocl_filter.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_filter.h │ │ │ │ │ ├── boxm2_vecf_ocl_head_model.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_head_model.h │ │ │ │ │ ├── boxm2_vecf_ocl_landmark_warp.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_landmark_warp.h │ │ │ │ │ ├── boxm2_vecf_ocl_orbit_scene.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_orbit_scene.h │ │ │ │ │ ├── boxm2_vecf_ocl_orbit_vector_field.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_orbit_vector_field.h │ │ │ │ │ ├── boxm2_vecf_ocl_similarity_transform.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_similarity_transform.h │ │ │ │ │ ├── boxm2_vecf_ocl_ssd_func.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_ssd_func.h │ │ │ │ │ ├── boxm2_vecf_ocl_store_nbrs.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_store_nbrs.h │ │ │ │ │ ├── boxm2_vecf_ocl_transform_minimizer.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_transform_minimizer.h │ │ │ │ │ ├── boxm2_vecf_ocl_transform_scene.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_transform_scene.h │ │ │ │ │ ├── boxm2_vecf_ocl_transform_scene_sptr.h │ │ │ │ │ ├── boxm2_vecf_ocl_vector_field.h │ │ │ │ │ ├── boxm2_vecf_ocl_vector_field_adaptor.cxx │ │ │ │ │ ├── boxm2_vecf_ocl_vector_field_adaptor.h │ │ │ │ │ ├── cl │ │ │ │ │ │ ├── compute_cell_centers.cl │ │ │ │ │ │ ├── eyelid_funcs.cl │ │ │ │ │ │ ├── filter_block_six_neighbors.cl │ │ │ │ │ │ ├── interp_helpers.cl │ │ │ │ │ │ ├── inverse_map_orbit.cl │ │ │ │ │ │ ├── map_orbit_to_target.cl │ │ │ │ │ │ ├── orbit_funcs.cl │ │ │ │ │ │ ├── store_neighbor_information.cl │ │ │ │ │ │ ├── transform_scene_blockwise.cl │ │ │ │ │ │ ├── transform_scene_with_interpolation.cl │ │ │ │ │ │ └── warp_and_resample_trilinear.cl │ │ │ │ │ ├── pro │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── boxm2_vecf_ocl_processes.h │ │ │ │ │ │ ├── boxm2_vecf_ocl_register.cxx │ │ │ │ │ │ ├── boxm2_vecf_ocl_register.h │ │ │ │ │ │ └── processes │ │ │ │ │ │ │ ├── boxm2_vecf_ocl_cache_neighbor_info_process.cxx │ │ │ │ │ │ │ └── boxm2_vecf_ocl_transform_scene_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_filter.cxx │ │ │ │ │ │ ├── test_store_nbrs.cxx │ │ │ │ │ │ └── test_transform.cxx │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_composite_face.cxx │ │ │ │ │ ├── test_cranium.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_eye.cxx │ │ │ │ │ ├── test_fat_pocket_scene.cxx │ │ │ │ │ ├── test_fit_face.cxx │ │ │ │ │ ├── test_fit_fat_pocket.cxx │ │ │ │ │ ├── test_fit_margin.cxx │ │ │ │ │ ├── test_fit_orbit.cxx │ │ │ │ │ ├── test_mandible.cxx │ │ │ │ │ ├── test_middle_fat_pocket.cxx │ │ │ │ │ ├── test_mouth.cxx │ │ │ │ │ ├── test_orbicularis_oris.cxx │ │ │ │ │ ├── test_orbit.cxx │ │ │ │ │ ├── test_pc_viewer.cxx │ │ │ │ │ └── test_skin.cxx │ │ │ │ └── view │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_ocl_articulated_render_tableau.cxx │ │ │ │ │ ├── boxm2_ocl_articulated_render_tableau.h │ │ │ │ │ ├── boxm2_vecf_orbit_tableau.cxx │ │ │ │ │ ├── boxm2_vecf_orbit_tableau.h │ │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── articulated_render.cxx │ │ │ │ │ ├── orbit_viewer.cxx │ │ │ │ │ └── test_driver.cxx │ │ │ ├── view │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+boxm2_trajectory_sptr-.cxx │ │ │ │ │ └── vbl_smart_ptr+boxm2_trajectory-.cxx │ │ │ │ ├── boxm2_cam_ground_trajectory_tableau.cxx │ │ │ │ ├── boxm2_cam_ground_trajectory_tableau.h │ │ │ │ ├── boxm2_cam_tableau.cxx │ │ │ │ ├── boxm2_cam_tableau.h │ │ │ │ ├── boxm2_include_glew.h │ │ │ │ ├── boxm2_ocl_change_tableau.cxx │ │ │ │ ├── boxm2_ocl_change_tableau.h │ │ │ │ ├── boxm2_ocl_render_tableau.cxx │ │ │ │ ├── boxm2_ocl_render_tableau.h │ │ │ │ ├── boxm2_ocl_render_trajectory_tableau.cxx │ │ │ │ ├── boxm2_ocl_render_trajectory_tableau.h │ │ │ │ ├── boxm2_ocl_update_tableau.cxx │ │ │ │ ├── boxm2_ocl_update_tableau.h │ │ │ │ ├── boxm2_trajectory.cxx │ │ │ │ ├── boxm2_trajectory.h │ │ │ │ ├── boxm2_view_utils.cxx │ │ │ │ ├── boxm2_view_utils.h │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_view_processes.h │ │ │ │ │ ├── boxm2_view_register.cxx │ │ │ │ │ ├── boxm2_view_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── boxm2_view_expected_image_process.cxx │ │ │ │ │ │ ├── boxm2_view_init_trajectory_process.cxx │ │ │ │ │ │ ├── boxm2_view_trajectory_direct_process.cxx │ │ │ │ │ │ ├── boxm2_view_trajectory_next_process.cxx │ │ │ │ │ │ └── boxm2_view_trajectory_size_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_camera_to_vrml.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ └── test_include.cxx │ │ │ └── volm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ ├── vbl_smart_ptr+boxm2_volm_loc_hypotheses-.cxx │ │ │ │ └── vbl_smart_ptr+boxm2_volm_wr3db_index-.cxx │ │ │ │ ├── boxm2_volm_io.cxx │ │ │ │ ├── boxm2_volm_io.h │ │ │ │ ├── boxm2_volm_locations.cxx │ │ │ │ ├── boxm2_volm_locations.h │ │ │ │ ├── boxm2_volm_locations_sptr.h │ │ │ │ ├── boxm2_volm_matcher_p0.cxx │ │ │ │ ├── boxm2_volm_matcher_p0.h │ │ │ │ ├── boxm2_volm_matcher_p1.cxx │ │ │ │ ├── boxm2_volm_matcher_p1.h │ │ │ │ ├── boxm2_volm_wr3db_index.cxx │ │ │ │ ├── boxm2_volm_wr3db_index.h │ │ │ │ ├── boxm2_volm_wr3db_index_sptr.h │ │ │ │ ├── cl │ │ │ │ ├── generalized_volm_obj_based_matching_no_grd_no_sky_with_orient.cl │ │ │ │ ├── generalized_volm_obj_based_matching_no_grd_with_orient.cl │ │ │ │ ├── generalized_volm_obj_based_matching_no_sky_with_orient.cl │ │ │ │ └── generalized_volm_obj_based_matching_with_orient.cl │ │ │ │ ├── conf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_volm_conf_matcher.cxx │ │ │ │ ├── boxm2_volm_conf_matcher.h │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_volm_conf_create_candidate_region.cxx │ │ │ │ │ ├── boxm2_volm_conf_create_prob_map.cxx │ │ │ │ │ └── boxm2_volm_conf_matcher_exe.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── desc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_volm_desc_ex_indexer.cxx │ │ │ │ ├── boxm2_volm_desc_ex_indexer.h │ │ │ │ ├── boxm2_volm_desc_ex_land_only_indexer.cxx │ │ │ │ ├── boxm2_volm_desc_ex_land_only_indexer.h │ │ │ │ ├── boxm2_volm_desc_ex_land_only_matcher.cxx │ │ │ │ ├── boxm2_volm_desc_ex_land_only_matcher.h │ │ │ │ ├── boxm2_volm_desc_ex_matcher.cxx │ │ │ │ ├── boxm2_volm_desc_ex_matcher.h │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boxm2_volm_desc_ex_create_indexer.cxx │ │ │ │ │ └── boxm2_volm_desc_ex_matcher.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── exe │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_pass0_compile_results.cxx │ │ │ │ ├── boxm2_volm_get_best_matcher_from_cand_list.cxx │ │ │ │ ├── boxm2_volm_prepare_location_hypotheses.cxx │ │ │ │ ├── boxm2_volm_prepare_xyz_images_with_classes2_forts.cxx │ │ │ │ ├── boxm2_volm_segment_index.cxx │ │ │ │ ├── boxm2_volumetric_create_candidate_list.cxx │ │ │ │ ├── boxm2_volumetric_create_prob_map.cxx │ │ │ │ ├── boxm2_volumetric_evaluate_roi.cxx │ │ │ │ ├── boxm2_volumetric_evaluate_roi_max_score.cxx │ │ │ │ ├── boxm2_volumetric_matcher_p0.cxx │ │ │ │ ├── boxm2_volumetric_matcher_p1.cxx │ │ │ │ ├── boxm2_volumetric_matcher_p1_integration.cxx │ │ │ │ ├── boxm2_volumetric_pinpoint.cxx │ │ │ │ ├── boxm2_volumetric_post_process_p1_integration.cxx │ │ │ │ ├── boxm2_volumetric_pre_process_p1_integration.cxx │ │ │ │ └── boxm2_volumetric_render_index_depth_img.cxx │ │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── vbl_io_smart_ptr+boxm2_volm_loc_hypotheses-.cxx │ │ │ │ ├── boxm2_volm_io_locations.cxx │ │ │ │ ├── boxm2_volm_io_locations.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_volm_processes.h │ │ │ │ ├── boxm2_volm_register.cxx │ │ │ │ ├── boxm2_volm_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── boxm2_change_scene_res_by_geo_cover_process.cxx │ │ │ │ │ ├── boxm2_create_all_index_process.cxx │ │ │ │ │ ├── boxm2_create_index_process.cxx │ │ │ │ │ ├── boxm2_create_index_process2.cxx │ │ │ │ │ ├── boxm2_create_label_index_process.cxx │ │ │ │ │ ├── boxm2_geo_cover_with_osm_to_xyz_process.cxx │ │ │ │ │ ├── boxm2_load_score_binary_process.cxx │ │ │ │ │ └── boxm2_location_pin_point_ranking_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_volm_locations.cxx │ │ │ │ ├── test_volm_matcher_p0.cxx │ │ │ │ ├── test_volm_matcher_p1.cxx │ │ │ │ └── test_volm_wr3db_ind.cxx │ │ ├── boxm2_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── reg_boxm2.cxx │ │ │ ├── reg_boxm2.h │ │ │ ├── sample.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── boxm2_multi │ │ │ ├── CMakeLists.txt │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_multi_pre_vis_inf.cxx │ │ │ │ ├── boxm2_multi_pre_vis_inf.h │ │ │ │ ├── boxm2_multi_refine.cxx │ │ │ │ ├── boxm2_multi_refine.h │ │ │ │ ├── boxm2_multi_render.cxx │ │ │ │ ├── boxm2_multi_render.h │ │ │ │ ├── boxm2_multi_store_aux.cxx │ │ │ │ ├── boxm2_multi_store_aux.h │ │ │ │ ├── boxm2_multi_update.cxx │ │ │ │ ├── boxm2_multi_update.h │ │ │ │ ├── boxm2_multi_update_cell.cxx │ │ │ │ ├── boxm2_multi_update_cell.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── boxm2_multi_cache.cxx │ │ │ ├── boxm2_multi_cache.h │ │ │ ├── boxm2_multi_cache_group.cxx │ │ │ ├── boxm2_multi_cache_group.h │ │ │ ├── boxm2_multi_util.cxx │ │ │ ├── boxm2_multi_util.h │ │ │ ├── exe │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boxm2_multi_render.cxx │ │ │ │ └── boxm2_multi_update.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── brdb_value_t+boxm2_multi_cache_sptr-.cxx │ │ │ │ ├── boxm2_multi_processes.h │ │ │ │ ├── boxm2_multi_register.cxx │ │ │ │ ├── boxm2_multi_register.h │ │ │ │ └── processes │ │ │ │ │ ├── boxm2_create_multi_cache_process.cxx │ │ │ │ │ ├── boxm2_multi_render_process.cxx │ │ │ │ │ └── boxm2_multi_update_process.cxx │ │ │ ├── pyscripts │ │ │ │ └── boxm2_multi_adaptor.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── boxm_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── reg_boxm.cxx │ │ │ ├── reg_boxm.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── boxm_bridge │ │ │ ├── CMakeLists.txt │ │ │ ├── boxm2_normails_to_boxm.cxx │ │ │ ├── boxm2_to_boxm.cxx │ │ │ ├── boxm2_to_boxm.h │ │ │ ├── boxm_normals_to_boxm2.cxx │ │ │ ├── boxm_to_boxm2.cxx │ │ │ ├── boxm_to_boxm2.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── brec │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bgrl2_edge+brec_part_base-.cxx │ │ │ │ ├── bgrl2_edge+brec_part_instance-.cxx │ │ │ │ ├── bgrl2_graph+brec_part_base.brec_hierarchy_edge-.cxx │ │ │ │ ├── bgrl2_vertex+brec_hierarchy_edge-.cxx │ │ │ │ ├── vbl_io_smart_ptr+brec_part_hierarchy-.cxx │ │ │ │ ├── vbl_io_smart_ptr+brec_part_hierarchy_detector-.cxx │ │ │ │ ├── vbl_io_smart_ptr+brec_part_hierarchy_learner-.cxx │ │ │ │ ├── vbl_smart_ptr+brec_hierarchy_edge-.cxx │ │ │ │ ├── vbl_smart_ptr+brec_part_base-.cxx │ │ │ │ ├── vbl_smart_ptr+brec_part_gaussian-.cxx │ │ │ │ ├── vbl_smart_ptr+brec_part_hierarchy-.cxx │ │ │ │ ├── vbl_smart_ptr+brec_part_hierarchy_detector-.cxx │ │ │ │ ├── vbl_smart_ptr+brec_part_hierarchy_learner-.cxx │ │ │ │ └── vgl_rtree+brec_part_instance_sptr.vgl_box_2d+float-.rtree_brec_instance_box_2d+float--.cxx │ │ │ ├── brec_bayesian_propagation.cxx │ │ │ ├── brec_bayesian_propagation.h │ │ │ ├── brec_bg_pair_density.cxx │ │ │ ├── brec_bg_pair_density.h │ │ │ ├── brec_fg_bg_pair_density.cxx │ │ │ ├── brec_fg_bg_pair_density.h │ │ │ ├── brec_fg_pair_density.cxx │ │ │ ├── brec_fg_pair_density.h │ │ │ ├── brec_glitch.cxx │ │ │ ├── brec_glitch.h │ │ │ ├── brec_hierarchy_edge.cxx │ │ │ ├── brec_hierarchy_edge.h │ │ │ ├── brec_hierarchy_edge_sptr.h │ │ │ ├── brec_pair_density.cxx │ │ │ ├── brec_pair_density.h │ │ │ ├── brec_param_estimation.cxx │ │ │ ├── brec_param_estimation.h │ │ │ ├── brec_part_base.cxx │ │ │ ├── brec_part_base.h │ │ │ ├── brec_part_base_sptr.h │ │ │ ├── brec_part_gaussian.cxx │ │ │ ├── brec_part_gaussian.h │ │ │ ├── brec_part_gaussian_sptr.h │ │ │ ├── brec_part_hierarchy.cxx │ │ │ ├── brec_part_hierarchy.h │ │ │ ├── brec_part_hierarchy_builder.cxx │ │ │ ├── brec_part_hierarchy_builder.h │ │ │ ├── brec_part_hierarchy_detector.cxx │ │ │ ├── brec_part_hierarchy_detector.h │ │ │ ├── brec_part_hierarchy_detector_sptr.h │ │ │ ├── brec_part_hierarchy_learner.cxx │ │ │ ├── brec_part_hierarchy_learner.h │ │ │ ├── brec_part_hierarchy_learner_sptr.h │ │ │ ├── brec_part_hierarchy_sptr.h │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+brec_part_hierarchy_detector_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+brec_part_hierarchy_learner_sptr-.cxx │ │ │ │ │ └── brdb_value_t+brec_part_hierarchy_sptr-.cxx │ │ │ │ ├── brec_processes.h │ │ │ │ ├── brec_register.cxx │ │ │ │ ├── brec_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── brec_bayesian_update_process.cxx │ │ │ │ │ ├── brec_change_area_process.cxx │ │ │ │ │ ├── brec_construct_op_models_processes.cxx │ │ │ │ │ ├── brec_create_mog_image_process.cxx │ │ │ │ │ ├── brec_density_to_prob_map_process.cxx │ │ │ │ │ ├── brec_detector_processes.cxx │ │ │ │ │ ├── brec_glitch_overlay_process.cxx │ │ │ │ │ ├── brec_glitch_process.cxx │ │ │ │ │ ├── brec_hierarchy_processes.cxx │ │ │ │ │ ├── brec_learner_processes.cxx │ │ │ │ │ ├── brec_learner_update_processes.cxx │ │ │ │ │ ├── brec_prob_map_area_process.cxx │ │ │ │ │ ├── brec_prob_map_roc_compute_process.cxx │ │ │ │ │ ├── brec_prob_map_supress_process.cxx │ │ │ │ │ ├── brec_prob_map_threshold_process.cxx │ │ │ │ │ ├── brec_recognize_structure_process.cxx │ │ │ │ │ └── brec_update_changes_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_brec_create_mog_image_process.cxx │ │ │ │ │ ├── test_brec_update_changes_process.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ └── test_include.cxx │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── digits_small.png │ │ │ │ ├── normalized0_cropped.png │ │ │ │ ├── normalized0_gt_cropped.png │ │ │ │ ├── out_mog_0_mean_img_cropped.tiff │ │ │ │ ├── out_mog_0_std_dev_img_cropped.tiff │ │ │ │ ├── test_brec_densities.cxx │ │ │ │ ├── test_brec_hierarchy.cxx │ │ │ │ ├── test_brec_hierarchy_builder.cxx │ │ │ │ ├── test_brec_hierarchy_detector.cxx │ │ │ │ ├── test_brec_hierarchy_detector2.cxx │ │ │ │ ├── test_brec_hierarchy_detector_w_models.cxx │ │ │ │ ├── test_brec_hierarchy_edge.cxx │ │ │ │ ├── test_brec_part_hierarchy_learner.cxx │ │ │ │ ├── test_brec_parts.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_param_estimation.cxx │ │ │ │ ├── test_view_0_cropped.png │ │ │ │ ├── test_view_0_mask_cropped.bin │ │ │ │ └── test_view_0_prob_map_cropped.tiff │ │ ├── brec_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── example_change_map_update_and_recognize_roc.py │ │ │ ├── example_change_map_update_and_roc.py │ │ │ ├── reg_brec.cxx │ │ │ ├── reg_brec.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── brip │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── brip_blobwise_mutual_info+float-.cxx │ │ │ │ ├── brip_histogram+double-.cxx │ │ │ │ ├── brip_histogram+float-.cxx │ │ │ │ ├── brip_histogram+vxl_byte-.cxx │ │ │ │ ├── brip_max_scale_response+float-.cxx │ │ │ │ ├── brip_mutual_info+double-.cxx │ │ │ │ ├── brip_mutual_info+float-.cxx │ │ │ │ ├── brip_mutual_info+vxl_byte-.cxx │ │ │ │ ├── brip_quadtree_utils+float-.cxx │ │ │ │ ├── vbl_smart_ptr+brip_quadtree_node_base-.cxx │ │ │ │ ├── vbl_smart_ptr+brip_region_pixel-.cxx │ │ │ │ └── vbl_smart_ptr+brip_roi-.cxx │ │ │ ├── brip_blobwise_mutual_info.h │ │ │ ├── brip_blobwise_mutual_info.hxx │ │ │ ├── brip_filter_bank.cxx │ │ │ ├── brip_filter_bank.h │ │ │ ├── brip_gain_offset_solver.cxx │ │ │ ├── brip_gain_offset_solver.h │ │ │ ├── brip_gaussian_kernel.h │ │ │ ├── brip_histogram.h │ │ │ ├── brip_histogram.hxx │ │ │ ├── brip_interp_kernel.h │ │ │ ├── brip_kernel.h │ │ │ ├── brip_label_equivalence.cxx │ │ │ ├── brip_label_equivalence.h │ │ │ ├── brip_line_generator.cxx │ │ │ ├── brip_line_generator.h │ │ │ ├── brip_max_scale_response.h │ │ │ ├── brip_max_scale_response.hxx │ │ │ ├── brip_mutual_info.h │ │ │ ├── brip_mutual_info.hxx │ │ │ ├── brip_para_cvrg.cxx │ │ │ ├── brip_para_cvrg.h │ │ │ ├── brip_para_cvrg_params.cxx │ │ │ ├── brip_para_cvrg_params.h │ │ │ ├── brip_phase_correlation.cxx │ │ │ ├── brip_phase_correlation.h │ │ │ ├── brip_quadtree_node.h │ │ │ ├── brip_quadtree_node_base_sptr.h │ │ │ ├── brip_quadtree_utils.h │ │ │ ├── brip_quadtree_utils.hxx │ │ │ ├── brip_rect_mask.cxx │ │ │ ├── brip_rect_mask.h │ │ │ ├── brip_region_pixel.cxx │ │ │ ├── brip_region_pixel.h │ │ │ ├── brip_region_pixel_sptr.h │ │ │ ├── brip_roi.cxx │ │ │ ├── brip_roi.h │ │ │ ├── brip_roi_sptr.h │ │ │ ├── brip_subpix_convolution.h │ │ │ ├── brip_vil1_float_ops.cxx │ │ │ ├── brip_vil1_float_ops.h │ │ │ ├── brip_vil_float_ops.cxx │ │ │ ├── brip_vil_float_ops.h │ │ │ ├── brip_vil_nitf_ops.cxx │ │ │ ├── brip_vil_nitf_ops.h │ │ │ ├── brip_vil_ops.h │ │ │ ├── brip_watershed.cxx │ │ │ ├── brip_watershed.h │ │ │ ├── brip_watershed_params.cxx │ │ │ ├── brip_watershed_params.h │ │ │ ├── introduction_doxy.txt │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_Horn_Schunck.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_extrema.cxx │ │ │ │ ├── test_filter_bank.cxx │ │ │ │ ├── test_fourier.cxx │ │ │ │ ├── test_gain_offset_solver.cxx │ │ │ │ ├── test_histogram.cxx │ │ │ │ ├── test_homography.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_label_equivalence.cxx │ │ │ │ ├── test_lucas_kanade.cxx │ │ │ │ ├── test_mask.cxx │ │ │ │ ├── test_max_scale_response.cxx │ │ │ │ ├── test_mutual_info.cxx │ │ │ │ ├── test_nitf_ops.cxx │ │ │ │ ├── test_phase_correlation.cxx │ │ │ │ ├── test_quadtree.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ └── test_watershed.cxx │ │ ├── bstm │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── brdb_value_t+bstm_scene_sptr-.cxx │ │ │ │ ├── vbl_smart_ptr+bstm_block_metadata-.cxx │ │ │ │ └── vbl_smart_ptr+bstm_scene-.cxx │ │ │ ├── basic │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bstm_block_id.cxx │ │ │ │ ├── bstm_block_id.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── bstm_block.cxx │ │ │ ├── bstm_block.h │ │ │ ├── bstm_block_metadata.cxx │ │ │ ├── bstm_block_metadata.h │ │ │ ├── bstm_data_base.cxx │ │ │ ├── bstm_data_base.h │ │ │ ├── bstm_data_traits.h │ │ │ ├── bstm_scene.cxx │ │ │ ├── bstm_scene.h │ │ │ ├── bstm_scene_parser.cxx │ │ │ ├── bstm_scene_parser.h │ │ │ ├── bstm_time_block.cxx │ │ │ ├── bstm_time_block.h │ │ │ ├── bstm_time_tree.cxx │ │ │ ├── bstm_time_tree.h │ │ │ ├── bstm_util.cxx │ │ │ ├── bstm_util.h │ │ │ ├── cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── algo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── bstm_copy_data_to_future_function+BSTM_GAUSS_RGB-.cxx │ │ │ │ │ │ ├── bstm_copy_data_to_future_function+BSTM_MOG3_GREY-.cxx │ │ │ │ │ │ ├── bstm_copy_data_to_future_function+BSTM_MOG6_VIEW.cxx │ │ │ │ │ │ ├── bstm_ingest_boxm2_function+BSTM_GAUSS_RGB-.cxx │ │ │ │ │ │ ├── bstm_ingest_boxm2_function+BSTM_GAUSS_RGB_VIEW-.cxx │ │ │ │ │ │ ├── bstm_ingest_boxm2_function+BSTM_MOG3_GREY-.cxx │ │ │ │ │ │ ├── bstm_ingest_boxm2_function+BSTM_MOG6_VIEW.cxx │ │ │ │ │ │ ├── bstm_refine_blk_in_space_function+BSTM_GAUSS_RGB.cxx │ │ │ │ │ │ ├── bstm_refine_blk_in_space_function+BSTM_MOG3_GREY-.cxx │ │ │ │ │ │ ├── bstm_refine_blk_in_space_function+BSTM_MOG6_VIEW-.cxx │ │ │ │ │ │ ├── bstm_refine_blk_in_time_function+BSTM_GAUSS_RGB-.cxx │ │ │ │ │ │ ├── bstm_refine_blk_in_time_function+BSTM_MOG3_GREY-.cxx │ │ │ │ │ │ └── bstm_refine_blk_in_time_function+BSTM_MOG6_VIEW-.cxx │ │ │ │ │ ├── bstm_analyze_coherency_function.cxx │ │ │ │ │ ├── bstm_analyze_coherency_function.h │ │ │ │ │ ├── bstm_copy_data_to_future_function.h │ │ │ │ │ ├── bstm_copy_data_to_future_function.hxx │ │ │ │ │ ├── bstm_data_similarity_traits.h │ │ │ │ │ ├── bstm_ingest_boxm2_scene_function.h │ │ │ │ │ ├── bstm_ingest_boxm2_scene_function.hxx │ │ │ │ │ ├── bstm_label_bb_function.h │ │ │ │ │ ├── bstm_majority_filter.cxx │ │ │ │ │ ├── bstm_majority_filter.h │ │ │ │ │ ├── bstm_merge_tt_function.cxx │ │ │ │ │ ├── bstm_merge_tt_function.h │ │ │ │ │ ├── bstm_refine_blk_in_space_function.h │ │ │ │ │ ├── bstm_refine_blk_in_space_function.hxx │ │ │ │ │ ├── bstm_refine_blk_in_spacetime_function.cxx │ │ │ │ │ ├── bstm_refine_blk_in_spacetime_function.h │ │ │ │ │ ├── bstm_refine_blk_in_time_function.h │ │ │ │ │ ├── bstm_refine_blk_in_time_function.hxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ │ ├── test_template_include.cxx │ │ │ │ │ │ └── test_time_tree_ingestion.cxx │ │ │ │ └── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bstm_cpp_processes.h │ │ │ │ │ ├── bstm_cpp_register.cxx │ │ │ │ │ ├── bstm_cpp_register.h │ │ │ │ │ ├── processes │ │ │ │ │ ├── bstm_cpp_analyze_coherency_process.cxx │ │ │ │ │ ├── bstm_cpp_box_roc_process.cxx │ │ │ │ │ ├── bstm_cpp_change_btw_frames_process.cxx │ │ │ │ │ ├── bstm_cpp_copy_data_to_future_process.cxx │ │ │ │ │ ├── bstm_cpp_export_point_cloud_process.cxx │ │ │ │ │ ├── bstm_cpp_extract_point_cloud_process.cxx │ │ │ │ │ ├── bstm_cpp_ingest_boxm2_scene_process.cxx │ │ │ │ │ ├── bstm_cpp_label_bb_process.cxx │ │ │ │ │ ├── bstm_cpp_label_tt_depth_process.cxx │ │ │ │ │ ├── bstm_cpp_majority_filter_process.cxx │ │ │ │ │ ├── bstm_cpp_merge_tt_process.cxx │ │ │ │ │ ├── bstm_cpp_refine_space_process.cxx │ │ │ │ │ ├── bstm_cpp_refine_spacetime_process.cxx │ │ │ │ │ └── bstm_cpp_refine_tt_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+bstm_cache_sptr-.cxx │ │ │ │ │ └── vbl_smart_ptr+bstm_cache-.cxx │ │ │ │ ├── bstm_cache.cxx │ │ │ │ ├── bstm_cache.h │ │ │ │ ├── bstm_lru_cache.cxx │ │ │ │ ├── bstm_lru_cache.h │ │ │ │ ├── bstm_sio_mgr.cxx │ │ │ │ ├── bstm_sio_mgr.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── ocl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+bstm_opencl_cache_sptr-.cxx │ │ │ │ │ └── vbl_smart_ptr+bstm_opencl_cache-.cxx │ │ │ │ ├── algo │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bstm_ocl_annealed_particle_filter.cxx │ │ │ │ │ ├── bstm_ocl_annealed_particle_filter.h │ │ │ │ │ ├── bstm_ocl_change_detection.cxx │ │ │ │ │ ├── bstm_ocl_change_detection.h │ │ │ │ │ ├── bstm_ocl_minfo_function.cxx │ │ │ │ │ ├── bstm_ocl_minfo_function.h │ │ │ │ │ ├── bstm_ocl_particle_filter.cxx │ │ │ │ │ ├── bstm_ocl_particle_filter.h │ │ │ │ │ ├── bstm_ocl_render_expected_image_function.cxx │ │ │ │ │ ├── bstm_ocl_render_expected_image_function.h │ │ │ │ │ ├── bstm_ocl_update.cxx │ │ │ │ │ ├── bstm_ocl_update.h │ │ │ │ │ ├── bstm_ocl_update_color.cxx │ │ │ │ │ ├── bstm_ocl_update_color.h │ │ │ │ │ ├── bstm_ocl_update_viewdep.cxx │ │ │ │ │ ├── bstm_ocl_update_viewdep.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── bstm_ocl_util.cxx │ │ │ │ ├── bstm_ocl_util.h │ │ │ │ ├── bstm_opencl_cache.cxx │ │ │ │ ├── bstm_opencl_cache.h │ │ │ │ ├── bstm_scene_info.h │ │ │ │ ├── cl │ │ │ │ │ ├── atomics_util.cl │ │ │ │ │ ├── backproject.cl │ │ │ │ │ ├── bit │ │ │ │ │ │ ├── bit_tree_library_functions.cl │ │ │ │ │ │ ├── cast_ray_bit.cl │ │ │ │ │ │ ├── normalize_kernels.cl │ │ │ │ │ │ ├── render_bit_scene.cl │ │ │ │ │ │ ├── render_rgb.cl │ │ │ │ │ │ ├── time_tree_library_functions.cl │ │ │ │ │ │ ├── update_color.cl │ │ │ │ │ │ ├── update_kernels.cl │ │ │ │ │ │ └── update_view_dep_app_kernels.cl │ │ │ │ │ ├── change │ │ │ │ │ │ ├── change_detection.cl │ │ │ │ │ │ └── two_pass_change_detection.cl │ │ │ │ │ ├── expected_functor.cl │ │ │ │ │ ├── pixel_conversion.cl │ │ │ │ │ ├── ray_bundle_library_functions.cl │ │ │ │ │ ├── ray_bundle_library_opt.cl │ │ │ │ │ ├── scene_info.cl │ │ │ │ │ ├── statistics_library_functions.cl │ │ │ │ │ ├── tracking │ │ │ │ │ │ ├── minfo.cl │ │ │ │ │ │ └── particle_filter.cl │ │ │ │ │ ├── update_color_functors.cl │ │ │ │ │ ├── update_functors.cl │ │ │ │ │ ├── view_dep_app_helper_functions.cl │ │ │ │ │ └── view_dep_app_update_functors.cl │ │ │ │ ├── exe │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bstm_ocl_multi_render_view.cxx │ │ │ │ │ └── bstm_ocl_render_view.cxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bstm_ocl_processes.h │ │ │ │ │ ├── bstm_ocl_register.cxx │ │ │ │ │ ├── bstm_ocl_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── bstm_ocl_change_detection_process.cxx │ │ │ │ │ │ ├── bstm_ocl_clear_cache_process.cxx │ │ │ │ │ │ ├── bstm_ocl_create_cache_process.cxx │ │ │ │ │ │ ├── bstm_ocl_get_surface_pt_process.cxx │ │ │ │ │ │ ├── bstm_ocl_label_along_ray_process.cxx │ │ │ │ │ │ ├── bstm_ocl_minfo_process.cxx │ │ │ │ │ │ ├── bstm_ocl_render_expected_change_process.cxx │ │ │ │ │ │ ├── bstm_ocl_render_expected_image_process.cxx │ │ │ │ │ │ ├── bstm_ocl_render_gl_expected_color_process.cxx │ │ │ │ │ │ ├── bstm_ocl_render_gl_expected_image_process.cxx │ │ │ │ │ │ ├── bstm_ocl_track_process.cxx │ │ │ │ │ │ ├── bstm_ocl_update_change_process.cxx │ │ │ │ │ │ ├── bstm_ocl_update_color_process.cxx │ │ │ │ │ │ └── bstm_ocl_update_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ └── test_include.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bstm_processes.h │ │ │ │ ├── bstm_register.cxx │ │ │ │ ├── bstm_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bstm_add_block_process.cxx │ │ │ │ │ ├── bstm_boxm2_scene_to_bstm_process.cxx │ │ │ │ │ ├── bstm_bundle_to_scene_process.cxx │ │ │ │ │ ├── bstm_clear_cache_process.cxx │ │ │ │ │ ├── bstm_create_cache_process.cxx │ │ │ │ │ ├── bstm_create_scene_process.cxx │ │ │ │ │ ├── bstm_load_scene_process.cxx │ │ │ │ │ ├── bstm_scene_statistics_process.cxx │ │ │ │ │ └── bstm_write_cache_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── pyscripts │ │ │ │ ├── bstm_adaptor.py │ │ │ │ ├── bstm_register.py │ │ │ │ ├── bstm_util.py │ │ │ │ ├── bstm_vil_adaptor.py │ │ │ │ └── bstm_vpgl_adaptor.py │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_block.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_time_tree.cxx │ │ │ ├── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bstm_cams_and_box_to_scene.cxx │ │ │ │ └── bstm_cams_and_box_to_scene.h │ │ │ └── view │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bstm_cam_tableau.cxx │ │ │ │ ├── bstm_cam_tableau.h │ │ │ │ ├── bstm_include_glew.h │ │ │ │ ├── bstm_ocl_multi_render_tableau.cxx │ │ │ │ ├── bstm_ocl_multi_render_tableau.h │ │ │ │ ├── bstm_ocl_render_tableau.cxx │ │ │ │ ├── bstm_ocl_render_tableau.h │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bstm_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── reg_bstm.cxx │ │ │ ├── reg_bstm.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bvpl │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bvpl_subgrid_iterator+bsta_gauss_sf1-.cxx │ │ │ │ ├── bvpl_subgrid_iterator+bvxm_opinion-.cxx │ │ │ │ ├── bvpl_subgrid_iterator+float-.cxx │ │ │ │ ├── bvpl_subgrid_iterator+uint-.cxx │ │ │ │ ├── bvpl_subgrid_iterator+vnl_float_3-.cxx │ │ │ │ ├── bvpl_voxel_subgrid+bsta_gauss_sf1-.cxx │ │ │ │ ├── bvpl_voxel_subgrid+bvxm_opinion-.cxx │ │ │ │ ├── bvpl_voxel_subgrid+float-.cxx │ │ │ │ ├── bvpl_voxel_subgrid+int-.cxx │ │ │ │ ├── bvpl_voxel_subgrid+uint-.cxx │ │ │ │ ├── bvpl_voxel_subgrid+vnl_float_3-.cxx │ │ │ │ ├── vbl_array_3d+bvxm_opinion-.cxx │ │ │ │ └── vbl_smart_ptr+bvpl_subgrid_iterator_base-.cxx │ │ │ ├── bvpl_combined_neighb_operator.h │ │ │ ├── bvpl_direction_to_color_map.cxx │ │ │ ├── bvpl_direction_to_color_map.h │ │ │ ├── bvpl_discriminative_non_max_suppression.h │ │ │ ├── bvpl_neighb_operator.h │ │ │ ├── bvpl_octree │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── boct_tree+short.bvpl_octree_sample+bsta_num_obs+bsta_gauss_sf1---.cxx │ │ │ │ │ ├── boct_tree+short.bvpl_octree_sample+float--.cxx │ │ │ │ │ ├── boct_tree+short.bvpl_pca_basis_sample+10--.cxx │ │ │ │ │ ├── boct_tree+short.bvpl_taylor_basis2_sample-.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.bvpl_octree_sample+bsta_num_obs+bsta_gauss_sf1----.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.bvpl_octree_sample+float---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.bvpl_pca_basis_sample+10---.cxx │ │ │ │ │ ├── boxm_block+boct_tree+short.bvpl_taylor_basis2_sample--.cxx │ │ │ │ │ ├── bvpl_global_pca+125-.cxx │ │ │ │ │ ├── bvpl_global_taylor+double.10-.cxx │ │ │ │ │ ├── bvpl_global_taylor+float.3-.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvpl_discover_pca_kernels-.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvpl_global_corners-.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvpl_global_pca+125--.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvpl_global_taylor+double.10--.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvpl_pca_error_scenes-.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvpl_taylor_scenes_map-.cxx │ │ │ │ │ ├── vnl_matrix_fixed+double.125.125-.cxx │ │ │ │ │ └── vnl_vector_fixed+double.125-.cxx │ │ │ │ ├── bvpl_block_kernel_operator.h │ │ │ │ ├── bvpl_block_vector_operator.h │ │ │ │ ├── bvpl_cell_data_traits.h │ │ │ │ ├── bvpl_corner_detector.h │ │ │ │ ├── bvpl_corner_functors.h │ │ │ │ ├── bvpl_discover_pca_kernels.cxx │ │ │ │ ├── bvpl_discover_pca_kernels.h │ │ │ │ ├── bvpl_gauss3D_steerable_filters.cxx │ │ │ │ ├── bvpl_gauss3D_steerable_filters.h │ │ │ │ ├── bvpl_global_corners.cxx │ │ │ │ ├── bvpl_global_corners.h │ │ │ │ ├── bvpl_global_pca.cxx │ │ │ │ ├── bvpl_global_pca.h │ │ │ │ ├── bvpl_global_pca.hxx │ │ │ │ ├── bvpl_global_taylor.cxx │ │ │ │ ├── bvpl_global_taylor.h │ │ │ │ ├── bvpl_global_taylor.hxx │ │ │ │ ├── bvpl_octree_kernel_operator.h │ │ │ │ ├── bvpl_octree_neighbors.h │ │ │ │ ├── bvpl_octree_vector_operator.h │ │ │ │ ├── bvpl_octree_vector_operator_impl.h │ │ │ │ ├── bvpl_octree_vrml_util.h │ │ │ │ ├── bvpl_pca_error_scenes.cxx │ │ │ │ ├── bvpl_pca_error_scenes.h │ │ │ │ ├── bvpl_scene_kernel_operator.h │ │ │ │ ├── bvpl_scene_neighborhood_operator.cxx │ │ │ │ ├── bvpl_scene_neighborhood_operator.h │ │ │ │ ├── bvpl_scene_statistics.cxx │ │ │ │ ├── bvpl_scene_statistics.h │ │ │ │ ├── bvpl_scene_vector_operator.h │ │ │ │ ├── bvpl_taylor_basis.cxx │ │ │ │ ├── bvpl_taylor_basis.h │ │ │ │ ├── bvpl_taylor_scenes_map.cxx │ │ │ │ ├── bvpl_taylor_scenes_map.h │ │ │ │ ├── io │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── vbl_io_smart_ptr+bvpl_discover_pca_kernels-.cxx │ │ │ │ │ │ ├── vbl_io_smart_ptr+bvpl_global_corners-.cxx │ │ │ │ │ │ ├── vbl_io_smart_ptr+bvpl_global_pca+125--.cxx │ │ │ │ │ │ ├── vbl_io_smart_ptr+bvpl_global_taylor+double.10--.cxx │ │ │ │ │ │ ├── vbl_io_smart_ptr+bvpl_pca_error_scenes-.cxx │ │ │ │ │ │ └── vbl_io_smart_ptr+bvpl_taylor_scenes_map-.cxx │ │ │ │ │ ├── bvpl_io_discover_pca_kernels.cxx │ │ │ │ │ ├── bvpl_io_discover_pca_kernels.h │ │ │ │ │ ├── bvpl_io_global_corners.cxx │ │ │ │ │ ├── bvpl_io_global_corners.h │ │ │ │ │ ├── bvpl_io_global_pca.cxx │ │ │ │ │ ├── bvpl_io_global_pca.h │ │ │ │ │ ├── bvpl_io_global_taylor.h │ │ │ │ │ ├── bvpl_io_pca_error_scenes.cxx │ │ │ │ │ ├── bvpl_io_pca_error_scenes.h │ │ │ │ │ ├── bvpl_io_taylor_scenes_map.cxx │ │ │ │ │ ├── bvpl_io_taylor_scenes_map.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── brdb_value_t+boxm_scene_base_sptr-.cxx │ │ │ │ │ │ ├── brdb_value_t+bvpl_discover_pca_kernels_sptr-.cxx │ │ │ │ │ │ ├── brdb_value_t+bvpl_global_corners_sptr-.cxx │ │ │ │ │ │ ├── brdb_value_t+bvpl_global_pca_125_sptr-.cxx │ │ │ │ │ │ ├── brdb_value_t+bvpl_pca_error_scenes_sptr-.cxx │ │ │ │ │ │ ├── brdb_value_t+bvpl_taylor_scenes_map_sptr-.cxx │ │ │ │ │ │ └── brdb_value_t+vbl_smart_ptr+bvpl_global_taylor+double.10---.cxx │ │ │ │ │ ├── bvpl_octree_processes.h │ │ │ │ │ ├── bvpl_octree_register.cxx │ │ │ │ │ ├── bvpl_octree_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── bvpl_block_avg_value_process.cxx │ │ │ │ │ │ ├── bvpl_block_kernel_operator_process.cxx │ │ │ │ │ │ ├── bvpl_compute_gauss_gradients.cxx │ │ │ │ │ │ ├── bvpl_create_scene_process.cxx │ │ │ │ │ │ ├── bvpl_grad_scene_to_bin_process.cxx │ │ │ │ │ │ ├── bvpl_nonmax_supp_process.cxx │ │ │ │ │ │ ├── bvpl_plane_propagate_process.cxx │ │ │ │ │ │ ├── bvpl_save_vrml_process.cxx │ │ │ │ │ │ ├── bvpl_scene_histogram_process.cxx │ │ │ │ │ │ ├── bvpl_scene_kernel_operator_process.cxx │ │ │ │ │ │ ├── bvpl_scene_vector_operator_process.cxx │ │ │ │ │ │ ├── corners │ │ │ │ │ │ │ ├── bvpl_compute_beaudet_measure_process.cxx │ │ │ │ │ │ │ ├── bvpl_compute_harris_measure_process.cxx │ │ │ │ │ │ │ ├── bvpl_corner_statistics_process.cxx │ │ │ │ │ │ │ ├── bvpl_load_global_corners_process.cxx │ │ │ │ │ │ │ └── bvpl_threshold_corners_process.cxx │ │ │ │ │ │ ├── pca │ │ │ │ │ │ │ ├── bvpl_add_pca_errors_process.cxx │ │ │ │ │ │ │ ├── bvpl_combine_pairwise_statistics_process.cxx │ │ │ │ │ │ │ ├── bvpl_compute_pca_error_block_process.cxx │ │ │ │ │ │ │ ├── bvpl_compute_pca_error_scene_process.cxx │ │ │ │ │ │ │ ├── bvpl_compute_pca_test_error_process.cxx │ │ │ │ │ │ │ ├── bvpl_discover_pca_features_process.cxx │ │ │ │ │ │ │ ├── bvpl_global_pca_process.cxx │ │ │ │ │ │ │ ├── bvpl_init_global_pca_process.cxx │ │ │ │ │ │ │ ├── bvpl_load_global_pca_process.cxx │ │ │ │ │ │ │ ├── bvpl_load_pca_error_scenes_process.cxx │ │ │ │ │ │ │ ├── bvpl_load_pca_info_process.cxx │ │ │ │ │ │ │ ├── bvpl_normalize_pca_training_error_process.cxx │ │ │ │ │ │ │ ├── bvpl_pca_global_add_error_process.cxx │ │ │ │ │ │ │ ├── bvpl_pca_global_proj_error_process.cxx │ │ │ │ │ │ │ ├── bvpl_pca_global_statistics_process.cxx │ │ │ │ │ │ │ └── bvpl_pca_project_process.cxx │ │ │ │ │ │ ├── steerable_filters │ │ │ │ │ │ │ ├── bvpl_compute_sf_raw_response_process.cxx │ │ │ │ │ │ │ └── bvpl_init_sf_response_scene_process.cxx │ │ │ │ │ │ └── taylor │ │ │ │ │ │ │ ├── bvpl_add_taylor_errors_process.cxx │ │ │ │ │ │ │ ├── bvpl_compute_taylor_coefficients_process.cxx │ │ │ │ │ │ │ ├── bvpl_compute_taylor_error_process.cxx │ │ │ │ │ │ │ ├── bvpl_explore_coefficient_scene_process.cxx │ │ │ │ │ │ │ ├── bvpl_init_global_taylor_process.cxx │ │ │ │ │ │ │ ├── bvpl_load_global_taylor_process.cxx │ │ │ │ │ │ │ ├── bvpl_load_taylor_scenes_process.cxx │ │ │ │ │ │ │ ├── bvpl_taylor_global_add_error_process.cxx │ │ │ │ │ │ │ └── bvpl_taylor_global_proj_error_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_bvpl_plane_propagation_process.cxx │ │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── python │ │ │ │ │ ├── pca │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── reconstruction_error │ │ │ │ │ │ │ ├── add_pca_error.py │ │ │ │ │ │ │ ├── compute_pca_error_scene.py │ │ │ │ │ │ │ ├── extract_pca_kernels.py │ │ │ │ │ │ │ ├── pca.sh │ │ │ │ │ │ │ └── save_pca_raw.py │ │ │ │ │ │ └── training_error │ │ │ │ │ │ │ ├── extract_pca_kernels.py │ │ │ │ │ │ │ ├── normalized_training_error.py │ │ │ │ │ │ │ └── pca.sh │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── taylor │ │ │ │ │ │ └── reconstruction_error │ │ │ │ │ │ ├── add_taylor_error.py │ │ │ │ │ │ ├── compute_taylor_error_scene.py │ │ │ │ │ │ ├── explore_histogram.py │ │ │ │ │ │ ├── run_taylor_kernels.py │ │ │ │ │ │ ├── save_taylor_raw.py │ │ │ │ │ │ ├── taylor.sh │ │ │ │ │ │ └── taylor_kernel_threads.py │ │ │ │ ├── sample │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── bsta_gaussian_sphere+float.1-.cxx │ │ │ │ │ │ ├── bvpl_octree_sample+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ │ ├── bvpl_octree_sample+float-.cxx │ │ │ │ │ │ └── bvpl_pca_basis_sample+10-.cxx │ │ │ │ │ ├── bvpl_octree_sample.h │ │ │ │ │ ├── bvpl_octree_sample.hxx │ │ │ │ │ ├── bvpl_pca_basis_sample.h │ │ │ │ │ ├── bvpl_pca_basis_sample.hxx │ │ │ │ │ ├── bvpl_taylor_basis_sample.cxx │ │ │ │ │ ├── bvpl_taylor_basis_sample.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ │ └── test_template_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_gauss3D_steerable_filters.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_octree_kernel_operator.cxx │ │ │ │ │ ├── test_octree_neighbors.cxx │ │ │ │ │ ├── test_pca_kernels.cxx │ │ │ │ │ ├── test_taylor_basis.cxx │ │ │ │ │ ├── test_template_include.cxx │ │ │ │ │ ├── test_utils.cxx │ │ │ │ │ └── test_utils.h │ │ │ ├── bvpl_subgrid_iterator.h │ │ │ ├── bvpl_subgrid_iterator.hxx │ │ │ ├── bvpl_susan_opinion_operator.h │ │ │ ├── bvpl_vector_operator.cxx │ │ │ ├── bvpl_vector_operator.h │ │ │ ├── bvpl_voxel_subgrid.h │ │ │ ├── bvpl_voxel_subgrid.hxx │ │ │ ├── doc │ │ │ │ ├── 2d_taylor_kernels_L1.m │ │ │ │ ├── readme.txt │ │ │ │ ├── taylor2_5_5_2d │ │ │ │ │ ├── I0.txt │ │ │ │ │ ├── Ix.txt │ │ │ │ │ ├── Ixx.txt │ │ │ │ │ ├── Ixy.txt │ │ │ │ │ ├── Iy.txt │ │ │ │ │ └── Iyy.txt │ │ │ │ ├── taylor2_5_5_5 │ │ │ │ │ ├── I0.txt │ │ │ │ │ ├── Ix.txt │ │ │ │ │ ├── Ixx.txt │ │ │ │ │ ├── Ixy.txt │ │ │ │ │ ├── Ixz.txt │ │ │ │ │ ├── Iy.txt │ │ │ │ │ ├── Iyy.txt │ │ │ │ │ ├── Iyz.txt │ │ │ │ │ ├── Iz.txt │ │ │ │ │ └── Izz.txt │ │ │ │ ├── taylor2_5_5_5_L1 │ │ │ │ │ ├── I0.txt │ │ │ │ │ ├── Ix.txt │ │ │ │ │ ├── Ixx.txt │ │ │ │ │ ├── Ixy.txt │ │ │ │ │ ├── Ixz.txt │ │ │ │ │ ├── Iy.txt │ │ │ │ │ ├── Iyy.txt │ │ │ │ │ ├── Iyz.txt │ │ │ │ │ ├── Iz.txt │ │ │ │ │ └── Izz.txt │ │ │ │ ├── taylor2_5_5_L1_2d │ │ │ │ │ ├── I0.txt │ │ │ │ │ ├── Ix.txt │ │ │ │ │ ├── Ixx.txt │ │ │ │ │ ├── Ixy.txt │ │ │ │ │ ├── Iy.txt │ │ │ │ │ └── Iyy.txt │ │ │ │ ├── taylor_kernels.m │ │ │ │ ├── taylor_kernels_2d_L1.m │ │ │ │ └── tylor_basis.pdf │ │ │ ├── functors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bvpl_edge2d_functor+float-.cxx │ │ │ │ │ ├── bvpl_edge_algebraic_mean_functor+float-.cxx │ │ │ │ │ └── bvpl_edge_geometric_mean_functor+float-.cxx │ │ │ │ ├── bvpl_algebraic_functor.cxx │ │ │ │ ├── bvpl_algebraic_functor.h │ │ │ │ ├── bvpl_edge2d_functor.h │ │ │ │ ├── bvpl_edge2d_functor.hxx │ │ │ │ ├── bvpl_edge_algebraic_mean_functor.h │ │ │ │ ├── bvpl_edge_algebraic_mean_functor.hxx │ │ │ │ ├── bvpl_edge_geometric_mean_functor.h │ │ │ │ ├── bvpl_edge_geometric_mean_functor.hxx │ │ │ │ ├── bvpl_find_surface_functor.cxx │ │ │ │ ├── bvpl_find_surface_functor.h │ │ │ │ ├── bvpl_gauss_convolution_functor.cxx │ │ │ │ ├── bvpl_gauss_convolution_functor.h │ │ │ │ ├── bvpl_local_max_functor.cxx │ │ │ │ ├── bvpl_local_max_functor.h │ │ │ │ ├── bvpl_negative_gauss_conv_functor.cxx │ │ │ │ ├── bvpl_negative_gauss_conv_functor.h │ │ │ │ ├── bvpl_opinion_functor.cxx │ │ │ │ ├── bvpl_opinion_functor.h │ │ │ │ ├── bvpl_positive_gauss_conv_functor.cxx │ │ │ │ ├── bvpl_positive_gauss_conv_functor.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── kernels │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_smart_ptr+bvpl_kernel-.cxx │ │ │ │ │ └── vbl_smart_ptr+bvpl_subgrid_iterator_base-.cxx │ │ │ │ ├── bvpl_corner2d_kernel_factory.cxx │ │ │ │ ├── bvpl_corner2d_kernel_factory.h │ │ │ │ ├── bvpl_create_directions.cxx │ │ │ │ ├── bvpl_create_directions.h │ │ │ │ ├── bvpl_edge2d_kernel_factory.cxx │ │ │ │ ├── bvpl_edge2d_kernel_factory.h │ │ │ │ ├── bvpl_edge3d_kernel_factory.cxx │ │ │ │ ├── bvpl_edge3d_kernel_factory.h │ │ │ │ ├── bvpl_gauss3d_kernel_factory.cxx │ │ │ │ ├── bvpl_gauss3d_kernel_factory.h │ │ │ │ ├── bvpl_gauss3d_x_kernel_factory.cxx │ │ │ │ ├── bvpl_gauss3d_x_kernel_factory.h │ │ │ │ ├── bvpl_gauss3d_xx_kernel_factory.cxx │ │ │ │ ├── bvpl_gauss3d_xx_kernel_factory.h │ │ │ │ ├── bvpl_kernel.cxx │ │ │ │ ├── bvpl_kernel.h │ │ │ │ ├── bvpl_kernel_factory.cxx │ │ │ │ ├── bvpl_kernel_factory.h │ │ │ │ ├── bvpl_kernel_iterator.h │ │ │ │ ├── bvpl_neighborhood_kernel_factory.cxx │ │ │ │ ├── bvpl_neighborhood_kernel_factory.h │ │ │ │ ├── bvpl_taylor_basis_factory.cxx │ │ │ │ ├── bvpl_taylor_basis_factory.h │ │ │ │ ├── bvpl_weighted_cube_kernel_factory.cxx │ │ │ │ ├── bvpl_weighted_cube_kernel_factory.h │ │ │ │ ├── io │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── vbl_io_smart_ptr+bvpl_kernel-.cxx │ │ │ │ │ ├── bvpl_io_kernel.cxx │ │ │ │ │ ├── bvpl_io_kernel.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── brdb_value_t+bvpl_kernel_sptr-.cxx │ │ │ │ │ │ ├── brdb_value_t+bvpl_taylor_scenes_map_sptr-.cxx │ │ │ │ │ │ └── vbl_io_smart_ptr+bvpl_taylor_scenes_map-.cxx │ │ │ │ │ ├── bvpl_kernels_processes.h │ │ │ │ │ ├── bvpl_kernels_register.cxx │ │ │ │ │ ├── bvpl_kernels_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── bvpl_create_corner2d_kernel_process.cxx │ │ │ │ │ │ ├── bvpl_create_corner2d_kernel_vector_process.cxx │ │ │ │ │ │ ├── bvpl_create_edge2d_kernel_process.cxx │ │ │ │ │ │ ├── bvpl_create_edge2d_kernel_vector_process.cxx │ │ │ │ │ │ ├── bvpl_create_edge3d_kernel_process.cxx │ │ │ │ │ │ ├── bvpl_create_edge3d_kernel_vector_process.cxx │ │ │ │ │ │ ├── bvpl_create_gauss3d_kernel_process.cxx │ │ │ │ │ │ ├── bvpl_create_gauss3d_x_kernel_process.cxx │ │ │ │ │ │ ├── bvpl_create_gauss3d_xx_kernel_process.cxx │ │ │ │ │ │ ├── bvpl_create_gauss3d_xx_kernel_vector_process.cxx │ │ │ │ │ │ ├── bvpl_create_generic_kernel_vector_process.cxx │ │ │ │ │ │ ├── bvpl_create_wc_kernel_vector_process.cxx │ │ │ │ │ │ ├── bvpl_load_taylor_kernel_process.cxx │ │ │ │ │ │ └── bvpl_load_taylor_responses_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── brdb_value_t+bvpl_bundler_features_2d_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+bvpl_corner_pairs_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+bvpl_kernel_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+bvxm_voxel_grid_base_sptr-.cxx │ │ │ │ │ └── vbl_io_smart_ptr+bvxm_voxel_grid_base-.cxx │ │ │ │ ├── bvpl_processes.h │ │ │ │ ├── bvpl_register.cxx │ │ │ │ ├── bvpl_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bvpl_bundler_features_2d_compute_process.cxx │ │ │ │ │ ├── bvpl_bundler_features_2d_sptr_read_bin_process.cxx │ │ │ │ │ ├── bvpl_bundler_features_2d_sptr_write_bin_process.cxx │ │ │ │ │ ├── bvpl_bundler_features_2d_write_txt_process.cxx │ │ │ │ │ ├── bvpl_compare_surface_and_normal_process.cxx │ │ │ │ │ ├── bvpl_convert_direction_to_hue_process.cxx │ │ │ │ │ ├── bvpl_convert_id_to_hue_process.cxx │ │ │ │ │ ├── bvpl_extract_top_response_process.cxx │ │ │ │ │ ├── bvpl_kernel_id_to_axis_process.cxx │ │ │ │ │ ├── bvpl_neighborhood_operator_process.cxx │ │ │ │ │ ├── bvpl_non_max_suppression_process.cxx │ │ │ │ │ ├── bvpl_operate_ocp_and_app_process.cxx │ │ │ │ │ ├── bvpl_suppress_and_combine_process.cxx │ │ │ │ │ ├── bvpl_susan_opinion_operator_process.cxx │ │ │ │ │ ├── bvpl_vector_operator_process.cxx │ │ │ │ │ ├── bvpl_visualize_response_process.cxx │ │ │ │ │ └── util │ │ │ │ │ │ ├── bvpl_convert_pair_to_hue_process.cxx │ │ │ │ │ │ ├── bvpl_find_90_degrees_corner_pairs_process.cxx │ │ │ │ │ │ ├── bvpl_find_pairs_process.cxx │ │ │ │ │ │ ├── bvpl_load_pair_grid_process.cxx │ │ │ │ │ │ ├── bvpl_pair_to_float_process.cxx │ │ │ │ │ │ └── bvpl_visualize_corner_pairs_process.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_bvpl_kernel_functors.cxx │ │ │ │ ├── test_bvpl_kernels.cxx │ │ │ │ ├── test_bvpl_vector_operator.cxx │ │ │ │ ├── test_detect_corner.cxx │ │ │ │ ├── test_direction_to_color_map.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_neighb_oper.cxx │ │ │ │ ├── test_subgrid.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ └── test_vector_directions.cxx │ │ │ └── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ ├── bvxm_voxel_x+bvpl_pair-.cxx │ │ │ │ ├── vbl_smart_ptr+bvpl_bundler_features_2d-.cxx │ │ │ │ └── vbl_smart_ptr+bvpl_corner_pairs-.cxx │ │ │ │ ├── bvpl_bundler_features_2d.cxx │ │ │ │ ├── bvpl_bundler_features_2d.h │ │ │ │ ├── bvpl_corner_pair_finder.cxx │ │ │ │ ├── bvpl_corner_pair_finder.h │ │ │ │ ├── bvpl_corner_search_functor.cxx │ │ │ │ ├── bvpl_corner_search_functor.h │ │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── vbl_io_smart_ptr+bvpl_bundler_features_2d-.cxx │ │ │ │ │ └── vbl_io_smart_ptr+bvpl_corner_pairs-.cxx │ │ │ │ ├── bvpl_bundler_features_2d_io.cxx │ │ │ │ ├── bvpl_bundler_features_2d_io.h │ │ │ │ ├── bvpl_corner_pairs_io.cxx │ │ │ │ ├── bvpl_corner_pairs_io.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_corner_finder.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ └── test_include.cxx │ │ ├── bvpl_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── reg_bvpl.cxx │ │ │ ├── reg_bvpl.h │ │ │ ├── running_vector_kernel_3d.py │ │ │ ├── sample_scripts │ │ │ │ ├── bvxmCropGridProcess.xml │ │ │ │ ├── edge2d_kernel_params.xml │ │ │ │ ├── runningkernel.py │ │ │ │ └── save_raw.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bvpl_octree_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── reg_bvpl_octree.cxx │ │ │ ├── reg_bvpl_octree.h │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bvxm │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── bvxm_mog_mc_processor+2.3-.cxx │ │ │ │ ├── bvxm_mog_mc_processor+3.3-.cxx │ │ │ │ ├── bvxm_mog_mc_processor+4.3-.cxx │ │ │ │ ├── bvxm_von_mises_tangent_processor+double-.cxx │ │ │ │ ├── bvxm_von_mises_tangent_processor+float-.cxx │ │ │ │ ├── vbl_smart_ptr+bvxm_voxel_world-.cxx │ │ │ │ └── vbl_smart_ptr+bvxm_world_params-.cxx │ │ │ ├── algo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── bvxm_mog_norm+float-.cxx │ │ │ │ ├── bvxm_boxm_convert.h │ │ │ │ ├── bvxm_merge_mog.cxx │ │ │ │ ├── bvxm_merge_mog.h │ │ │ │ ├── bvxm_mog_norm.h │ │ │ │ ├── bvxm_mog_norm.hxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bvxm_algo_processes.h │ │ │ │ │ ├── bvxm_algo_register.cxx │ │ │ │ │ ├── bvxm_algo_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── boxm_scene_to_bvxm_grid_process.cxx │ │ │ │ │ │ ├── bvxm_merge_mog_process.cxx │ │ │ │ │ │ ├── bvxm_mog_l2_process.cxx │ │ │ │ │ │ └── bvxm_mog_to_mpm_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_boxm_scene_to_bvxm_grid.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_merge_mog.cxx │ │ │ │ │ ├── test_mog_norm.cxx │ │ │ │ │ └── test_template_include.cxx │ │ │ ├── breg3d │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── breg3d_ekf_camera_optimizer.cxx │ │ │ │ ├── breg3d_ekf_camera_optimizer.h │ │ │ │ ├── breg3d_ekf_camera_optimizer_state.cxx │ │ │ │ ├── breg3d_ekf_camera_optimizer_state.h │ │ │ │ ├── breg3d_gdbicp_homography_generator.cxx │ │ │ │ ├── breg3d_gdbicp_homography_generator.h │ │ │ │ ├── breg3d_homography_generator.h │ │ │ │ ├── breg3d_lm_direct_homography_generator.cxx │ │ │ │ ├── breg3d_lm_direct_homography_generator.h │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── brdb_value_t+breg3d_ekf_camera_optimizer_state-.cxx │ │ │ │ │ ├── breg3d_ekf_camera_optimize_process.cxx │ │ │ │ │ ├── breg3d_ekf_camera_optimize_process.h │ │ │ │ │ ├── breg3d_init_ekf_camera_optimizer_planar_process.cxx │ │ │ │ │ ├── breg3d_init_ekf_camera_optimizer_planar_process.h │ │ │ │ │ ├── breg3d_init_ekf_camera_optimizer_process.cxx │ │ │ │ │ ├── breg3d_init_ekf_camera_optimizer_process.h │ │ │ │ │ ├── breg3d_set_occupancy_plane_process.cxx │ │ │ │ │ ├── breg3d_set_occupancy_plane_process.h │ │ │ │ │ ├── breg3d_zero_occupancy_borders_process.cxx │ │ │ │ │ ├── breg3d_zero_occupancy_borders_process.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_ekf_camera_optimizer.cxx │ │ │ │ │ ├── test_ekf_camera_optimizer_seq.cxx │ │ │ │ │ ├── test_ekf_existing_world.cxx │ │ │ │ │ ├── test_homography_generator.cxx │ │ │ │ │ └── test_include.cxx │ │ │ ├── bvxm_edge_ray_processor.cxx │ │ │ ├── bvxm_edge_ray_processor.h │ │ │ ├── bvxm_edge_util.cxx │ │ │ ├── bvxm_edge_util.h │ │ │ ├── bvxm_float_processor.h │ │ │ ├── bvxm_illum_util.cxx │ │ │ ├── bvxm_illum_util.h │ │ │ ├── bvxm_image_metadata.cxx │ │ │ ├── bvxm_image_metadata.h │ │ │ ├── bvxm_lidar_processor.cxx │ │ │ ├── bvxm_lidar_processor.h │ │ │ ├── bvxm_mog_grey_processor.cxx │ │ │ ├── bvxm_mog_grey_processor.h │ │ │ ├── bvxm_mog_mc_processor.h │ │ │ ├── bvxm_mog_mc_processor.hxx │ │ │ ├── bvxm_mog_rgb_processor.cxx │ │ │ ├── bvxm_mog_rgb_processor.h │ │ │ ├── bvxm_util.cxx │ │ │ ├── bvxm_util.h │ │ │ ├── bvxm_von_mises_tangent_processor.h │ │ │ ├── bvxm_von_mises_tangent_processor.hxx │ │ │ ├── bvxm_voxel_traits.h │ │ │ ├── bvxm_voxel_world.cxx │ │ │ ├── bvxm_voxel_world.h │ │ │ ├── bvxm_voxel_world_sptr.h │ │ │ ├── bvxm_world_params.cxx │ │ │ ├── bvxm_world_params.h │ │ │ ├── bvxm_world_params_parser.cxx │ │ │ ├── bvxm_world_params_parser.h │ │ │ ├── doc │ │ │ │ ├── VoxGISDocumentation.doc │ │ │ │ ├── VoxGISDocumentation.pdf │ │ │ │ ├── amideTF.jpg │ │ │ │ ├── bvxm_howto.docx │ │ │ │ ├── bvxm_howto.pdf │ │ │ │ └── process_diagrams.ppt │ │ │ ├── grid │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bvxm_voxel_grid+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_grid+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+float-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+int-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+vnl_float_3-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+vnl_float_4-.cxx │ │ │ │ │ ├── bvxm_voxel_grid+vnl_vector_fixed+float.3--.cxx │ │ │ │ │ ├── bvxm_voxel_grid+vnl_vector_fixed+float.4--.cxx │ │ │ │ │ ├── bvxm_voxel_grid+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_gauss_sf3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_vsum_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+float-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+int-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+uchar-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_float_3-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_float_4-.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_vector_fixed+double.2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_vector_fixed+double.3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_vector_fixed+float.2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_vector_fixed+float.3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_vector_fixed+float.4--.cxx │ │ │ │ │ ├── bvxm_voxel_slab+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_vsum_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+float-.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+int-.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+vnl_vector_fixed+double.2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+vnl_vector_fixed+double.3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+vnl_vector_fixed+float.2--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+vnl_vector_fixed+float.3--.cxx │ │ │ │ │ ├── bvxm_voxel_slab_iterator+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_gauss_sf3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+float-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+int-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_gauss_sf3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+float-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+int-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_disk_cached+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_gauss_sf3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+float-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+int-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_mem+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bool-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_gauss_sd2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_gauss_sd3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_gauss_sf1--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_gauss_sf2--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_gauss_sf3--.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if2-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if3-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_if4-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_num_obs+bsta_mixture_fixed+bsta_num_obs+bsta_gauss_sf1-.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_vsum_num_obs+bsta_von_mises+double.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bsta_vsum_num_obs+bsta_von_mises+float.3---.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+bvxm_opinion-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+float-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+int-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+uint-.cxx │ │ │ │ │ ├── bvxm_voxel_storage_slab_mem+vnl_vector_fixed+int.3--.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvxm_memory_chunk-.cxx │ │ │ │ │ ├── vbl_smart_ptr+bvxm_voxel_grid_base-.cxx │ │ │ │ │ └── vbl_smart_ptr+bvxm_voxel_slab_base-.cxx │ │ │ │ ├── bvxm_memory_chunk.cxx │ │ │ │ ├── bvxm_memory_chunk.h │ │ │ │ ├── bvxm_opinion.h │ │ │ │ ├── bvxm_voxel_grid.h │ │ │ │ ├── bvxm_voxel_grid.hxx │ │ │ │ ├── bvxm_voxel_grid_base.h │ │ │ │ ├── bvxm_voxel_grid_base_sptr.h │ │ │ │ ├── bvxm_voxel_grid_basic_ops.cxx │ │ │ │ ├── bvxm_voxel_grid_basic_ops.h │ │ │ │ ├── bvxm_voxel_grid_opinion_basic_ops.cxx │ │ │ │ ├── bvxm_voxel_grid_opinion_basic_ops.h │ │ │ │ ├── bvxm_voxel_slab.h │ │ │ │ ├── bvxm_voxel_slab.hxx │ │ │ │ ├── bvxm_voxel_slab_base.h │ │ │ │ ├── bvxm_voxel_slab_iterator.h │ │ │ │ ├── bvxm_voxel_slab_iterator.hxx │ │ │ │ ├── bvxm_voxel_storage.h │ │ │ │ ├── bvxm_voxel_storage_disk.h │ │ │ │ ├── bvxm_voxel_storage_disk.hxx │ │ │ │ ├── bvxm_voxel_storage_disk_cached.h │ │ │ │ ├── bvxm_voxel_storage_disk_cached.hxx │ │ │ │ ├── bvxm_voxel_storage_mem.h │ │ │ │ ├── bvxm_voxel_storage_mem.hxx │ │ │ │ ├── bvxm_voxel_storage_slab_mem.h │ │ │ │ ├── bvxm_voxel_storage_slab_mem.hxx │ │ │ │ ├── io │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── vbl_io_smart_ptr+bvxm_voxel_grid_base-.cxx │ │ │ │ │ │ └── vbl_io_smart_ptr+bvxm_voxel_slab_base-.cxx │ │ │ │ │ ├── bvxm_grid_to_image_stack.cxx │ │ │ │ │ ├── bvxm_grid_to_image_stack.h │ │ │ │ │ ├── bvxm_io_voxel_grid.cxx │ │ │ │ │ ├── bvxm_io_voxel_grid.h │ │ │ │ │ ├── bvxm_io_voxel_grid_base.cxx │ │ │ │ │ ├── bvxm_io_voxel_grid_base.h │ │ │ │ │ ├── bvxm_io_voxel_slab_base.cxx │ │ │ │ │ ├── bvxm_io_voxel_slab_base.h │ │ │ │ │ ├── bvxm_slab_to_image.cxx │ │ │ │ │ ├── bvxm_slab_to_image.h │ │ │ │ │ ├── bvxm_vrml_voxel_grid.cxx │ │ │ │ │ ├── bvxm_vrml_voxel_grid.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ ├── pro │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── brdb_value_t+bvxm_voxel_grid_base_sptr-.cxx │ │ │ │ │ ├── bvxm_grid_processes.h │ │ │ │ │ ├── bvxm_grid_register.cxx │ │ │ │ │ ├── bvxm_grid_register.h │ │ │ │ │ ├── processes │ │ │ │ │ │ ├── bvxm_combine_grids_process.cxx │ │ │ │ │ │ ├── bvxm_create_grid_process.cxx │ │ │ │ │ │ ├── bvxm_crop_grid_process.cxx │ │ │ │ │ │ ├── bvxm_expectation_opinion_grid_process.cxx │ │ │ │ │ │ ├── bvxm_fill_mesh_grid_process.cxx │ │ │ │ │ │ ├── bvxm_fill_mesh_normals_grid_process.cxx │ │ │ │ │ │ ├── bvxm_grid_distance_trasform_process.cxx │ │ │ │ │ │ ├── bvxm_grid_to_image_stack_process.cxx │ │ │ │ │ │ ├── bvxm_load_grid_process.cxx │ │ │ │ │ │ ├── bvxm_multiply_grids_process.cxx │ │ │ │ │ │ ├── bvxm_save_grid_raw_process.cxx │ │ │ │ │ │ ├── bvxm_save_rgba_grid_vrml_process.cxx │ │ │ │ │ │ └── bvxm_threshold_grid_process.cxx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── test_include.cxx │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_basic_ops.cxx │ │ │ │ │ ├── test_bvxm_vrml.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_grid_to_image_stack.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── test_template_include.cxx │ │ │ │ │ ├── test_voxel_grid.cxx │ │ │ │ │ ├── test_voxel_storage_disk.cxx │ │ │ │ │ ├── test_voxel_storage_disk_cached.cxx │ │ │ │ │ ├── test_voxel_storage_mem.cxx │ │ │ │ │ └── test_voxel_storage_slab_mem.cxx │ │ │ ├── io │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ └── vbl_io_smart_ptr+bvxm_voxel_world-.cxx │ │ │ │ ├── bvxm_io_voxel_world.cxx │ │ │ │ ├── bvxm_io_voxel_world.h │ │ │ │ ├── bvxm_io_world_params.cxx │ │ │ │ ├── bvxm_io_world_params.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test_include.cxx │ │ │ ├── pro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Templates │ │ │ │ │ ├── bpgl_camera_estimator+bvxm_expected_edge_functor-.cxx │ │ │ │ │ ├── brdb_value_t+bvxm_voxel_grid_base_sptr-.cxx │ │ │ │ │ ├── brdb_value_t+bvxm_voxel_slab_base_sptr-.cxx │ │ │ │ │ └── brdb_value_t+bvxm_voxel_world_sptr-.cxx │ │ │ │ ├── bvxm_processes.h │ │ │ │ ├── bvxm_register.cxx │ │ │ │ ├── bvxm_register.h │ │ │ │ ├── processes │ │ │ │ │ ├── bvxm_atmospheric_corr_process.cxx │ │ │ │ │ ├── bvxm_atmospheric_corr_process.h │ │ │ │ │ ├── bvxm_change_detection_display_process.cxx │ │ │ │ │ ├── bvxm_change_detection_display_process.h │ │ │ │ │ ├── bvxm_clean_world_process.cxx │ │ │ │ │ ├── bvxm_clean_world_process.h │ │ │ │ │ ├── bvxm_compare_3d_voxels_process.cxx │ │ │ │ │ ├── bvxm_compare_3d_voxels_process.h │ │ │ │ │ ├── bvxm_compare_rpc_process.cxx │ │ │ │ │ ├── bvxm_compare_rpc_process.h │ │ │ │ │ ├── bvxm_create_land_map_process.cxx │ │ │ │ │ ├── bvxm_create_land_map_process.h │ │ │ │ │ ├── bvxm_create_local_rpc_process.cxx │ │ │ │ │ ├── bvxm_create_local_rpc_process.h │ │ │ │ │ ├── bvxm_create_mog_image_process.cxx │ │ │ │ │ ├── bvxm_create_mog_image_process.h │ │ │ │ │ ├── bvxm_create_normalized_image_process.cxx │ │ │ │ │ ├── bvxm_create_normalized_image_process.h │ │ │ │ │ ├── bvxm_create_ortho_camera_process.cxx │ │ │ │ │ ├── bvxm_create_ortho_camera_process.h │ │ │ │ │ ├── bvxm_create_scene_xml_process.cxx │ │ │ │ │ ├── bvxm_create_scene_xml_process.h │ │ │ │ │ ├── bvxm_create_synth_lidar_data_process.cxx │ │ │ │ │ ├── bvxm_create_synth_lidar_data_process.h │ │ │ │ │ ├── bvxm_create_voxel_world_process.cxx │ │ │ │ │ ├── bvxm_create_voxel_world_process.h │ │ │ │ │ ├── bvxm_dem_to_xyz_process.cxx │ │ │ │ │ ├── bvxm_dem_to_xyz_process.h │ │ │ │ │ ├── bvxm_detect_changes_process.cxx │ │ │ │ │ ├── bvxm_detect_changes_process.h │ │ │ │ │ ├── bvxm_detect_edge_tangent_process.cxx │ │ │ │ │ ├── bvxm_detect_edge_tangent_process.h │ │ │ │ │ ├── bvxm_detect_edges_process.cxx │ │ │ │ │ ├── bvxm_detect_edges_process.h │ │ │ │ │ ├── bvxm_detect_scale_process.cxx │ │ │ │ │ ├── bvxm_detect_scale_process.h │ │ │ │ │ ├── bvxm_display_edge_tangent_world_vrml_process.cxx │ │ │ │ │ ├── bvxm_display_edge_tangent_world_vrml_process.h │ │ │ │ │ ├── bvxm_edgemap_ortho_process.cxx │ │ │ │ │ ├── bvxm_edgemap_ortho_process.h │ │ │ │ │ ├── bvxm_estimate_camera_process.cxx │ │ │ │ │ ├── bvxm_estimate_camera_process.h │ │ │ │ │ ├── bvxm_estimate_camera_utils.cxx │ │ │ │ │ ├── bvxm_estimate_camera_utils.h │ │ │ │ │ ├── bvxm_expected_edge_functor.cxx │ │ │ │ │ ├── bvxm_expected_edge_functor.h │ │ │ │ │ ├── bvxm_expected_edge_image_process.cxx │ │ │ │ │ ├── bvxm_expected_edge_image_process.h │ │ │ │ │ ├── bvxm_gen_synthetic_world_process.cxx │ │ │ │ │ ├── bvxm_gen_synthetic_world_process.h │ │ │ │ │ ├── bvxm_get_grid_process.cxx │ │ │ │ │ ├── bvxm_get_grid_process.h │ │ │ │ │ ├── bvxm_heightmap_ortho_process.cxx │ │ │ │ │ ├── bvxm_heightmap_ortho_process.h │ │ │ │ │ ├── bvxm_heightmap_process.cxx │ │ │ │ │ ├── bvxm_heightmap_process.h │ │ │ │ │ ├── bvxm_illum_index_process.cxx │ │ │ │ │ ├── bvxm_illum_index_process.h │ │ │ │ │ ├── bvxm_lidar_edge_detection_process.cxx │ │ │ │ │ ├── bvxm_lidar_edge_detection_process.h │ │ │ │ │ ├── bvxm_lidar_init_process.cxx │ │ │ │ │ ├── bvxm_lidar_init_process.h │ │ │ │ │ ├── bvxm_locate_region_process.cxx │ │ │ │ │ ├── bvxm_locate_region_process.h │ │ │ │ │ ├── bvxm_normalization_util.cxx │ │ │ │ │ ├── bvxm_normalization_util.h │ │ │ │ │ ├── bvxm_normalize_image_process.cxx │ │ │ │ │ ├── bvxm_normalize_image_process.h │ │ │ │ │ ├── bvxm_ocp_compare_process.cxx │ │ │ │ │ ├── bvxm_ocp_compare_process.h │ │ │ │ │ ├── bvxm_ocp_hist_process.cxx │ │ │ │ │ ├── bvxm_ocp_hist_process.h │ │ │ │ │ ├── bvxm_orthorectify_process.cxx │ │ │ │ │ ├── bvxm_orthorectify_process.h │ │ │ │ │ ├── bvxm_pmap_hist_process.cxx │ │ │ │ │ ├── bvxm_pmap_hist_process.h │ │ │ │ │ ├── bvxm_pmap_ratio_process.cxx │ │ │ │ │ ├── bvxm_pmap_ratio_process.h │ │ │ │ │ ├── bvxm_proj_local_cam_process.cxx │ │ │ │ │ ├── bvxm_render_expected_image_process.cxx │ │ │ │ │ ├── bvxm_render_expected_image_process.h │ │ │ │ │ ├── bvxm_render_virtual_view_process.cxx │ │ │ │ │ ├── bvxm_render_virtual_view_process.h │ │ │ │ │ ├── bvxm_report_statistics_point_cloud_process.cxx │ │ │ │ │ ├── bvxm_report_statistics_point_cloud_process.h │ │ │ │ │ ├── bvxm_roc_process.cxx │ │ │ │ │ ├── bvxm_roc_process.h │ │ │ │ │ ├── bvxm_roi_init_process.cxx │ │ │ │ │ ├── bvxm_roi_init_process.h │ │ │ │ │ ├── bvxm_rpc_registration_process.cxx │ │ │ │ │ ├── bvxm_rpc_registration_process.h │ │ │ │ │ ├── bvxm_save_edges_raw_process.cxx │ │ │ │ │ ├── bvxm_save_edges_raw_process.h │ │ │ │ │ ├── bvxm_save_occupancy_raw_process.cxx │ │ │ │ │ ├── bvxm_save_occupancy_raw_process.h │ │ │ │ │ ├── bvxm_save_occupancy_vff_process.cxx │ │ │ │ │ ├── bvxm_save_occupancy_vff_process.h │ │ │ │ │ ├── bvxm_scene_box_process.cxx │ │ │ │ │ ├── bvxm_scene_box_process.h │ │ │ │ │ ├── bvxm_scene_kml_process.cxx │ │ │ │ │ ├── bvxm_scene_kml_process.h │ │ │ │ │ ├── bvxm_scene_local_box_process.cxx │ │ │ │ │ ├── bvxm_scene_local_box_process.h │ │ │ │ │ ├── bvxm_scene_lvcs_process.cxx │ │ │ │ │ ├── bvxm_scene_lvcs_process.h │ │ │ │ │ ├── bvxm_scene_model_dir_process.cxx │ │ │ │ │ ├── bvxm_scene_model_dir_process.h │ │ │ │ │ ├── bvxm_synth_world_generator.cxx │ │ │ │ │ ├── bvxm_synth_world_generator.h │ │ │ │ │ ├── bvxm_update_edge_tangent_process.cxx │ │ │ │ │ ├── bvxm_update_edge_tangent_process.h │ │ │ │ │ ├── bvxm_update_edges_lidar_process.cxx │ │ │ │ │ ├── bvxm_update_edges_lidar_process.h │ │ │ │ │ ├── bvxm_update_edges_process.cxx │ │ │ │ │ ├── bvxm_update_edges_process.h │ │ │ │ │ ├── bvxm_update_lidar_process.cxx │ │ │ │ │ ├── bvxm_update_lidar_process.h │ │ │ │ │ ├── bvxm_update_point_cloud_process.cxx │ │ │ │ │ ├── bvxm_update_point_cloud_process.h │ │ │ │ │ ├── bvxm_update_process.cxx │ │ │ │ │ └── bvxm_update_process.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── change_display_params.xml │ │ │ │ │ ├── lidar_params.xml │ │ │ │ │ ├── po_39928_pan_0000000_chip_700_700_noICHIPB.nitf │ │ │ │ │ ├── po_39928_pan_0000000_chip_700_700_noICHIPB.ntf │ │ │ │ │ ├── po_39928_pan_0000000_chip_700_700_withICHIPB.nitf │ │ │ │ │ ├── roi_params.xml │ │ │ │ │ ├── rpc_registration_camera.rpb │ │ │ │ │ ├── rpc_registration_image.png │ │ │ │ │ ├── synth_test_params.xml │ │ │ │ │ ├── test_bvxm_change_detection_display_process.cxx │ │ │ │ │ ├── test_bvxm_create_local_rpc_process.cxx │ │ │ │ │ ├── test_bvxm_create_normalized_image_process.cxx │ │ │ │ │ ├── test_bvxm_create_synth_lidar_data_process.cxx │ │ │ │ │ ├── test_bvxm_create_voxel_world_process.cxx │ │ │ │ │ ├── test_bvxm_illum_index_process.cxx │ │ │ │ │ ├── test_bvxm_normalize_image_process.cxx │ │ │ │ │ ├── test_bvxm_roi_init_process.cxx │ │ │ │ │ ├── test_bvxm_rpc_registration_process.cxx │ │ │ │ │ ├── test_bvxm_update_lidar_process.cxx │ │ │ │ │ ├── test_driver.cxx │ │ │ │ │ ├── test_include.cxx │ │ │ │ │ ├── two_box_synth.tif │ │ │ │ │ ├── update_edges_parameters.xml │ │ │ │ │ ├── world_model_params.xml │ │ │ │ │ └── world_model_params_lvcs.txt │ │ │ ├── pyscripts │ │ │ │ ├── bvxm_adaptor.py │ │ │ │ ├── bvxm_brad_adaptor.py │ │ │ │ ├── bvxm_brip_adaptor.py │ │ │ │ ├── bvxm_bvgl_adaptor.py │ │ │ │ ├── bvxm_register.py │ │ │ │ ├── bvxm_sdet_adaptor.py │ │ │ │ ├── bvxm_tools.py │ │ │ │ ├── bvxm_vil_adaptor.py │ │ │ │ ├── bvxm_volm_adaptor.py │ │ │ │ └── bvxm_vpgl_adaptor.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_apm_processors.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_illum.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_lidar_processor.cxx │ │ │ │ ├── test_platform_computations.cxx │ │ │ │ ├── test_tangent_update.cxx │ │ │ │ ├── test_template_include.cxx │ │ │ │ ├── test_voxel_world.cxx │ │ │ │ ├── test_voxel_world_mog_image.cxx │ │ │ │ └── test_voxel_world_update.cxx │ │ ├── bvxm_batch │ │ │ ├── CMakeLists.txt │ │ │ ├── bvxmCreateVoxelWorldProcess.xml │ │ │ ├── change_detection.py │ │ │ ├── change_detection_params.py │ │ │ ├── example_change_map_update_and_recognize_roc.py │ │ │ ├── example_change_map_update_and_roc.py │ │ │ ├── example_parameter_script.py │ │ │ ├── example_print_default_parameter_script.py │ │ │ ├── example_rpc_registration.py │ │ │ ├── example_rpc_registration_with_lidar.py │ │ │ ├── example_train_script.py │ │ │ ├── multiscale │ │ │ │ ├── change_display_params.xml │ │ │ │ ├── edge_map_params.xml │ │ │ │ ├── multi_train.py │ │ │ │ ├── normalization_parameters.txt │ │ │ │ ├── normalize.xml │ │ │ │ ├── roi_params.xml │ │ │ │ ├── rpc_registration_parameters.xml │ │ │ │ ├── train_hiafa_cam.txt │ │ │ │ ├── train_hiafa_images.txt │ │ │ │ ├── world_model_params.xml │ │ │ │ └── world_model_params_lvcs.txt │ │ │ ├── reg_bvxm.cxx │ │ │ ├── reg_bvxm.h │ │ │ ├── roi_params.xml │ │ │ ├── rpc_regstration.py │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ ├── bvxm_bridge │ │ │ ├── CMakeLists.txt │ │ │ ├── bvxm_to_boxm2.cxx │ │ │ └── bvxm_to_boxm2.h │ │ ├── sbin │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── compress_j2k_dir.cxx │ │ │ ├── convert_to_blocked.cxx │ │ │ ├── gen_tiff_rset_dir.cxx │ │ │ ├── generate_tiff_pyramids.cxx │ │ │ ├── generate_tiff_rset.cxx │ │ │ ├── negate.cxx │ │ │ ├── seg_misc.cxx │ │ │ ├── seg_vil.cxx │ │ │ └── vil_convert.cxx │ │ ├── sdet │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── vbl_array_2d+sdet_mrf_site_bp_sptr-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_edgemap-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_graph_img_seg-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_mrf_bp-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_mrf_site_bp-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_region-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_region_edge-.cxx │ │ │ │ ├── vbl_smart_ptr+sdet_sel_base-.cxx │ │ │ │ └── vbl_smart_ptr+sdet_texture_classifier-.cxx │ │ │ ├── sdet_CFTG.h │ │ │ ├── sdet_EHT.h │ │ │ ├── sdet_EMD.cxx │ │ │ ├── sdet_EMD.h │ │ │ ├── sdet_appearance.cxx │ │ │ ├── sdet_appearance.h │ │ │ ├── sdet_atmospheric_image_classifier.cxx │ │ │ ├── sdet_atmospheric_image_classifier.h │ │ │ ├── sdet_contour.cxx │ │ │ ├── sdet_contour.h │ │ │ ├── sdet_curve_fragment_graph.h │ │ │ ├── sdet_curve_model.cxx │ │ │ ├── sdet_curve_model.h │ │ │ ├── sdet_curvelet.cxx │ │ │ ├── sdet_curvelet.h │ │ │ ├── sdet_curvelet_map.cxx │ │ │ ├── sdet_curvelet_map.h │ │ │ ├── sdet_denoise_mrf.cxx │ │ │ ├── sdet_denoise_mrf.h │ │ │ ├── sdet_denoise_mrf_bp.cxx │ │ │ ├── sdet_denoise_mrf_bp.h │ │ │ ├── sdet_denoise_mrf_bp_params.cxx │ │ │ ├── sdet_denoise_mrf_bp_params.h │ │ │ ├── sdet_denoise_mrf_params.cxx │ │ │ ├── sdet_denoise_mrf_params.h │ │ │ ├── sdet_detector.cxx │ │ │ ├── sdet_detector.h │ │ │ ├── sdet_detector_params.cxx │ │ │ ├── sdet_detector_params.h │ │ │ ├── sdet_edge_champher.cxx │ │ │ ├── sdet_edge_champher.h │ │ │ ├── sdet_edgel.cxx │ │ │ ├── sdet_edgel.h │ │ │ ├── sdet_edgel_link_graph.h │ │ │ ├── sdet_edgel_regions.cxx │ │ │ ├── sdet_edgel_regions.h │ │ │ ├── sdet_edgemap.cxx │ │ │ ├── sdet_edgemap.h │ │ │ ├── sdet_edgemap_sptr.h │ │ │ ├── sdet_fit_conics.cxx │ │ │ ├── sdet_fit_conics.h │ │ │ ├── sdet_fit_conics_params.cxx │ │ │ ├── sdet_fit_conics_params.h │ │ │ ├── sdet_fit_lines.cxx │ │ │ ├── sdet_fit_lines.h │ │ │ ├── sdet_fit_lines_params.cxx │ │ │ ├── sdet_fit_lines_params.h │ │ │ ├── sdet_gauss_fit.cxx │ │ │ ├── sdet_gauss_fit.h │ │ │ ├── sdet_graph_img_seg.cxx │ │ │ ├── sdet_graph_img_seg.h │ │ │ ├── sdet_graph_img_seg_sptr.h │ │ │ ├── sdet_grid_finder.cxx │ │ │ ├── sdet_grid_finder.h │ │ │ ├── sdet_grid_finder_params.cxx │ │ │ ├── sdet_grid_finder_params.h │ │ │ ├── sdet_harris_detector.cxx │ │ │ ├── sdet_harris_detector.h │ │ │ ├── sdet_harris_detector_params.cxx │ │ │ ├── sdet_harris_detector_params.h │ │ │ ├── sdet_hyp_tree_graph.h │ │ │ ├── sdet_image_mesh.cxx │ │ │ ├── sdet_image_mesh.h │ │ │ ├── sdet_image_mesh_params.cxx │ │ │ ├── sdet_image_mesh_params.h │ │ │ ├── sdet_img_edge.cxx │ │ │ ├── sdet_img_edge.h │ │ │ ├── sdet_mrf_bp.cxx │ │ │ ├── sdet_mrf_bp.h │ │ │ ├── sdet_mrf_bp_sptr.h │ │ │ ├── sdet_mrf_site_bp.cxx │ │ │ ├── sdet_mrf_site_bp.h │ │ │ ├── sdet_mrf_site_bp_sptr.h │ │ │ ├── sdet_nms.cxx │ │ │ ├── sdet_nms.h │ │ │ ├── sdet_nonmax_suppression.cxx │ │ │ ├── sdet_nonmax_suppression.h │ │ │ ├── sdet_nonmax_suppression_params.cxx │ │ │ ├── sdet_nonmax_suppression_params.h │ │ │ ├── sdet_region.cxx │ │ │ ├── sdet_region.h │ │ │ ├── sdet_region_edge.cxx │ │ │ ├── sdet_region_edge.h │ │ │ ├── sdet_region_edge_sptr.h │ │ │ ├── sdet_region_proc.cxx │ │ │ ├── sdet_region_proc.h │ │ │ ├── sdet_region_proc_params.cxx │ │ │ ├── sdet_region_proc_params.h │ │ │ ├── sdet_region_sptr.h │ │ │ ├── sdet_sel.cxx │ │ │ ├── sdet_sel.h │ │ │ ├── sdet_sel_base.cxx │ │ │ ├── sdet_sel_base.h │ │ │ ├── sdet_sel_sptr.h │ │ │ ├── sdet_sel_utils.h │ │ │ ├── sdet_symbolic_edge_linker.cxx │ │ │ ├── sdet_symbolic_edge_linker.h │ │ │ ├── sdet_symbolic_edge_linker_params.cxx │ │ │ ├── sdet_symbolic_edge_linker_params.h │ │ │ ├── sdet_texture_classifier.cxx │ │ │ ├── sdet_texture_classifier.h │ │ │ ├── sdet_texture_classifier_params.cxx │ │ │ ├── sdet_texture_classifier_params.h │ │ │ ├── sdet_texture_classifier_sptr.h │ │ │ ├── sdet_third_order_edge_det.cxx │ │ │ ├── sdet_third_order_edge_det.h │ │ │ ├── sdet_third_order_edge_det_params.cxx │ │ │ ├── sdet_third_order_edge_det_params.h │ │ │ ├── sdet_vrml_display.cxx │ │ │ ├── sdet_vrml_display.h │ │ │ ├── sdet_watershed_region_proc.cxx │ │ │ ├── sdet_watershed_region_proc.h │ │ │ ├── sdet_watershed_region_proc_params.cxx │ │ │ ├── sdet_watershed_region_proc_params.h │ │ │ └── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jar-closeup.tif │ │ │ │ ├── test_denoise_mrf.cxx │ │ │ │ ├── test_denoise_mrf_bp.cxx │ │ │ │ ├── test_detector.cxx │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_gauss_fit.cxx │ │ │ │ ├── test_include.cxx │ │ │ │ ├── test_region_proc.cxx │ │ │ │ ├── test_segmentation.cxx │ │ │ │ └── test_sel.cxx │ │ └── segv │ │ │ ├── CMakeLists.txt │ │ │ ├── dll.h │ │ │ ├── segv_misc_manager.cxx │ │ │ ├── segv_misc_manager.h │ │ │ ├── segv_misc_menus.cxx │ │ │ ├── segv_misc_menus.h │ │ │ ├── segv_vil_menus.cxx │ │ │ ├── segv_vil_menus.h │ │ │ ├── segv_vil_segmentation_manager.cxx │ │ │ ├── segv_vil_segmentation_manager.h │ │ │ ├── segv_vtol2D_tableau.cxx │ │ │ ├── segv_vtol2D_tableau.h │ │ │ ├── segv_vtol2D_tableau_sptr.h │ │ │ ├── segv_vtol_soview2D.cxx │ │ │ ├── segv_vtol_soview2D.h │ │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ │ │ └── vil_dll.h │ └── cvg │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ └── vil_pyramid_image_view+vxl_byte-.cxx │ │ ├── cvg_hemisphere_tableau.cxx │ │ ├── cvg_hemisphere_tableau.h │ │ ├── cvg_hemisphere_view.cxx │ │ └── tests │ │ ├── CMakeLists.txt │ │ └── test_include.cxx ├── conversions │ ├── CMakeLists.txt │ ├── README │ ├── container │ │ ├── CMakeLists.txt │ │ ├── CoolArray_to_CoolList.h │ │ ├── CoolArray_to_vcl_list.h │ │ ├── CoolArray_to_vcl_vector.h │ │ ├── CoolList_to_CoolArray.h │ │ ├── CoolList_to_vcl_list.h │ │ ├── CoolList_to_vcl_vector.h │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_COOL_container.cxx │ │ │ ├── test_container.cxx │ │ │ ├── test_driver.cxx │ │ │ └── test_include.cxx │ │ ├── vcl_list_to_CoolArray.h │ │ ├── vcl_list_to_CoolList.h │ │ ├── vcl_list_to_vcl_vector.h │ │ ├── vcl_vector_to_CoolArray.h │ │ ├── vcl_vector_to_CoolList.h │ │ ├── vcl_vector_to_vcl_list.h │ │ ├── vcl_vector_to_vnl_vector.h │ │ └── vnl_vector_to_vcl_vector.h │ ├── geometry │ │ ├── CMakeLists.txt │ │ ├── DigitalCurve_to_vdgl.h │ │ ├── osl_to_vdgl.h │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_DigitalCurve_to_vdgl.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_osl_to_vdgl.cxx │ ├── image │ │ ├── CMakeLists.txt │ │ ├── Image_to_vil1.h │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_image_conversions.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_vil1_vbl_conversions.cxx │ │ ├── vbl_array_to_vil1.h │ │ ├── vil1_to_Image.h │ │ └── vil1_to_vbl_array.h │ ├── math │ │ ├── CMakeLists.txt │ │ ├── CoolMatrix_to_vnl_matrix.h │ │ ├── CoolVector_to_vnl_vector.h │ │ ├── IUE_matrix_to_vnl_matrix.h │ │ ├── IUE_vector_to_vnl_vector.h │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_CoolMatrix_conversions.cxx │ │ │ ├── test_IUE_matrix_conversions.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_matrix_conversions.cxx │ │ ├── vbl_array_to_vnl_matrix.h │ │ ├── vbl_array_to_vnl_vector.h │ │ ├── vnl_matrix_to_CoolMatrix.h │ │ ├── vnl_matrix_to_IUE_matrix.h │ │ ├── vnl_matrix_to_vbl_array.h │ │ ├── vnl_vector_to_CoolVector.h │ │ ├── vnl_vector_to_IUE_vector.h │ │ └── vnl_vector_to_vbl_array.h │ └── misc │ │ ├── CMakeLists.txt │ │ └── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ └── test_include.cxx ├── cul │ ├── CMakeLists.txt │ ├── bundler │ │ ├── CMakeLists.txt │ │ ├── bundler.cxx │ │ ├── bundler.h │ │ ├── bundler_inters.cxx │ │ ├── bundler_inters.h │ │ ├── bundler_settings.h │ │ ├── bundler_sfm.h │ │ ├── bundler_sfm_impl.cxx │ │ ├── bundler_sfm_impl.h │ │ ├── bundler_tracks.h │ │ ├── bundler_tracks_impl.cxx │ │ ├── bundler_tracks_impl.h │ │ ├── bundler_utils.cxx │ │ ├── bundler_utils.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_add_next_image.cxx │ │ │ ├── test_bundle_adjust.cxx │ │ │ ├── test_bundler_utils.cxx │ │ │ ├── test_data │ │ │ ├── checkers.png │ │ │ ├── kermit000.jpg │ │ │ ├── kermit001.jpg │ │ │ ├── kermit002.jpg │ │ │ ├── kermit003.jpg │ │ │ ├── kermit004.jpg │ │ │ ├── kermit005.jpg │ │ │ ├── kermit006.jpg │ │ │ ├── kermit007.jpg │ │ │ ├── kermit008.jpg │ │ │ ├── kermit009.jpg │ │ │ └── kermit010.jpg │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_initial_recon.cxx │ │ │ ├── test_match_ann.cxx │ │ │ ├── test_pipeline.cxx │ │ │ ├── test_ply.cxx │ │ │ ├── test_propose_matches.cxx │ │ │ ├── test_refine.cxx │ │ │ ├── test_tracks.cxx │ │ │ ├── test_tracks_detect.cxx │ │ │ ├── utils.cxx │ │ │ └── utils.h │ └── readme.txt ├── gel │ ├── CMakeLists.txt │ ├── geml │ │ ├── CMakeLists.txt │ │ ├── geml_matcher.cxx │ │ ├── geml_matcher.h │ │ ├── geml_matcher_correlation.cxx │ │ ├── geml_matcher_correlation.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── gevd │ │ ├── CMakeLists.txt │ │ ├── gevd_bufferxy.cxx │ │ ├── gevd_bufferxy.h │ │ ├── gevd_clean_edgels.cxx │ │ ├── gevd_clean_edgels.h │ │ ├── gevd_contour.cxx │ │ ├── gevd_contour.h │ │ ├── gevd_detector.cxx │ │ ├── gevd_detector.h │ │ ├── gevd_detector_params.cxx │ │ ├── gevd_detector_params.h │ │ ├── gevd_edgel_regions.cxx │ │ ├── gevd_edgel_regions.h │ │ ├── gevd_float_operators.cxx │ │ ├── gevd_float_operators.h │ │ ├── gevd_fold.cxx │ │ ├── gevd_fold.h │ │ ├── gevd_memory_mixin.cxx │ │ ├── gevd_memory_mixin.h │ │ ├── gevd_noise.cxx │ │ ├── gevd_noise.h │ │ ├── gevd_param_mixin.cxx │ │ ├── gevd_param_mixin.h │ │ ├── gevd_pixel.h │ │ ├── gevd_region_edge.cxx │ │ ├── gevd_region_edge.h │ │ ├── gevd_region_proc.cxx │ │ ├── gevd_region_proc.h │ │ ├── gevd_region_proc_params.cxx │ │ ├── gevd_region_proc_params.h │ │ ├── gevd_status_mixin.h │ │ ├── gevd_step.cxx │ │ ├── gevd_step.h │ │ ├── gevd_xpixel.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_gevd_bufferxy.cxx │ │ │ ├── test_gevd_float_operators.cxx │ │ │ ├── test_gevd_memory_mixin.cxx │ │ │ ├── test_gevd_noise.cxx │ │ │ ├── test_gevd_param_mixin.cxx │ │ │ └── test_include.cxx │ ├── gmvl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_smart_ptr+gmvl_connection-.cxx │ │ │ └── vbl_smart_ptr+gmvl_node-.cxx │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ └── gmvl_test.cxx │ │ ├── gmvl_connection.cxx │ │ ├── gmvl_connection.h │ │ ├── gmvl_connection_cache.cxx │ │ ├── gmvl_connection_cache.h │ │ ├── gmvl_connection_sptr.h │ │ ├── gmvl_corner_node.h │ │ ├── gmvl_database.cxx │ │ ├── gmvl_database.h │ │ ├── gmvl_helpers.cxx │ │ ├── gmvl_helpers.h │ │ ├── gmvl_image_node.h │ │ ├── gmvl_node.cxx │ │ ├── gmvl_node.h │ │ ├── gmvl_node_cache.cxx │ │ ├── gmvl_node_cache.h │ │ ├── gmvl_node_sptr.h │ │ ├── gmvl_tag_node.h │ │ ├── gmvl_topology_node.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── gst │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_smart_ptr+gst_edge_2d-.cxx │ │ │ ├── vbl_smart_ptr+gst_polygon_2d-.cxx │ │ │ └── vbl_smart_ptr+gst_vertex_2d-.cxx │ │ ├── gst_edge_2d.cxx │ │ ├── gst_edge_2d.h │ │ ├── gst_edge_2d_sptr.h │ │ ├── gst_face_2d.cxx │ │ ├── gst_face_2d.h │ │ ├── gst_polygon_2d.cxx │ │ ├── gst_polygon_2d.h │ │ ├── gst_polygon_2d_operators.cxx │ │ ├── gst_polygon_2d_operators.h │ │ ├── gst_polygon_2d_sptr.h │ │ ├── gst_vertex_2d.cxx │ │ ├── gst_vertex_2d.h │ │ ├── gst_vertex_2d_sptr.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── gtrl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_smart_ptr+gtrl_triangle-.cxx │ │ │ └── vbl_smart_ptr+gtrl_vertex-.cxx │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ └── triangulate.cxx │ │ ├── gtrl_polygon.cxx │ │ ├── gtrl_polygon.h │ │ ├── gtrl_triangle.cxx │ │ ├── gtrl_triangle.h │ │ ├── gtrl_triangulation.cxx │ │ ├── gtrl_triangulation.h │ │ ├── gtrl_vertex.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── mrc │ │ ├── CMakeLists.txt │ │ └── carmen_interface │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── carmen_interface.cpp │ │ │ ├── carmen_interface.h │ │ │ ├── main.cpp │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── octree │ │ ├── .NoDartCoverage │ │ ├── BaseCube.h │ │ ├── CMakeLists.txt │ │ ├── ConvexHull.cxx │ │ ├── ConvexHull.h │ │ ├── Cube.h │ │ ├── OctreeLevel.cxx │ │ ├── OctreeLevel.h │ │ ├── Voxel.cxx │ │ ├── Voxel.h │ │ ├── VoxmapImagePoints.cxx │ │ ├── VoxmapImagePoints.h │ │ ├── VoxmapPoints.cxx │ │ ├── VoxmapPoints.h │ │ ├── main.cxx │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── pop │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ └── pop_simple_exec.cxx │ │ ├── pop.cd │ │ ├── pop_edge.cxx │ │ ├── pop_edge.h │ │ ├── pop_geometric_cost_function.cxx │ │ ├── pop_geometric_cost_function.h │ │ ├── pop_geometric_object.cxx │ │ ├── pop_geometric_object.h │ │ ├── pop_graph_cost_function.cxx │ │ ├── pop_graph_cost_function.h │ │ ├── pop_homography_2d.cxx │ │ ├── pop_homography_2d.h │ │ ├── pop_manager.cxx │ │ ├── pop_manager.h │ │ ├── pop_object.cxx │ │ ├── pop_object.h │ │ ├── pop_parameter.cxx │ │ ├── pop_parameter.h │ │ ├── pop_point_2d.cxx │ │ ├── pop_point_2d.h │ │ ├── pop_point_3d.cxx │ │ ├── pop_point_3d.h │ │ ├── pop_projective.cxx │ │ ├── pop_projective.h │ │ ├── pop_rigid_3d.cxx │ │ ├── pop_rigid_3d.h │ │ ├── pop_transform.cxx │ │ ├── pop_transform.h │ │ ├── pop_vertex.cxx │ │ ├── pop_vertex.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── vdgl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_io_smart_ptr+vdgl_digital_curve-.cxx │ │ │ ├── vbl_io_smart_ptr+vdgl_edgel_chain-.cxx │ │ │ ├── vbl_smart_ptr+vdgl_digital_curve-.cxx │ │ │ ├── vbl_smart_ptr+vdgl_digital_region-.cxx │ │ │ ├── vbl_smart_ptr+vdgl_edgel_chain-.cxx │ │ │ ├── vbl_smart_ptr+vdgl_fit_lines_params-.cxx │ │ │ ├── vbl_smart_ptr+vdgl_interpolator-.cxx │ │ │ └── vsl_vector_io+vdgl_digital_curve_sptr-.cxx │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test1_vdgl.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_vdgl.cxx │ │ │ └── test_vdgl_io.cxx │ │ ├── vdgl_OrthogRegress.h │ │ ├── vdgl_digital_curve.cxx │ │ ├── vdgl_digital_curve.h │ │ ├── vdgl_digital_curve_sptr.h │ │ ├── vdgl_digital_region.cxx │ │ ├── vdgl_digital_region.h │ │ ├── vdgl_digital_region_sptr.h │ │ ├── vdgl_edgel.cxx │ │ ├── vdgl_edgel.h │ │ ├── vdgl_edgel_chain.cxx │ │ ├── vdgl_edgel_chain.h │ │ ├── vdgl_edgel_chain_sptr.h │ │ ├── vdgl_fit_line.cxx │ │ ├── vdgl_fit_line.h │ │ ├── vdgl_fit_lines.cxx │ │ ├── vdgl_fit_lines.h │ │ ├── vdgl_fit_lines_params.cxx │ │ ├── vdgl_fit_lines_params.h │ │ ├── vdgl_interpolator.cxx │ │ ├── vdgl_interpolator.h │ │ ├── vdgl_interpolator_cubic.cxx │ │ ├── vdgl_interpolator_cubic.h │ │ ├── vdgl_interpolator_linear.cxx │ │ ├── vdgl_interpolator_linear.h │ │ ├── vdgl_interpolator_sptr.h │ │ ├── vdgl_ortho_regress.cxx │ │ └── vdgl_ortho_regress.h │ ├── vifa │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_smart_ptr+vifa_bbox-.cxx │ │ │ ├── vbl_smart_ptr+vifa_coll_lines-.cxx │ │ │ ├── vbl_smart_ptr+vifa_coll_lines_params-.cxx │ │ │ ├── vbl_smart_ptr+vifa_group_pgram_params-.cxx │ │ │ ├── vbl_smart_ptr+vifa_histogram-.cxx │ │ │ ├── vbl_smart_ptr+vifa_imp_line+double--.cxx │ │ │ ├── vbl_smart_ptr+vifa_incr_var-.cxx │ │ │ ├── vbl_smart_ptr+vifa_int_face_attr-.cxx │ │ │ ├── vbl_smart_ptr+vifa_int_faces_attr-.cxx │ │ │ ├── vbl_smart_ptr+vifa_line_cover-.cxx │ │ │ ├── vbl_smart_ptr+vifa_norm_params-.cxx │ │ │ └── vifa_imp_line+double-.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── cam0013.tif │ │ │ ├── cam0013_oneblob.tif │ │ │ ├── test_coll_lines_params.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_group_pgram_params.cxx │ │ │ ├── test_ifa_factory.cxx │ │ │ ├── test_ifa_factory.h │ │ │ ├── test_image_histogram.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_int_face_attr.cxx │ │ │ ├── test_int_face_attr_common_params.cxx │ │ │ ├── test_int_faces_adj_attr.cxx │ │ │ ├── test_int_faces_attr.cxx │ │ │ ├── test_norm_params.cxx │ │ │ ├── test_parallel_params.cxx │ │ │ ├── test_region_proc.cxx │ │ │ ├── test_template_include.cxx │ │ │ └── testimg.tif │ │ ├── vifa_bbox.h │ │ ├── vifa_coll_lines.cxx │ │ ├── vifa_coll_lines.h │ │ ├── vifa_coll_lines_params.cxx │ │ ├── vifa_coll_lines_params.h │ │ ├── vifa_gaussian.cxx │ │ ├── vifa_gaussian.h │ │ ├── vifa_group_pgram.cxx │ │ ├── vifa_group_pgram.h │ │ ├── vifa_group_pgram_params.cxx │ │ ├── vifa_group_pgram_params.h │ │ ├── vifa_histogram.cxx │ │ ├── vifa_histogram.h │ │ ├── vifa_image_histogram.cxx │ │ ├── vifa_image_histogram.h │ │ ├── vifa_imp_line.h │ │ ├── vifa_imp_line.hxx │ │ ├── vifa_incr_var.cxx │ │ ├── vifa_incr_var.h │ │ ├── vifa_int_face_attr.cxx │ │ ├── vifa_int_face_attr.h │ │ ├── vifa_int_face_attr_common.cxx │ │ ├── vifa_int_face_attr_common.h │ │ ├── vifa_int_face_attr_common_params.cxx │ │ ├── vifa_int_face_attr_common_params.h │ │ ├── vifa_int_face_attr_factory.h │ │ ├── vifa_int_faces_adj_attr.cxx │ │ ├── vifa_int_faces_adj_attr.h │ │ ├── vifa_int_faces_attr.cxx │ │ ├── vifa_int_faces_attr.h │ │ ├── vifa_line_cover.cxx │ │ ├── vifa_line_cover.h │ │ ├── vifa_norm_params.cxx │ │ ├── vifa_norm_params.h │ │ ├── vifa_parallel.cxx │ │ ├── vifa_parallel.h │ │ ├── vifa_parallel_params.cxx │ │ ├── vifa_parallel_params.h │ │ └── vifa_typedefs.h │ ├── vmal │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_smart_ptr+vmal_multi_view_data+vtol_edge_2d_sptr--.cxx │ │ │ └── vbl_smart_ptr+vmal_multi_view_data+vtol_vertex_2d_sptr--.cxx │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ │ ├── vmal_convert_osl.cxx │ │ ├── vmal_convert_osl.h │ │ ├── vmal_convert_vtol.cxx │ │ ├── vmal_convert_vtol.h │ │ ├── vmal_dense_matching.cxx │ │ ├── vmal_dense_matching.h │ │ ├── vmal_homog2d.cxx │ │ ├── vmal_homog2d.h │ │ ├── vmal_lines_correlation.cxx │ │ ├── vmal_lines_correlation.h │ │ ├── vmal_multi_view_data.cxx │ │ ├── vmal_multi_view_data.h │ │ ├── vmal_multi_view_data_edge_sptr.h │ │ ├── vmal_multi_view_data_vertex_sptr.h │ │ ├── vmal_operators.cxx │ │ ├── vmal_operators.h │ │ ├── vmal_rectifier.cxx │ │ ├── vmal_rectifier.h │ │ ├── vmal_refine_lines.cxx │ │ ├── vmal_refine_lines.h │ │ ├── vmal_track_lines.cxx │ │ └── vmal_track_lines.h │ ├── vsol │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_array_2d+vcl_vector+vcl_vector+vsol_point_3d_sptr--~-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_conic_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_cylinder-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_digital_curve_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_digital_curve_3d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_group_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_line_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_point_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_point_3d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_polygon_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_polyline_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_rectangle_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_spatial_object_2d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_spatial_object_3d-.cxx │ │ │ ├── vbl_io_smart_ptr+vsol_triangle_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_box_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_box_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_conic_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_curve_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_curve_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_cylinder-.cxx │ │ │ ├── vbl_smart_ptr+vsol_digital_curve_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_digital_curve_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_group_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_group_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_line_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_line_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_orient_box_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_point_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_point_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_poly_set_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_polygon_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_polygon_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_polyhedron-.cxx │ │ │ ├── vbl_smart_ptr+vsol_polyline_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_polyline_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_rectangle_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_rectangle_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_region_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_region_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_spatial_object_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_spatial_object_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_surface_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_tetrahedron-.cxx │ │ │ ├── vbl_smart_ptr+vsol_triangle_2d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_triangle_3d-.cxx │ │ │ ├── vbl_smart_ptr+vsol_volume_3d-.cxx │ │ │ ├── vcl_map+uint.vcl_vector+vsol_digital_curve_2d_sptr--.cxx │ │ │ ├── vsl_binary_loader+vsol_spatial_object_2d-.cxx │ │ │ ├── vsl_binary_loader+vsol_spatial_object_3d-.cxx │ │ │ ├── vsl_vector_io+vsol_box_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_box_3d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_conic_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_cylinder_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_digital_curve_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_digital_curve_3d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_line_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_point_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_point_3d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_polygon_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_polyline_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_rectangle_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_spatial_object_2d_sptr-.cxx │ │ │ ├── vsl_vector_io+vsol_spatial_object_3d_sptr-.cxx │ │ │ └── vsl_vector_io+vsol_triangle_2d_sptr-.cxx │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── vsol_conic_example.cxx │ │ │ ├── vsol_point_example.cxx │ │ │ └── vsol_spatial_object_example.cxx │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_vsol_conic_2d.cxx │ │ │ ├── test_vsol_digital_curve_2d.cxx │ │ │ ├── test_vsol_digital_curve_3d.cxx │ │ │ ├── test_vsol_group_2d.cxx │ │ │ ├── test_vsol_group_3d.cxx │ │ │ ├── test_vsol_io.cxx │ │ │ ├── test_vsol_line_2d.cxx │ │ │ ├── test_vsol_line_3d.cxx │ │ │ ├── test_vsol_point_2d.cxx │ │ │ ├── test_vsol_point_3d.cxx │ │ │ ├── test_vsol_polygon_2d.cxx │ │ │ ├── test_vsol_polygon_3d.cxx │ │ │ ├── test_vsol_rectangle_2d.cxx │ │ │ ├── test_vsol_rectangle_3d.cxx │ │ │ ├── test_vsol_tetrahedron.cxx │ │ │ ├── test_vsol_triangle_2d.cxx │ │ │ └── test_vsol_triangle_3d.cxx │ │ ├── vsol_box.cxx │ │ ├── vsol_box.h │ │ ├── vsol_box_2d.cxx │ │ ├── vsol_box_2d.h │ │ ├── vsol_box_2d_sptr.h │ │ ├── vsol_box_3d.cxx │ │ ├── vsol_box_3d.h │ │ ├── vsol_box_3d_sptr.h │ │ ├── vsol_box_sptr.h │ │ ├── vsol_conic_2d.cxx │ │ ├── vsol_conic_2d.h │ │ ├── vsol_conic_2d_sptr.h │ │ ├── vsol_curve_2d.cxx │ │ ├── vsol_curve_2d.h │ │ ├── vsol_curve_2d_sptr.h │ │ ├── vsol_curve_3d.cxx │ │ ├── vsol_curve_3d.h │ │ ├── vsol_curve_3d_sptr.h │ │ ├── vsol_cylinder.cxx │ │ ├── vsol_cylinder.h │ │ ├── vsol_cylinder_sptr.h │ │ ├── vsol_digital_curve_2d.cxx │ │ ├── vsol_digital_curve_2d.h │ │ ├── vsol_digital_curve_2d_sptr.h │ │ ├── vsol_digital_curve_3d.cxx │ │ ├── vsol_digital_curve_3d.h │ │ ├── vsol_digital_curve_3d_sptr.h │ │ ├── vsol_flags_id.cxx │ │ ├── vsol_flags_id.h │ │ ├── vsol_flags_id_sptr.h │ │ ├── vsol_group_2d.cxx │ │ ├── vsol_group_2d.h │ │ ├── vsol_group_2d_sptr.h │ │ ├── vsol_group_3d.cxx │ │ ├── vsol_group_3d.h │ │ ├── vsol_group_3d_sptr.h │ │ ├── vsol_line_2d.cxx │ │ ├── vsol_line_2d.h │ │ ├── vsol_line_2d_sptr.h │ │ ├── vsol_line_3d.cxx │ │ ├── vsol_line_3d.h │ │ ├── vsol_line_3d_sptr.h │ │ ├── vsol_orient_box_3d.cxx │ │ ├── vsol_orient_box_3d.h │ │ ├── vsol_orient_box_3d_sptr.h │ │ ├── vsol_point_2d.cxx │ │ ├── vsol_point_2d.h │ │ ├── vsol_point_2d_sptr.h │ │ ├── vsol_point_3d.cxx │ │ ├── vsol_point_3d.h │ │ ├── vsol_point_3d_sptr.h │ │ ├── vsol_poly_set_2d.cxx │ │ ├── vsol_poly_set_2d.h │ │ ├── vsol_poly_set_2d_sptr.h │ │ ├── vsol_polygon_2d.cxx │ │ ├── vsol_polygon_2d.h │ │ ├── vsol_polygon_2d_sptr.h │ │ ├── vsol_polygon_3d.cxx │ │ ├── vsol_polygon_3d.h │ │ ├── vsol_polygon_3d_sptr.h │ │ ├── vsol_polyhedron.cxx │ │ ├── vsol_polyhedron.h │ │ ├── vsol_polyhedron_sptr.h │ │ ├── vsol_polyline_2d.cxx │ │ ├── vsol_polyline_2d.h │ │ ├── vsol_polyline_2d_sptr.h │ │ ├── vsol_polyline_3d.cxx │ │ ├── vsol_polyline_3d.h │ │ ├── vsol_polyline_3d_sptr.h │ │ ├── vsol_rectangle_2d.cxx │ │ ├── vsol_rectangle_2d.h │ │ ├── vsol_rectangle_2d_sptr.h │ │ ├── vsol_rectangle_3d.cxx │ │ ├── vsol_rectangle_3d.h │ │ ├── vsol_rectangle_3d_sptr.h │ │ ├── vsol_region_2d.h │ │ ├── vsol_region_2d_sptr.h │ │ ├── vsol_region_3d.h │ │ ├── vsol_region_3d_sptr.h │ │ ├── vsol_spatial_object.cxx │ │ ├── vsol_spatial_object.h │ │ ├── vsol_spatial_object_2d.cxx │ │ ├── vsol_spatial_object_2d.h │ │ ├── vsol_spatial_object_2d_sptr.h │ │ ├── vsol_spatial_object_3d.cxx │ │ ├── vsol_spatial_object_3d.h │ │ ├── vsol_spatial_object_3d_sptr.h │ │ ├── vsol_spatial_object_sptr.h │ │ ├── vsol_surface_3d.h │ │ ├── vsol_surface_3d_sptr.h │ │ ├── vsol_tetrahedron.cxx │ │ ├── vsol_tetrahedron.h │ │ ├── vsol_tetrahedron_sptr.h │ │ ├── vsol_triangle_2d.cxx │ │ ├── vsol_triangle_2d.h │ │ ├── vsol_triangle_2d_sptr.h │ │ ├── vsol_triangle_3d.cxx │ │ ├── vsol_triangle_3d.h │ │ ├── vsol_triangle_3d_sptr.h │ │ ├── vsol_volume_3d.h │ │ └── vsol_volume_3d_sptr.h │ └── vtol │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vbl_smart_ptr+vtol_block-.cxx │ │ ├── vbl_smart_ptr+vtol_chain-.cxx │ │ ├── vbl_smart_ptr+vtol_edge-.cxx │ │ ├── vbl_smart_ptr+vtol_edge_2d-.cxx │ │ ├── vbl_smart_ptr+vtol_face-.cxx │ │ ├── vbl_smart_ptr+vtol_face_2d-.cxx │ │ ├── vbl_smart_ptr+vtol_intensity_face-.cxx │ │ ├── vbl_smart_ptr+vtol_one_chain-.cxx │ │ ├── vbl_smart_ptr+vtol_topology_object-.cxx │ │ ├── vbl_smart_ptr+vtol_two_chain-.cxx │ │ ├── vbl_smart_ptr+vtol_vertex-.cxx │ │ ├── vbl_smart_ptr+vtol_vertex_2d-.cxx │ │ ├── vbl_smart_ptr+vtol_zero_chain-.cxx │ │ ├── vtol_list_functions+vtol_block~-.cxx │ │ ├── vtol_list_functions+vtol_edge~-.cxx │ │ ├── vtol_list_functions+vtol_face~-.cxx │ │ ├── vtol_list_functions+vtol_one_chain~-.cxx │ │ ├── vtol_list_functions+vtol_topology_object_sptr-.cxx │ │ ├── vtol_list_functions+vtol_two_chain~-.cxx │ │ ├── vtol_list_functions+vtol_vertex~-.cxx │ │ └── vtol_list_functions+vtol_zero_chain~-.cxx │ │ ├── algo │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── vbl_smart_ptr+vtol_extract_topology_edgel_chain-.cxx │ │ │ ├── vbl_smart_ptr+vtol_extract_topology_region_type-.cxx │ │ │ └── vtol_extract_topology+vxl_uint_16-.cxx │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_include.cxx │ │ │ └── test_template_include.cxx │ │ ├── vtol_extract_topology.cxx │ │ ├── vtol_extract_topology.h │ │ └── vtol_extract_topology.hxx │ │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── example2d.cxx │ │ ├── example3d.cxx │ │ └── example_vdgl.cxx │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_block.cxx │ │ ├── test_cycle_processor.cxx │ │ ├── test_driver.cxx │ │ ├── test_edge_2d.cxx │ │ ├── test_extract_topology.cxx │ │ ├── test_face_2d.cxx │ │ ├── test_include.cxx │ │ ├── test_one_chain.cxx │ │ ├── test_template_include.cxx │ │ ├── test_two_chain.cxx │ │ ├── test_vertex_2d.cxx │ │ ├── test_zero_chain.cxx │ │ ├── vtol_test_refcounting.cxx │ │ └── vtol_test_timing.cxx │ │ ├── vtol.dtd │ │ ├── vtol_block.cxx │ │ ├── vtol_block.h │ │ ├── vtol_block_sptr.h │ │ ├── vtol_chain.cxx │ │ ├── vtol_chain.h │ │ ├── vtol_chain_sptr.h │ │ ├── vtol_cycle_processor.cxx │ │ ├── vtol_cycle_processor.h │ │ ├── vtol_dtd.h │ │ ├── vtol_edge.cxx │ │ ├── vtol_edge.h │ │ ├── vtol_edge_2d.cxx │ │ ├── vtol_edge_2d.h │ │ ├── vtol_edge_2d_sptr.h │ │ ├── vtol_edge_sptr.h │ │ ├── vtol_face.cxx │ │ ├── vtol_face.h │ │ ├── vtol_face_2d.cxx │ │ ├── vtol_face_2d.h │ │ ├── vtol_face_2d_sptr.h │ │ ├── vtol_face_sptr.h │ │ ├── vtol_intensity_face.cxx │ │ ├── vtol_intensity_face.h │ │ ├── vtol_intensity_face_sptr.h │ │ ├── vtol_list_functions.h │ │ ├── vtol_list_functions.hxx │ │ ├── vtol_macros.h │ │ ├── vtol_one_chain.cxx │ │ ├── vtol_one_chain.h │ │ ├── vtol_one_chain_sptr.h │ │ ├── vtol_topology_cache.cxx │ │ ├── vtol_topology_cache.h │ │ ├── vtol_topology_cache_sptr.h │ │ ├── vtol_topology_io.cxx │ │ ├── vtol_topology_io.h │ │ ├── vtol_topology_object.cxx │ │ ├── vtol_topology_object.h │ │ ├── vtol_topology_object_sptr.h │ │ ├── vtol_two_chain.cxx │ │ ├── vtol_two_chain.h │ │ ├── vtol_two_chain_sptr.h │ │ ├── vtol_vertex.cxx │ │ ├── vtol_vertex.h │ │ ├── vtol_vertex_2d.cxx │ │ ├── vtol_vertex_2d.h │ │ ├── vtol_vertex_2d_sptr.h │ │ ├── vtol_vertex_sptr.h │ │ ├── vtol_zero_chain.cxx │ │ ├── vtol_zero_chain.h │ │ └── vtol_zero_chain_sptr.h ├── mul │ ├── CMakeLists.txt │ ├── clsfy │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── mbl_cloneables_factory+clsfy_builder_1d-.cxx │ │ │ ├── mbl_cloneables_factory+clsfy_builder_base-.cxx │ │ │ ├── vbl_array_2d+clsfy_binary_threshold_1d-.cxx │ │ │ ├── vsl_binary_loader+clsfy_builder_1d-.cxx │ │ │ ├── vsl_binary_loader+clsfy_builder_base-.cxx │ │ │ ├── vsl_binary_loader+clsfy_classifier_1d-.cxx │ │ │ ├── vsl_binary_loader+clsfy_classifier_base-.cxx │ │ │ └── vsl_vector_io+clsfy_classifier_1d~-.cxx │ │ ├── clsfy_adaboost_sorted_builder.cxx │ │ ├── clsfy_adaboost_sorted_builder.h │ │ ├── clsfy_adaboost_trainer.cxx │ │ ├── clsfy_adaboost_trainer.h │ │ ├── clsfy_add_all_loaders.cxx │ │ ├── clsfy_add_all_loaders.h │ │ ├── clsfy_binary_1d_wrapper.cxx │ │ ├── clsfy_binary_1d_wrapper.h │ │ ├── clsfy_binary_1d_wrapper_builder.cxx │ │ ├── clsfy_binary_1d_wrapper_builder.h │ │ ├── clsfy_binary_hyperplane.cxx │ │ ├── clsfy_binary_hyperplane.h │ │ ├── clsfy_binary_hyperplane_gmrho_builder.cxx │ │ ├── clsfy_binary_hyperplane_gmrho_builder.h │ │ ├── clsfy_binary_hyperplane_logit_builder.cxx │ │ ├── clsfy_binary_hyperplane_logit_builder.h │ │ ├── clsfy_binary_hyperplane_ls_builder.cxx │ │ ├── clsfy_binary_hyperplane_ls_builder.h │ │ ├── clsfy_binary_pdf_classifier.cxx │ │ ├── clsfy_binary_pdf_classifier.h │ │ ├── clsfy_binary_threshold_1d.cxx │ │ ├── clsfy_binary_threshold_1d.h │ │ ├── clsfy_binary_threshold_1d_builder.cxx │ │ ├── clsfy_binary_threshold_1d_builder.h │ │ ├── clsfy_binary_threshold_1d_gini_builder.cxx │ │ ├── clsfy_binary_threshold_1d_gini_builder.h │ │ ├── clsfy_binary_tree.cxx │ │ ├── clsfy_binary_tree.h │ │ ├── clsfy_binary_tree_builder.cxx │ │ ├── clsfy_binary_tree_builder.h │ │ ├── clsfy_builder_1d.cxx │ │ ├── clsfy_builder_1d.h │ │ ├── clsfy_builder_base.cxx │ │ ├── clsfy_builder_base.h │ │ ├── clsfy_classifier_1d.cxx │ │ ├── clsfy_classifier_1d.h │ │ ├── clsfy_classifier_base.cxx │ │ ├── clsfy_classifier_base.h │ │ ├── clsfy_direct_boost.cxx │ │ ├── clsfy_direct_boost.h │ │ ├── clsfy_direct_boost_builder.cxx │ │ ├── clsfy_direct_boost_builder.h │ │ ├── clsfy_k_nearest_neighbour.cxx │ │ ├── clsfy_k_nearest_neighbour.h │ │ ├── clsfy_knn_builder.cxx │ │ ├── clsfy_knn_builder.h │ │ ├── clsfy_logit_loss_function.cxx │ │ ├── clsfy_logit_loss_function.h │ │ ├── clsfy_mean_square_1d.cxx │ │ ├── clsfy_mean_square_1d.h │ │ ├── clsfy_mean_square_1d_builder.cxx │ │ ├── clsfy_mean_square_1d_builder.h │ │ ├── clsfy_null_builder.cxx │ │ ├── clsfy_null_builder.h │ │ ├── clsfy_null_classifier.cxx │ │ ├── clsfy_null_classifier.h │ │ ├── clsfy_parzen_builder.cxx │ │ ├── clsfy_parzen_builder.h │ │ ├── clsfy_random_builder.cxx │ │ ├── clsfy_random_builder.h │ │ ├── clsfy_random_classifier.cxx │ │ ├── clsfy_random_classifier.h │ │ ├── clsfy_random_forest.cxx │ │ ├── clsfy_random_forest.h │ │ ├── clsfy_random_forest_builder.cxx │ │ ├── clsfy_random_forest_builder.h │ │ ├── clsfy_rbf_parzen.cxx │ │ ├── clsfy_rbf_parzen.h │ │ ├── clsfy_rbf_svm.cxx │ │ ├── clsfy_rbf_svm.h │ │ ├── clsfy_rbf_svm_smo_1_builder.cxx │ │ ├── clsfy_rbf_svm_smo_1_builder.h │ │ ├── clsfy_simple_adaboost.cxx │ │ ├── clsfy_simple_adaboost.h │ │ ├── clsfy_smo_1.cxx │ │ ├── clsfy_smo_1.h │ │ ├── clsfy_smo_base.cxx │ │ ├── clsfy_smo_base.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_adaboost.cxx │ │ │ ├── test_binary_1d_wrapper.cxx │ │ │ ├── test_binary_hyperplane.cxx │ │ │ ├── test_binary_hyperplane_logit.cxx │ │ │ ├── test_binary_pdf_classifier.cxx │ │ │ ├── test_binary_threshold_1d.cxx │ │ │ ├── test_binary_tree.cxx │ │ │ ├── test_direct_boost.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_k_nearest_neighbour.cxx │ │ │ ├── test_logit_loss_function.cxx │ │ │ ├── test_mean_square_1d.cxx │ │ │ ├── test_random_forest.cxx │ │ │ ├── test_rbf_svm_smo.cxx │ │ │ └── test_smo_1.cxx │ ├── doc │ │ └── book │ │ │ ├── atexinfo.tex │ │ │ ├── awffonts.tex │ │ │ ├── book.texi │ │ │ ├── chapter_clsfy.texi │ │ │ ├── chapter_mbl.texi │ │ │ ├── chapter_mil.texi │ │ │ ├── chapter_vil3d.texi │ │ │ ├── chapter_vimt.texi │ │ │ ├── chapter_vpdfl.texi │ │ │ ├── makefile │ │ │ ├── mbl_mz_random_graph1.eps │ │ │ ├── mbl_mz_random_graph2.eps │ │ │ └── mbl_mz_random_graph3.eps │ ├── fhs │ │ ├── CMakeLists.txt │ │ ├── fhs_arc.cxx │ │ ├── fhs_arc.h │ │ ├── fhs_searcher.cxx │ │ ├── fhs_searcher.h │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_arc.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_searcher.cxx │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── fhs_match_tree_model.cxx │ │ │ ├── find_matches.cxx │ │ │ └── mr_find_matches.cxx │ ├── ipts │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ ├── ipts_corner_pyramid.cxx │ │ ├── ipts_corner_pyramid.h │ │ ├── ipts_draw.h │ │ ├── ipts_entropy_pyramid.cxx │ │ ├── ipts_entropy_pyramid.h │ │ ├── ipts_local_entropy.cxx │ │ ├── ipts_local_entropy.h │ │ ├── ipts_orientation_pyramid.cxx │ │ ├── ipts_orientation_pyramid.h │ │ ├── ipts_scale_space_peaks.h │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_scale_space_peaks.cxx │ │ └── tools │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── find_dog_peaks.cxx │ │ │ ├── find_scale_corners.cxx │ │ │ ├── find_scale_entropy_peaks.cxx │ │ │ ├── find_scale_orient_entropy_peaks.cxx │ │ │ ├── show_local_entropy.cxx │ │ │ └── show_orientation_entropy.cxx │ ├── m23d │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ ├── m23d_correction_matrix_error.cxx │ │ ├── m23d_correction_matrix_error.h │ │ ├── m23d_make_ortho_projection.cxx │ │ ├── m23d_make_ortho_projection.h │ │ ├── m23d_ortho_flexible_builder.cxx │ │ ├── m23d_ortho_flexible_builder.h │ │ ├── m23d_ortho_rigid_builder.cxx │ │ ├── m23d_ortho_rigid_builder.h │ │ ├── m23d_pure_ortho_projection.cxx │ │ ├── m23d_pure_ortho_projection.h │ │ ├── m23d_rotation_from_ortho_projection.cxx │ │ ├── m23d_rotation_from_ortho_projection.h │ │ ├── m23d_rotation_matrix.cxx │ │ ├── m23d_rotation_matrix.h │ │ ├── m23d_scaled_ortho_projection.cxx │ │ ├── m23d_scaled_ortho_projection.h │ │ ├── m23d_select_basis_views.cxx │ │ ├── m23d_select_basis_views.h │ │ ├── m23d_set_q_constraint.cxx │ │ ├── m23d_set_q_constraint.h │ │ ├── notes.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_correction_matrix_error.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_make_ortho_projection.cxx │ │ │ ├── test_ortho_flexible_builder.cxx │ │ │ ├── test_ortho_rigid_builder.cxx │ │ │ ├── test_rotation_from_ortho_projection.cxx │ │ │ └── test_rotation_matrix.cxx │ ├── mbl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── mbl_ar_process+double-.cxx │ │ │ ├── mbl_cluster_tree+vnl_vector+double-+dist-.cxx │ │ │ ├── mbl_clusters+vnl_vector+double-+dist-.cxx │ │ │ ├── mbl_data_array_ptr_wrapper+vnl_vector+double--.cxx │ │ │ ├── mbl_data_array_wrapper+double-.cxx │ │ │ ├── mbl_data_array_wrapper+uint-.cxx │ │ │ ├── mbl_data_array_wrapper+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── mbl_data_array_wrapper+vnl_vector+double--.cxx │ │ │ ├── mbl_data_collector+uint-.cxx │ │ │ ├── mbl_data_collector+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── mbl_data_collector+vnl_vector+double--.cxx │ │ │ ├── mbl_data_collector_list+uint-.cxx │ │ │ ├── mbl_data_collector_list+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── mbl_data_collector_list+vnl_vector+double--.cxx │ │ │ ├── mbl_data_wrapper+double-.cxx │ │ │ ├── mbl_data_wrapper+uint-.cxx │ │ │ ├── mbl_data_wrapper+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── mbl_data_wrapper+vnl_vector+double--.cxx │ │ │ ├── mbl_data_wrapper_mixer+vnl_vector+double--.cxx │ │ │ ├── mbl_file_data_collector+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── mbl_file_data_collector+vnl_vector+double--.cxx │ │ │ ├── mbl_file_data_wrapper+double-.cxx │ │ │ ├── mbl_file_data_wrapper+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── mbl_file_data_wrapper+vnl_vector+double--.cxx │ │ │ ├── mbl_load_text_file+bool-.cxx │ │ │ ├── mbl_load_text_file+double-.cxx │ │ │ ├── mbl_load_text_file+float-.cxx │ │ │ ├── mbl_load_text_file+int-.cxx │ │ │ ├── mbl_load_text_file+uint-.cxx │ │ │ ├── mbl_load_text_file+vcl_string-.cxx │ │ │ ├── mbl_load_text_file+vgl_point_3d+double--.cxx │ │ │ ├── mbl_save_text_file+bool-.cxx │ │ │ ├── mbl_save_text_file+double-.cxx │ │ │ ├── mbl_save_text_file+float-.cxx │ │ │ ├── mbl_save_text_file+int-.cxx │ │ │ ├── mbl_save_text_file+unsigned-.cxx │ │ │ ├── mbl_save_text_file+vgl_point_3d+double--.cxx │ │ │ ├── mbl_selected_data_wrapper+double-.cxx │ │ │ ├── mbl_selected_data_wrapper+vnl_vector+double--.cxx │ │ │ ├── mbl_stochastic_data_collector+uint-.cxx │ │ │ ├── mbl_stochastic_data_collector+vnl_vector+double--.cxx │ │ │ ├── vsl_binary_loader+mbl_data_collector_base-.cxx │ │ │ ├── vsl_vector_io+mbl_chord-.cxx │ │ │ ├── vsl_vector_io+mbl_chord_3d-.cxx │ │ │ ├── vsl_vector_io+mbl_mask-.cxx │ │ │ ├── vsl_vector_io+mbl_stats_1d-.cxx │ │ │ └── vsl_vector_io+mbl_sum_1d-.cxx │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ └── parse_file_example.cxx │ │ ├── introduction_doxy.txt │ │ ├── mbl_add_all_loaders.cxx │ │ ├── mbl_add_all_loaders.h │ │ ├── mbl_ar_process.h │ │ ├── mbl_ar_process.hxx │ │ ├── mbl_chord.h │ │ ├── mbl_chord_3d.h │ │ ├── mbl_clamped_plate_spline_2d.cxx │ │ ├── mbl_clamped_plate_spline_2d.h │ │ ├── mbl_cloneable_ptr.h │ │ ├── mbl_cloneables_factory.h │ │ ├── mbl_cluster_tree.h │ │ ├── mbl_cluster_tree.hxx │ │ ├── mbl_clusters.h │ │ ├── mbl_clusters.hxx │ │ ├── mbl_combination.h │ │ ├── mbl_config.h.in │ │ ├── mbl_correspond_points.cxx │ │ ├── mbl_correspond_points.h │ │ ├── mbl_data_array_ptr_wrapper.h │ │ ├── mbl_data_array_ptr_wrapper.hxx │ │ ├── mbl_data_array_wrapper.h │ │ ├── mbl_data_array_wrapper.hxx │ │ ├── mbl_data_collector.h │ │ ├── mbl_data_collector.hxx │ │ ├── mbl_data_collector_base.cxx │ │ ├── mbl_data_collector_base.h │ │ ├── mbl_data_collector_list.h │ │ ├── mbl_data_collector_list.hxx │ │ ├── mbl_data_wrapper.h │ │ ├── mbl_data_wrapper.hxx │ │ ├── mbl_data_wrapper_mixer.h │ │ ├── mbl_data_wrapper_mixer.hxx │ │ ├── mbl_draw_line.h │ │ ├── mbl_dyn_prog.cxx │ │ ├── mbl_dyn_prog.h │ │ ├── mbl_eps_writer.cxx │ │ ├── mbl_eps_writer.h │ │ ├── mbl_exception.cxx │ │ ├── mbl_exception.h │ │ ├── mbl_export.h │ │ ├── mbl_file_data_collector.h │ │ ├── mbl_file_data_collector.hxx │ │ ├── mbl_file_data_wrapper.h │ │ ├── mbl_file_data_wrapper.hxx │ │ ├── mbl_gamma.cxx │ │ ├── mbl_gamma.h │ │ ├── mbl_histogram.cxx │ │ ├── mbl_histogram.h │ │ ├── mbl_index_sort.h │ │ ├── mbl_jarque_bera.h │ │ ├── mbl_k_means.cxx │ │ ├── mbl_k_means.h │ │ ├── mbl_lda.cxx │ │ ├── mbl_lda.h │ │ ├── mbl_linear_interpolator.cxx │ │ ├── mbl_linear_interpolator.h │ │ ├── mbl_load_text_file.h │ │ ├── mbl_load_text_file.hxx │ │ ├── mbl_log.cxx │ │ ├── mbl_log.h │ │ ├── mbl_lru_cache.h │ │ ├── mbl_mask.cxx │ │ ├── mbl_mask.h │ │ ├── mbl_matrix_products.cxx │ │ ├── mbl_matrix_products.h │ │ ├── mbl_matxvec.cxx │ │ ├── mbl_matxvec.h │ │ ├── mbl_minimum_spanning_tree.cxx │ │ ├── mbl_minimum_spanning_tree.h │ │ ├── mbl_mod_gram_schmidt.cxx │ │ ├── mbl_mod_gram_schmidt.h │ │ ├── mbl_parse_block.cxx │ │ ├── mbl_parse_block.h │ │ ├── mbl_parse_colon_pairs_list.cxx │ │ ├── mbl_parse_colon_pairs_list.h │ │ ├── mbl_parse_int_list.h │ │ ├── mbl_parse_keyword_list.cxx │ │ ├── mbl_parse_keyword_list.h │ │ ├── mbl_parse_sequence.h │ │ ├── mbl_parse_string_list.cxx │ │ ├── mbl_parse_string_list.h │ │ ├── mbl_parse_tuple.h │ │ ├── mbl_print.h │ │ ├── mbl_priority_bounded_queue.h │ │ ├── mbl_progress.cxx │ │ ├── mbl_progress.h │ │ ├── mbl_progress_callback.h │ │ ├── mbl_progress_composite.cxx │ │ ├── mbl_progress_composite.h │ │ ├── mbl_progress_hierarchy.cxx │ │ ├── mbl_progress_hierarchy.h │ │ ├── mbl_progress_null.cxx │ │ ├── mbl_progress_null.h │ │ ├── mbl_progress_text.cxx │ │ ├── mbl_progress_text.h │ │ ├── mbl_progress_time.cxx │ │ ├── mbl_progress_time.h │ │ ├── mbl_random_n_from_m.cxx │ │ ├── mbl_random_n_from_m.h │ │ ├── mbl_rbf_network.cxx │ │ ├── mbl_rbf_network.h │ │ ├── mbl_read_double.cxx │ │ ├── mbl_read_double.h │ │ ├── mbl_read_int.cxx │ │ ├── mbl_read_int.h │ │ ├── mbl_read_multi_props.cxx │ │ ├── mbl_read_multi_props.h │ │ ├── mbl_read_props.cxx │ │ ├── mbl_read_props.h │ │ ├── mbl_read_str.cxx │ │ ├── mbl_read_str.h │ │ ├── mbl_read_yes.cxx │ │ ├── mbl_read_yes.h │ │ ├── mbl_rvm_regression_builder.cxx │ │ ├── mbl_rvm_regression_builder.h │ │ ├── mbl_sample_stats_1d.cxx │ │ ├── mbl_sample_stats_1d.h │ │ ├── mbl_save_text_file.h │ │ ├── mbl_save_text_file.hxx │ │ ├── mbl_screen_counter.cxx │ │ ├── mbl_screen_counter.h │ │ ├── mbl_select_n_from_m.cxx │ │ ├── mbl_select_n_from_m.h │ │ ├── mbl_selected_data_wrapper.h │ │ ├── mbl_selected_data_wrapper.hxx │ │ ├── mbl_stats_1d.cxx │ │ ├── mbl_stats_1d.h │ │ ├── mbl_stats_nd.cxx │ │ ├── mbl_stats_nd.h │ │ ├── mbl_stepwise_regression.cxx │ │ ├── mbl_stepwise_regression.h │ │ ├── mbl_stl.h │ │ ├── mbl_stl_pred.h │ │ ├── mbl_stochastic_data_collector.h │ │ ├── mbl_stochastic_data_collector.hxx │ │ ├── mbl_sum_1d.cxx │ │ ├── mbl_sum_1d.h │ │ ├── mbl_table.cxx │ │ ├── mbl_table.h │ │ ├── mbl_test.cxx │ │ ├── mbl_test.h │ │ ├── mbl_thin_plate_spline_2d.cxx │ │ ├── mbl_thin_plate_spline_2d.h │ │ ├── mbl_thin_plate_spline_3d.cxx │ │ ├── mbl_thin_plate_spline_3d.h │ │ ├── mbl_thin_plate_spline_weights_3d.cxx │ │ ├── mbl_thin_plate_spline_weights_3d.h │ │ ├── mbl_vector_distance.h │ │ ├── mbl_wt_histogram.cxx │ │ ├── mbl_wt_histogram.h │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_ar_process.cxx │ │ │ ├── test_clamped_plate_spline_2d.cxx │ │ │ ├── test_cloneable_ptr.cxx │ │ │ ├── test_cloneables_factory.cxx │ │ │ ├── test_cluster_tree.cxx │ │ │ ├── test_clusters.cxx │ │ │ ├── test_combination.cxx │ │ │ ├── test_correspond_points.cxx │ │ │ ├── test_data_wrapper_mixer.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_dyn_prog.cxx │ │ │ ├── test_exception.cxx │ │ │ ├── test_file_data_wrapper.cxx │ │ │ ├── test_gamma.cxx │ │ │ ├── test_gram_schmidt.cxx │ │ │ ├── test_histogram.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_index_sort.cxx │ │ │ ├── test_jarque_bera.cxx │ │ │ ├── test_k_means.cxx │ │ │ ├── test_lda.cxx │ │ │ ├── test_linear_interpolator.cxx │ │ │ ├── test_log.cxx │ │ │ ├── test_lru_cache.cxx │ │ │ ├── test_mask.cxx │ │ │ ├── test_matrix_products.cxx │ │ │ ├── test_matxvec.cxx │ │ │ ├── test_parse_block.cxx │ │ │ ├── test_parse_colon_pairs_list.cxx │ │ │ ├── test_parse_int_list.cxx │ │ │ ├── test_parse_sequence.cxx │ │ │ ├── test_parse_tuple.cxx │ │ │ ├── test_priority_bounded_queue.cxx │ │ │ ├── test_progress.cxx │ │ │ ├── test_random_n_from_m.cxx │ │ │ ├── test_rbf_network.cxx │ │ │ ├── test_read_multi_props.cxx │ │ │ ├── test_read_props.cxx │ │ │ ├── test_rvm_regression_builder.cxx │ │ │ ├── test_sample_stats_1d.cxx │ │ │ ├── test_select_n_from_m.cxx │ │ │ ├── test_selected_data_wrapper.cxx │ │ │ ├── test_stats_1d.cxx │ │ │ ├── test_stats_nd.cxx │ │ │ ├── test_stepwise_regression.cxx │ │ │ ├── test_stl.cxx │ │ │ ├── test_stochastic_data_collector.cxx │ │ │ ├── test_sum_1d.cxx │ │ │ ├── test_table.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_test.cxx │ │ │ ├── test_text_file.cxx │ │ │ ├── test_thin_plate_spline_2d.cxx │ │ │ ├── test_thin_plate_spline_3d.cxx │ │ │ └── test_thin_plate_spline_weights_3d.cxx │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── mbl_apply_mask_to_file.cxx │ │ │ ├── mbl_convert_indices_to_mask.cxx │ │ │ ├── mbl_convert_mask_to_indices.cxx │ │ │ ├── mbl_mask_logic.cxx │ │ │ ├── mbl_mask_on_mask.cxx │ │ │ ├── mbl_masked_file_merge.cxx │ │ │ ├── print_log_properties.cxx │ │ │ └── sample_stats.cxx │ ├── mcal │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── mbl_cloneables_factory+mcal_component_analyzer-.cxx │ │ │ ├── mbl_cloneables_factory+mcal_single_basis_cost-.cxx │ │ │ ├── vsl_binary_loader+mcal_component_analyzer-.cxx │ │ │ └── vsl_binary_loader+mcal_single_basis_cost-.cxx │ │ ├── introduction_doxy.txt │ │ ├── mcal_add_all_loaders.cxx │ │ ├── mcal_add_all_loaders.h │ │ ├── mcal_component_analyzer.cxx │ │ ├── mcal_component_analyzer.h │ │ ├── mcal_extract_mode.cxx │ │ ├── mcal_extract_mode.h │ │ ├── mcal_general_ca.cxx │ │ ├── mcal_general_ca.h │ │ ├── mcal_pca.cxx │ │ ├── mcal_pca.h │ │ ├── mcal_single_basis_cost.cxx │ │ ├── mcal_single_basis_cost.h │ │ ├── mcal_sparse_basis_cost.cxx │ │ ├── mcal_sparse_basis_cost.h │ │ ├── mcal_trivial_ca.cxx │ │ ├── mcal_trivial_ca.h │ │ ├── mcal_var_basis_cost.cxx │ │ ├── mcal_var_basis_cost.h │ │ ├── notes.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_general_ca.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_pca.cxx │ │ │ └── test_trivial_ca.cxx │ ├── mfpf │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── mbl_cloneables_factory+mfpf_point_finder-.cxx │ │ │ ├── mbl_cloneables_factory+mfpf_point_finder_builder-.cxx │ │ │ ├── mbl_cloneables_factory+mfpf_region_definer-.cxx │ │ │ ├── mbl_cloneables_factory+mfpf_vec_cost_builder-.cxx │ │ │ ├── vsl_binary_loader+mfpf_point_finder-.cxx │ │ │ ├── vsl_binary_loader+mfpf_point_finder_builder-.cxx │ │ │ ├── vsl_binary_loader+mfpf_region_definer-.cxx │ │ │ ├── vsl_binary_loader+mfpf_vec_cost-.cxx │ │ │ └── vsl_binary_loader+mfpf_vec_cost_builder-.cxx │ │ ├── introduction_doxy.txt │ │ ├── mfpf_add_all_loaders.cxx │ │ ├── mfpf_add_all_loaders.h │ │ ├── mfpf_dp_snake.cxx │ │ ├── mfpf_dp_snake.h │ │ ├── mfpf_draw_matches.cxx │ │ ├── mfpf_draw_matches.h │ │ ├── mfpf_draw_pose_cross.cxx │ │ ├── mfpf_draw_pose_cross.h │ │ ├── mfpf_draw_pose_lines.cxx │ │ ├── mfpf_draw_pose_lines.h │ │ ├── mfpf_edge_finder.cxx │ │ ├── mfpf_edge_finder.h │ │ ├── mfpf_edge_finder_builder.cxx │ │ ├── mfpf_edge_finder_builder.h │ │ ├── mfpf_feature_vec.h │ │ ├── mfpf_grad_corr2d.cxx │ │ ├── mfpf_grad_corr2d.h │ │ ├── mfpf_grad_corr2d_builder.cxx │ │ ├── mfpf_grad_corr2d_builder.h │ │ ├── mfpf_hog_box_finder.cxx │ │ ├── mfpf_hog_box_finder.h │ │ ├── mfpf_hog_box_finder_builder.cxx │ │ ├── mfpf_hog_box_finder_builder.h │ │ ├── mfpf_lin_clsfy_finder_builder.cxx │ │ ├── mfpf_lin_clsfy_finder_builder.h │ │ ├── mfpf_log_lin_class_cost.cxx │ │ ├── mfpf_log_lin_class_cost.h │ │ ├── mfpf_max_finder.cxx │ │ ├── mfpf_max_finder.h │ │ ├── mfpf_mr_point_finder.cxx │ │ ├── mfpf_mr_point_finder.h │ │ ├── mfpf_mr_point_finder_builder.cxx │ │ ├── mfpf_mr_point_finder_builder.h │ │ ├── mfpf_norm_corr1d.cxx │ │ ├── mfpf_norm_corr1d.h │ │ ├── mfpf_norm_corr1d_builder.cxx │ │ ├── mfpf_norm_corr1d_builder.h │ │ ├── mfpf_norm_corr2d.cxx │ │ ├── mfpf_norm_corr2d.h │ │ ├── mfpf_norm_corr2d_builder.cxx │ │ ├── mfpf_norm_corr2d_builder.h │ │ ├── mfpf_norm_vec.h │ │ ├── mfpf_notes.txt │ │ ├── mfpf_patch_data.cxx │ │ ├── mfpf_patch_data.h │ │ ├── mfpf_point_finder.cxx │ │ ├── mfpf_point_finder.h │ │ ├── mfpf_point_finder_builder.cxx │ │ ├── mfpf_point_finder_builder.h │ │ ├── mfpf_pose.h │ │ ├── mfpf_pose_predictor.cxx │ │ ├── mfpf_pose_predictor.h │ │ ├── mfpf_pose_predictor_builder.cxx │ │ ├── mfpf_pose_predictor_builder.h │ │ ├── mfpf_pose_set.h │ │ ├── mfpf_profile_pdf.cxx │ │ ├── mfpf_profile_pdf.h │ │ ├── mfpf_profile_pdf_builder.cxx │ │ ├── mfpf_profile_pdf_builder.h │ │ ├── mfpf_prune_overlaps.cxx │ │ ├── mfpf_prune_overlaps.h │ │ ├── mfpf_region_about_lineseg.cxx │ │ ├── mfpf_region_about_lineseg.h │ │ ├── mfpf_region_about_pt.cxx │ │ ├── mfpf_region_about_pt.h │ │ ├── mfpf_region_definer.cxx │ │ ├── mfpf_region_definer.h │ │ ├── mfpf_region_finder.cxx │ │ ├── mfpf_region_finder.h │ │ ├── mfpf_region_finder_builder.cxx │ │ ├── mfpf_region_finder_builder.h │ │ ├── mfpf_region_form.h │ │ ├── mfpf_region_pdf.cxx │ │ ├── mfpf_region_pdf.h │ │ ├── mfpf_region_pdf_builder.cxx │ │ ├── mfpf_region_pdf_builder.h │ │ ├── mfpf_sad_vec_cost.cxx │ │ ├── mfpf_sad_vec_cost.h │ │ ├── mfpf_sad_vec_cost_builder.cxx │ │ ├── mfpf_sad_vec_cost_builder.h │ │ ├── mfpf_sample_region.h │ │ ├── mfpf_searcher.cxx │ │ ├── mfpf_searcher.h │ │ ├── mfpf_sort_matches.cxx │ │ ├── mfpf_sort_matches.h │ │ ├── mfpf_ssd_vec_cost.cxx │ │ ├── mfpf_ssd_vec_cost.h │ │ ├── mfpf_ssd_vec_cost_builder.cxx │ │ ├── mfpf_ssd_vec_cost_builder.h │ │ ├── mfpf_vec_cost.cxx │ │ ├── mfpf_vec_cost.h │ │ ├── mfpf_vec_cost_builder.cxx │ │ ├── mfpf_vec_cost_builder.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_dp_snake.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_edge_finder.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_mr_point_finder.cxx │ │ │ ├── test_norm_corr1d.cxx │ │ │ ├── test_norm_corr2d.cxx │ │ │ ├── test_patch_data.cxx │ │ │ ├── test_pose.cxx │ │ │ ├── test_pose_predictor.cxx │ │ │ ├── test_profile_pdf.cxx │ │ │ ├── test_region_finder.cxx │ │ │ └── test_region_pdf.cxx │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── mfpf_build_finder.cxx │ │ │ └── mfpf_test_finder.cxx │ ├── mipa │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── mbl_cloneables_factory+mipa_vector_normaliser-.cxx │ │ │ ├── mipa_orientation_histogram+byte.float-.cxx │ │ │ ├── mipa_orientation_histogram+float.float-.cxx │ │ │ ├── mipa_sample_histo_boxes+float.double-.cxx │ │ │ └── vsl_binary_loader+mipa_vector_normaliser-.cxx │ │ ├── introduction_doxy.txt │ │ ├── mipa_add_all_loaders.cxx │ │ ├── mipa_add_all_loaders.h │ │ ├── mipa_block_normaliser.cxx │ │ ├── mipa_block_normaliser.h │ │ ├── mipa_identity_normaliser.cxx │ │ ├── mipa_identity_normaliser.h │ │ ├── mipa_l2norm_vector_normaliser.cxx │ │ ├── mipa_l2norm_vector_normaliser.h │ │ ├── mipa_ms_block_normaliser.cxx │ │ ├── mipa_ms_block_normaliser.h │ │ ├── mipa_orientation_histogram.h │ │ ├── mipa_orientation_histogram.hxx │ │ ├── mipa_sample_histo_boxes.h │ │ ├── mipa_sample_histo_boxes.hxx │ │ ├── mipa_vector_normaliser.cxx │ │ ├── mipa_vector_normaliser.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_sample_histo_boxes.cxx │ │ │ ├── test_template_include.cxx │ │ │ └── test_vector_normalisers.cxx │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ └── mipa_orient_histo.cxx │ ├── mmn │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── mbl_cloneables_factory+mmn_solver-.cxx │ │ │ └── vsl_binary_loader+mmn_solver-.cxx │ │ ├── introduction_doxy.txt │ │ ├── mmn_add_all_loaders.cxx │ │ ├── mmn_add_all_loaders.h │ │ ├── mmn_analyze_graph.cxx │ │ ├── mmn_analyze_graph.h │ │ ├── mmn_arc.h │ │ ├── mmn_csp_solver.cxx │ │ ├── mmn_csp_solver.h │ │ ├── mmn_dependancy.h │ │ ├── mmn_diffusion_solver.cxx │ │ ├── mmn_diffusion_solver.h │ │ ├── mmn_dp_solver.cxx │ │ ├── mmn_dp_solver.h │ │ ├── mmn_graph_rep1.cxx │ │ ├── mmn_graph_rep1.h │ │ ├── mmn_lbp_solver.cxx │ │ ├── mmn_lbp_solver.h │ │ ├── mmn_make_tri_tree.cxx │ │ ├── mmn_make_tri_tree.h │ │ ├── mmn_order_cost.cxx │ │ ├── mmn_order_cost.h │ │ ├── mmn_parse_arcs.cxx │ │ ├── mmn_parse_arcs.h │ │ ├── mmn_solve.h │ │ ├── mmn_solver.cxx │ │ ├── mmn_solver.h │ │ ├── mmn_triplet.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_csp_solver.cxx │ │ │ ├── test_diffusion_solver.cxx │ │ │ ├── test_dp_solver.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_graph_rep1.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_lbp_solver.cxx │ │ │ ├── test_make_tri_tree.cxx │ │ │ ├── test_order_cost.cxx │ │ │ └── test_parse_arcs.cxx │ ├── msdi │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ ├── msdi_array_of_marked_images.cxx │ │ ├── msdi_array_of_marked_images.h │ │ ├── msdi_marked_images.h │ │ ├── msdi_marked_images_from_files.cxx │ │ ├── msdi_marked_images_from_files.h │ │ ├── msdi_points_subset.cxx │ │ ├── msdi_points_subset.h │ │ ├── msdi_reflected_marked_images.cxx │ │ ├── msdi_reflected_marked_images.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_reflected_marked_images.cxx │ ├── msm │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── mbl_cloneables_factory+msm_aligner-.cxx │ │ │ ├── mbl_cloneables_factory+msm_param_limiter-.cxx │ │ │ ├── vsl_binary_loader+msm_aligner-.cxx │ │ │ └── vsl_binary_loader+msm_param_limiter-.cxx │ │ ├── introduction_doxy.txt │ │ ├── msm_add_all_loaders.cxx │ │ ├── msm_add_all_loaders.h │ │ ├── msm_aligner.cxx │ │ ├── msm_aligner.h │ │ ├── msm_box_limiter.cxx │ │ ├── msm_box_limiter.h │ │ ├── msm_cubic_bezier.cxx │ │ ├── msm_cubic_bezier.h │ │ ├── msm_curve.cxx │ │ ├── msm_curve.h │ │ ├── msm_ellipsoid_limiter.cxx │ │ ├── msm_ellipsoid_limiter.h │ │ ├── msm_no_limiter.cxx │ │ ├── msm_no_limiter.h │ │ ├── msm_notes.txt │ │ ├── msm_param_limiter.cxx │ │ ├── msm_param_limiter.h │ │ ├── msm_points.cxx │ │ ├── msm_points.h │ │ ├── msm_pose_maker.cxx │ │ ├── msm_pose_maker.h │ │ ├── msm_ref_shape_instance.cxx │ │ ├── msm_ref_shape_instance.h │ │ ├── msm_ref_shape_model.cxx │ │ ├── msm_ref_shape_model.h │ │ ├── msm_reflect_shape.cxx │ │ ├── msm_reflect_shape.h │ │ ├── msm_rigid_aligner.cxx │ │ ├── msm_rigid_aligner.h │ │ ├── msm_shape_instance.cxx │ │ ├── msm_shape_instance.h │ │ ├── msm_shape_model.cxx │ │ ├── msm_shape_model.h │ │ ├── msm_shape_model_builder.cxx │ │ ├── msm_shape_model_builder.h │ │ ├── msm_shape_perturber.cxx │ │ ├── msm_shape_perturber.h │ │ ├── msm_similarity_aligner.cxx │ │ ├── msm_similarity_aligner.h │ │ ├── msm_translation_aligner.cxx │ │ ├── msm_translation_aligner.h │ │ ├── msm_wt_mat_2d.cxx │ │ ├── msm_wt_mat_2d.h │ │ ├── msm_zoom_aligner.cxx │ │ ├── msm_zoom_aligner.h │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_aligners.cxx │ │ │ ├── test_cubic_bezier.cxx │ │ │ ├── test_curves.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_param_limiters.cxx │ │ │ ├── test_points.cxx │ │ │ ├── test_shape_model.cxx │ │ │ └── test_wt_mat_2d.cxx │ │ ├── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── msm_add_dir_to_names.cxx │ │ │ ├── msm_apply_tps_warp.cxx │ │ │ ├── msm_build_shape_model.cxx │ │ │ ├── msm_concat_points.cxx │ │ │ ├── msm_draw_points_on_image.cxx │ │ │ ├── msm_draw_shape_modes.cxx │ │ │ ├── msm_estimate_residuals.cxx │ │ │ ├── msm_get_bounds.cxx │ │ │ ├── msm_get_shape_params.cxx │ │ │ ├── msm_images_from_list.cxx │ │ │ ├── msm_plot_aligned_shapes.cxx │ │ │ ├── msm_points_subset.cxx │ │ │ ├── msm_reset_shape_modes.cxx │ │ │ ├── msm_select_large_shapes.cxx │ │ │ └── msm_test_bezier.cxx │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── msm_closest_pt.h │ │ │ ├── msm_dist_to_curves.h │ │ │ ├── msm_draw_shape_to_eps.cxx │ │ │ ├── msm_draw_shape_to_eps.h │ │ │ ├── msm_shape_mode_view.cxx │ │ │ ├── msm_shape_mode_view.h │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_dist_to_curves.cxx │ │ │ ├── test_driver.cxx │ │ │ └── test_include.cxx │ ├── mvl2 │ │ ├── CMakeLists.txt │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── copy_image.cxx │ │ │ └── mvl2_to_divx.cxx │ │ ├── introduction_doxy.txt │ │ ├── mvl2_image_format_plugin.cxx │ │ ├── mvl2_image_format_plugin.h │ │ ├── mvl2_video_from_avi.h │ │ ├── mvl2_video_from_avi_linux.cxx │ │ ├── mvl2_video_from_avi_linux.h │ │ ├── mvl2_video_from_avi_windows.cxx │ │ ├── mvl2_video_from_avi_windows.h │ │ ├── mvl2_video_from_sequence.cxx │ │ ├── mvl2_video_from_sequence.h │ │ ├── mvl2_video_reader.cxx │ │ ├── mvl2_video_reader.h │ │ ├── mvl2_video_to_avi.h │ │ ├── mvl2_video_to_avi_linux.cxx │ │ ├── mvl2_video_to_avi_linux.h │ │ ├── mvl2_video_to_avi_windows.cxx │ │ ├── mvl2_video_to_avi_windows.h │ │ ├── mvl2_video_writer.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── pdf1d │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vsl_binary_loader+pdf1d_builder-.cxx │ │ │ ├── vsl_binary_loader+pdf1d_pdf-.cxx │ │ │ ├── vsl_vector_io+pdf1d_builder~-.cxx │ │ │ ├── vsl_vector_io+pdf1d_pdf~-.cxx │ │ │ └── vsl_vector_io+pdf1d_weighted_epanech_kernel_pdf-.cxx │ │ ├── introduction_doxy.txt │ │ ├── pdf1d_add_all_loaders.cxx │ │ ├── pdf1d_all.h │ │ ├── pdf1d_bhat_overlap.cxx │ │ ├── pdf1d_bhat_overlap.h │ │ ├── pdf1d_builder.cxx │ │ ├── pdf1d_builder.h │ │ ├── pdf1d_calc_mean_var.cxx │ │ ├── pdf1d_calc_mean_var.h │ │ ├── pdf1d_compare_samples.cxx │ │ ├── pdf1d_compare_samples.h │ │ ├── pdf1d_compare_to_pdf.cxx │ │ ├── pdf1d_compare_to_pdf.h │ │ ├── pdf1d_compare_to_pdf_bhat.cxx │ │ ├── pdf1d_compare_to_pdf_bhat.h │ │ ├── pdf1d_compare_to_pdf_ks.cxx │ │ ├── pdf1d_compare_to_pdf_ks.h │ │ ├── pdf1d_epanech_kernel_pdf.cxx │ │ ├── pdf1d_epanech_kernel_pdf.h │ │ ├── pdf1d_epanech_kernel_pdf_builder.cxx │ │ ├── pdf1d_epanech_kernel_pdf_builder.h │ │ ├── pdf1d_epanech_kernel_pdf_sampler.cxx │ │ ├── pdf1d_epanech_kernel_pdf_sampler.h │ │ ├── pdf1d_exponential.cxx │ │ ├── pdf1d_exponential.h │ │ ├── pdf1d_exponential_builder.cxx │ │ ├── pdf1d_exponential_builder.h │ │ ├── pdf1d_exponential_sampler.cxx │ │ ├── pdf1d_exponential_sampler.h │ │ ├── pdf1d_flat.cxx │ │ ├── pdf1d_flat.h │ │ ├── pdf1d_flat_builder.cxx │ │ ├── pdf1d_flat_builder.h │ │ ├── pdf1d_flat_sampler.cxx │ │ ├── pdf1d_flat_sampler.h │ │ ├── pdf1d_gaussian.cxx │ │ ├── pdf1d_gaussian.h │ │ ├── pdf1d_gaussian_builder.cxx │ │ ├── pdf1d_gaussian_builder.h │ │ ├── pdf1d_gaussian_kernel_pdf.cxx │ │ ├── pdf1d_gaussian_kernel_pdf.h │ │ ├── pdf1d_gaussian_kernel_pdf_builder.cxx │ │ ├── pdf1d_gaussian_kernel_pdf_builder.h │ │ ├── pdf1d_gaussian_kernel_pdf_sampler.cxx │ │ ├── pdf1d_gaussian_kernel_pdf_sampler.h │ │ ├── pdf1d_gaussian_sampler.cxx │ │ ├── pdf1d_gaussian_sampler.h │ │ ├── pdf1d_kernel_pdf.cxx │ │ ├── pdf1d_kernel_pdf.h │ │ ├── pdf1d_kernel_pdf_builder.cxx │ │ ├── pdf1d_kernel_pdf_builder.h │ │ ├── pdf1d_mixture.cxx │ │ ├── pdf1d_mixture.h │ │ ├── pdf1d_mixture_builder.cxx │ │ ├── pdf1d_mixture_builder.h │ │ ├── pdf1d_mixture_sampler.cxx │ │ ├── pdf1d_mixture_sampler.h │ │ ├── pdf1d_pdf.cxx │ │ ├── pdf1d_pdf.h │ │ ├── pdf1d_prob_chi2.cxx │ │ ├── pdf1d_prob_chi2.h │ │ ├── pdf1d_prob_ks.cxx │ │ ├── pdf1d_prob_ks.h │ │ ├── pdf1d_resample.cxx │ │ ├── pdf1d_resample.h │ │ ├── pdf1d_sampler.cxx │ │ ├── pdf1d_sampler.h │ │ ├── pdf1d_select_pdf.cxx │ │ ├── pdf1d_select_pdf.h │ │ ├── pdf1d_weighted_epanech_kernel_pdf.cxx │ │ ├── pdf1d_weighted_epanech_kernel_pdf.h │ │ ├── pdf1d_weighted_epanech_kernel_sampler.cxx │ │ ├── pdf1d_weighted_epanech_kernel_sampler.h │ │ ├── pdf1d_weighted_kernel_pdf.cxx │ │ ├── pdf1d_weighted_kernel_pdf.h │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_compare_to_pdf_ks.cxx │ │ │ ├── test_exponential.cxx │ │ │ ├── test_gaussian.cxx │ │ │ ├── test_gaussian_kernel_pdf.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_mixture.cxx │ │ │ ├── test_pdf1d.cxx │ │ │ └── test_weighted_epanech_kernel_pdf.cxx │ │ └── tools │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── compare_kernel_estimates.cxx │ │ │ ├── plot_pdf_estimate.cxx │ │ │ ├── select_n_mixtures.cxx │ │ │ ├── select_pdf.cxx │ │ │ └── test_overlap_pdf.cxx │ ├── readme.txt │ ├── tools │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── concat_3d_images.cxx │ │ ├── convert_rotation_3d.cxx │ │ ├── crop_image_2d.cxx │ │ ├── crop_image_3d.cxx │ │ ├── image3d_math.cxx │ │ ├── image3d_split.cxx │ │ ├── index_sort.cxx │ │ ├── introduction_doxy.txt │ │ ├── multiplane_image.cxx │ │ ├── print_image.cxx │ │ ├── reflect_image_2d.cxx │ │ ├── reflect_image_3d.cxx │ │ ├── rewrite_vsl_strings.cxx │ │ ├── select_lines.cxx │ │ └── tile_images_2d.cxx │ ├── vil3d │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vil3d_copy+bool-.cxx │ │ │ ├── vil3d_copy+byte-.cxx │ │ │ ├── vil3d_copy+double-.cxx │ │ │ ├── vil3d_copy+float-.cxx │ │ │ ├── vil3d_copy+int_16-.cxx │ │ │ ├── vil3d_copy+int_32-.cxx │ │ │ ├── vil3d_copy+sbyte-.cxx │ │ │ ├── vil3d_copy+uint_16-.cxx │ │ │ ├── vil3d_copy+uint_32-.cxx │ │ │ ├── vil3d_image_view+bool-.cxx │ │ │ ├── vil3d_image_view+byte-.cxx │ │ │ ├── vil3d_image_view+double-.cxx │ │ │ ├── vil3d_image_view+float-.cxx │ │ │ ├── vil3d_image_view+int_16-.cxx │ │ │ ├── vil3d_image_view+int_32-.cxx │ │ │ ├── vil3d_image_view+sbyte-.cxx │ │ │ ├── vil3d_image_view+uint_16-.cxx │ │ │ ├── vil3d_image_view+uint_32-.cxx │ │ │ ├── vil3d_image_view+vil_rgb+float--.cxx │ │ │ ├── vil3d_resample_simple+bool-.cxx │ │ │ ├── vil3d_resample_simple+int-.cxx │ │ │ ├── vil3d_resample_tricubic+float.float-.cxx │ │ │ ├── vil3d_resample_tricubic+uint_32.uint_32-.cxx │ │ │ ├── vil3d_resample_trilinear+double.double-.cxx │ │ │ ├── vil3d_resample_trilinear+float.float-.cxx │ │ │ ├── vil3d_resample_trilinear+int.int-.cxx │ │ │ ├── vil3d_resample_trilinear+uint_16.uint_16-.cxx │ │ │ ├── vil3d_sample_profile_trilin+byte.double-.cxx │ │ │ ├── vil3d_sample_profile_trilin+double.double-.cxx │ │ │ ├── vil3d_sample_profile_trilin+float.double-.cxx │ │ │ ├── vil3d_sample_profile_trilin+int.double-.cxx │ │ │ ├── vil3d_tricub_interp+float-.cxx │ │ │ ├── vil3d_tricub_interp+int_32-.cxx │ │ │ ├── vil3d_tricub_interp+uint_16-.cxx │ │ │ ├── vil3d_tricub_interp+uint_32-.cxx │ │ │ ├── vil_smart_ptr+vil3d_image_resource-.cxx │ │ │ └── vil_smart_ptr+vil3d_image_view_base-.cxx │ │ ├── algo │ │ │ ├── CMakeLists.txt │ │ │ ├── Templates │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── vil3d_abs_shuffle_distance+float.float-.cxx │ │ │ │ ├── vil3d_abs_shuffle_distance+int.int-.cxx │ │ │ │ ├── vil3d_abs_shuffle_distance+int_16.int_16-.cxx │ │ │ │ ├── vil3d_corners+byte.float-.cxx │ │ │ │ ├── vil3d_corners+float.float-.cxx │ │ │ │ ├── vil3d_corners+int_16.float-.cxx │ │ │ │ ├── vil3d_gauss_reduce+byte-.cxx │ │ │ │ ├── vil3d_gauss_reduce+double-.cxx │ │ │ │ ├── vil3d_gauss_reduce+float-.cxx │ │ │ │ ├── vil3d_gauss_reduce+int-.cxx │ │ │ │ ├── vil3d_gauss_reduce+int_16-.cxx │ │ │ │ ├── vil3d_grad_1x3+byte.float-.cxx │ │ │ │ ├── vil3d_grad_1x3+float.float-.cxx │ │ │ │ ├── vil3d_grad_1x3+int_32.float-.cxx │ │ │ │ ├── vil3d_suppress_non_max_edges+float-.cxx │ │ │ │ ├── vil3d_threshold+byte-.cxx │ │ │ │ ├── vil3d_threshold+float-.cxx │ │ │ │ ├── vil3d_threshold+int-.cxx │ │ │ │ └── vil3d_world_gradients+float.float-.cxx │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_include.cxx │ │ │ │ └── test_template_include.cxx │ │ │ ├── vil3d_abs_shuffle_distance.h │ │ │ ├── vil3d_abs_shuffle_distance.hxx │ │ │ ├── vil3d_anisotropic_filter.h │ │ │ ├── vil3d_binary_closing.h │ │ │ ├── vil3d_binary_dilate.cxx │ │ │ ├── vil3d_binary_dilate.h │ │ │ ├── vil3d_binary_erode.cxx │ │ │ ├── vil3d_binary_erode.h │ │ │ ├── vil3d_binary_opening.h │ │ │ ├── vil3d_convolve_1d.h │ │ │ ├── vil3d_corners.h │ │ │ ├── vil3d_corners.hxx │ │ │ ├── vil3d_distance_transform.cxx │ │ │ ├── vil3d_distance_transform.h │ │ │ ├── vil3d_erode.h │ │ │ ├── vil3d_exp_distance_transform.h │ │ │ ├── vil3d_exp_filter.h │ │ │ ├── vil3d_fill_border.h │ │ │ ├── vil3d_fill_boundary.cxx │ │ │ ├── vil3d_fill_boundary.h │ │ │ ├── vil3d_find_blobs.cxx │ │ │ ├── vil3d_find_blobs.h │ │ │ ├── vil3d_find_peaks.h │ │ │ ├── vil3d_gauss_reduce.h │ │ │ ├── vil3d_gauss_reduce.hxx │ │ │ ├── vil3d_grad_1x3.cxx │ │ │ ├── vil3d_grad_1x3.h │ │ │ ├── vil3d_grad_1x3.hxx │ │ │ ├── vil3d_grad_3x3x3.h │ │ │ ├── vil3d_histogram.cxx │ │ │ ├── vil3d_histogram.h │ │ │ ├── vil3d_histogram_equalise.cxx │ │ │ ├── vil3d_histogram_equalise.h │ │ │ ├── vil3d_locally_z_normalise.h │ │ │ ├── vil3d_make_distance_filter.cxx │ │ │ ├── vil3d_make_distance_filter.h │ │ │ ├── vil3d_make_edt_filter.cxx │ │ │ ├── vil3d_make_edt_filter.h │ │ │ ├── vil3d_max_product_filter.h │ │ │ ├── vil3d_normalised_correlation_3d.h │ │ │ ├── vil3d_overlap.cxx │ │ │ ├── vil3d_overlap.h │ │ │ ├── vil3d_quad_distance_function.h │ │ │ ├── vil3d_rank_filter.h │ │ │ ├── vil3d_smooth_121.h │ │ │ ├── vil3d_structuring_element.cxx │ │ │ ├── vil3d_structuring_element.h │ │ │ ├── vil3d_suppress_non_max_edges.h │ │ │ ├── vil3d_suppress_non_max_edges.hxx │ │ │ ├── vil3d_threshold.h │ │ │ ├── vil3d_threshold.hxx │ │ │ ├── vil3d_world_gradients.h │ │ │ └── vil3d_world_gradients.hxx │ │ ├── file_formats │ │ │ ├── vil3d_analyze_format.cxx │ │ │ ├── vil3d_analyze_format.h │ │ │ ├── vil3d_dicom.cxx │ │ │ ├── vil3d_dicom.h │ │ │ ├── vil3d_gen_synthetic.cxx │ │ │ ├── vil3d_gen_synthetic.h │ │ │ ├── vil3d_gipl_format.cxx │ │ │ ├── vil3d_gipl_format.h │ │ │ ├── vil3d_meta_image_format.cxx │ │ │ ├── vil3d_meta_image_format.h │ │ │ ├── vil3d_slice_list.cxx │ │ │ └── vil3d_slice_list.h │ │ ├── introduction_doxy.txt │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── tests │ │ │ │ ├── .NoDartCoverage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_driver.cxx │ │ │ │ ├── test_image_view_io.cxx │ │ │ │ └── test_include.cxx │ │ │ ├── vil3d_io_dummy.cxx │ │ │ └── vil3d_io_image_view.h │ │ ├── notes.html │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── file_read_data │ │ │ │ ├── analyze │ │ │ │ │ ├── ff_byte.hdr │ │ │ │ │ ├── ff_byte.img │ │ │ │ │ ├── ff_byte_le.hdr │ │ │ │ │ ├── ff_byte_le.img │ │ │ │ │ ├── ff_float32.hdr │ │ │ │ │ ├── ff_float32.img │ │ │ │ │ ├── ff_float32_le.hdr │ │ │ │ │ ├── ff_float32_le.img │ │ │ │ │ ├── ff_int16.hdr │ │ │ │ │ ├── ff_int16.img │ │ │ │ │ ├── ff_int16_le.hdr │ │ │ │ │ ├── ff_int16_le.img │ │ │ │ │ ├── ff_int32.hdr │ │ │ │ │ ├── ff_int32.img │ │ │ │ │ ├── ff_int32_le.hdr │ │ │ │ │ └── ff_int32_le.img │ │ │ │ ├── ff_3planes8bit_true.txt │ │ │ │ ├── ff_grey16bit_true.txt │ │ │ │ ├── ff_grey16bit_uncompressed_0001.dcm │ │ │ │ ├── ff_grey16bit_uncompressed_0002.dcm │ │ │ │ ├── ff_grey16bit_uncompressed_0003.dcm │ │ │ │ ├── ff_grey16bit_uncompressed_0004.dcm │ │ │ │ ├── ff_grey16bit_uncompressed_0005.dcm │ │ │ │ ├── ff_grey16bit_uncompressed_0006.dcm │ │ │ │ ├── ff_grey_cross.gipl │ │ │ │ ├── ff_grey_cross16bit_true.txt │ │ │ │ ├── ff_rgb8bit_ascii.1.ppm │ │ │ │ ├── ff_rgb8bit_ascii.2.ppm │ │ │ │ └── gipl.readme.txt │ │ │ ├── test_algo_abs_shuffle_distance.cxx │ │ │ ├── test_algo_anisotropic_filter.cxx │ │ │ ├── test_algo_binary_dilate.cxx │ │ │ ├── test_algo_binary_erode.cxx │ │ │ ├── test_algo_convolve_1d.cxx │ │ │ ├── test_algo_corners.cxx │ │ │ ├── test_algo_distance_transform.cxx │ │ │ ├── test_algo_erode.cxx │ │ │ ├── test_algo_exp_distance_transform.cxx │ │ │ ├── test_algo_exp_filter.cxx │ │ │ ├── test_algo_find_blobs.cxx │ │ │ ├── test_algo_gauss_reduce.cxx │ │ │ ├── test_algo_grad_1x3.cxx │ │ │ ├── test_algo_histogram.cxx │ │ │ ├── test_algo_histogram_equalise.cxx │ │ │ ├── test_algo_make_distance_filter.cxx │ │ │ ├── test_algo_normalised_correlation_3d.cxx │ │ │ ├── test_algo_quad_distance_function.cxx │ │ │ ├── test_algo_smooth_121.cxx │ │ │ ├── test_algo_structuring_element.cxx │ │ │ ├── test_algo_threshold.cxx │ │ │ ├── test_analyze_format.cxx │ │ │ ├── test_convert.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_file_format_read.cxx │ │ │ ├── test_from_image_2d.cxx │ │ │ ├── test_gen_synthetic.cxx │ │ │ ├── test_image_resource.cxx │ │ │ ├── test_image_view.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_math.cxx │ │ │ ├── test_reflect.cxx │ │ │ ├── test_resample.cxx │ │ │ ├── test_sample_profile_trilin.cxx │ │ │ ├── test_save_load_image.cxx │ │ │ ├── test_switch_axes.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_tricub_interp.cxx │ │ │ └── test_trilin_interp.cxx │ │ ├── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── vil3d_byte_image_histo.cxx │ │ │ └── vil3d_slice_image.cxx │ │ ├── vil3d_chord.h │ │ ├── vil3d_clamp.h │ │ ├── vil3d_convert.h │ │ ├── vil3d_copy.cxx │ │ ├── vil3d_copy.h │ │ ├── vil3d_copy.hxx │ │ ├── vil3d_crop.cxx │ │ ├── vil3d_crop.h │ │ ├── vil3d_decimate.h │ │ ├── vil3d_file_format.cxx │ │ ├── vil3d_file_format.h │ │ ├── vil3d_from_image_2d.h │ │ ├── vil3d_fwd.h │ │ ├── vil3d_image_resource.h │ │ ├── vil3d_image_view.h │ │ ├── vil3d_image_view.hxx │ │ ├── vil3d_image_view_base.h │ │ ├── vil3d_load.cxx │ │ ├── vil3d_load.h │ │ ├── vil3d_math.h │ │ ├── vil3d_memory_image.cxx │ │ ├── vil3d_memory_image.h │ │ ├── vil3d_new.cxx │ │ ├── vil3d_new.h │ │ ├── vil3d_plane.h │ │ ├── vil3d_print.h │ │ ├── vil3d_property.h │ │ ├── vil3d_reflect.h │ │ ├── vil3d_resample_simple.h │ │ ├── vil3d_resample_simple.hxx │ │ ├── vil3d_resample_tricubic.h │ │ ├── vil3d_resample_tricubic.hxx │ │ ├── vil3d_resample_trilinear.h │ │ ├── vil3d_resample_trilinear.hxx │ │ ├── vil3d_sample_profile_trilin.h │ │ ├── vil3d_sample_profile_trilin.hxx │ │ ├── vil3d_save.cxx │ │ ├── vil3d_save.h │ │ ├── vil3d_scan_image.h │ │ ├── vil3d_slice.h │ │ ├── vil3d_switch_axes.h │ │ ├── vil3d_transform.h │ │ ├── vil3d_tricub_interp.h │ │ ├── vil3d_tricub_interp.hxx │ │ └── vil3d_trilin_interp.h │ ├── vimt │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vimt_dog_pyramid_builder_2d+float-.cxx │ │ │ ├── vimt_gaussian_pyramid_builder_2d+byte-.cxx │ │ │ ├── vimt_gaussian_pyramid_builder_2d+float-.cxx │ │ │ ├── vimt_gaussian_pyramid_builder_2d+uint_16-.cxx │ │ │ ├── vimt_gaussian_pyramid_builder_2d_general+byte-.cxx │ │ │ ├── vimt_gaussian_pyramid_builder_2d_general+float-.cxx │ │ │ ├── vimt_image_2d_of+bool-.cxx │ │ │ ├── vimt_image_2d_of+byte-.cxx │ │ │ ├── vimt_image_2d_of+double-.cxx │ │ │ ├── vimt_image_2d_of+float-.cxx │ │ │ ├── vimt_image_2d_of+int-.cxx │ │ │ ├── vimt_image_2d_of+uint_16-.cxx │ │ │ ├── vimt_image_2d_of+vil_rgb+byte--.cxx │ │ │ ├── vimt_image_pyramid+vimt_image_2d_of+byte--.cxx │ │ │ ├── vimt_image_pyramid+vimt_image_2d_of+float--.cxx │ │ │ ├── vimt_sample_grid_bicub+byte.double-.cxx │ │ │ ├── vimt_sample_grid_bicub+double.double-.cxx │ │ │ ├── vimt_sample_grid_bicub+float.double-.cxx │ │ │ ├── vimt_sample_grid_bilin+byte.double-.cxx │ │ │ ├── vimt_sample_grid_bilin+byte.float-.cxx │ │ │ ├── vimt_sample_grid_bilin+double.double-.cxx │ │ │ ├── vimt_sample_grid_bilin+float.double-.cxx │ │ │ ├── vimt_sample_grid_bilin+float.float-.cxx │ │ │ ├── vimt_sample_grid_bilin+uint_16.double-.cxx │ │ │ ├── vimt_sample_grid_bilin+uint_16.float-.cxx │ │ │ ├── vimt_sample_profile_bilin+byte.double-.cxx │ │ │ ├── vimt_sample_profile_bilin+double.double-.cxx │ │ │ ├── vimt_sample_profile_bilin+float.double-.cxx │ │ │ ├── vimt_sample_profile_bilin+uint_16.double-.cxx │ │ │ ├── vimt_scale_pyramid_builder_2d+byte-.cxx │ │ │ ├── vimt_scale_pyramid_builder_2d+double-.cxx │ │ │ ├── vimt_scale_pyramid_builder_2d+float-.cxx │ │ │ ├── vsl_binary_loader+vimt_image-.cxx │ │ │ ├── vsl_binary_loader+vimt_image_pyramid_builder-.cxx │ │ │ ├── vsl_vector_io+vimt_image_2d_of+double--.cxx │ │ │ └── vsl_vector_io+vimt_image_2d_of+float--.cxx │ │ ├── algo │ │ │ ├── CMakeLists.txt │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── test_include.cxx │ │ │ ├── vimt_correlate_2d.h │ │ │ ├── vimt_dummy.cxx │ │ │ ├── vimt_find_peaks.h │ │ │ ├── vimt_find_troughs.h │ │ │ ├── vimt_normalised_correlation_2d.h │ │ │ └── vimt_pyramid_values_at_point.h │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── example1.cxx │ │ │ ├── example2.cxx │ │ │ ├── example3.cxx │ │ │ ├── example4.cxx │ │ │ ├── make_dog_pyramid.cxx │ │ │ └── rotate_image.cxx │ │ ├── introduction_doxy.txt │ │ ├── notes.html │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_correlate_2d.cxx │ │ │ ├── test_dog_pyramid_builder_2d.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_find_peaks.cxx │ │ │ ├── test_find_troughs.cxx │ │ │ ├── test_gaussian_pyramid_builder_2d.cxx │ │ │ ├── test_gaussian_pyramid_builder_2d_general.cxx │ │ │ ├── test_image_2d_of.cxx │ │ │ ├── test_image_bounds_and_centre_2d.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_reflect.cxx │ │ │ ├── test_resample_bilin.cxx │ │ │ ├── test_sample_grid_bilin.cxx │ │ │ ├── test_sample_profile_bilin.cxx │ │ │ ├── test_scale_pyramid_builder_2d.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_transform_2d.cxx │ │ │ └── test_v2i.cxx │ │ ├── vimt_add_all_binary_loaders.cxx │ │ ├── vimt_add_all_binary_loaders.h │ │ ├── vimt_bilin_interp.h │ │ ├── vimt_convert.h │ │ ├── vimt_crop.h │ │ ├── vimt_dog_pyramid_builder_2d.h │ │ ├── vimt_dog_pyramid_builder_2d.hxx │ │ ├── vimt_fwd.h │ │ ├── vimt_gaussian_pyramid_builder_2d.h │ │ ├── vimt_gaussian_pyramid_builder_2d.hxx │ │ ├── vimt_gaussian_pyramid_builder_2d_general.h │ │ ├── vimt_gaussian_pyramid_builder_2d_general.hxx │ │ ├── vimt_image.cxx │ │ ├── vimt_image.h │ │ ├── vimt_image_2d.cxx │ │ ├── vimt_image_2d.h │ │ ├── vimt_image_2d_of.h │ │ ├── vimt_image_2d_of.hxx │ │ ├── vimt_image_pyramid.cxx │ │ ├── vimt_image_pyramid.h │ │ ├── vimt_image_pyramid.hxx │ │ ├── vimt_image_pyramid_builder.cxx │ │ ├── vimt_image_pyramid_builder.h │ │ ├── vimt_load.cxx │ │ ├── vimt_load.h │ │ ├── vimt_reflect.h │ │ ├── vimt_resample_bilin.h │ │ ├── vimt_rotate.h │ │ ├── vimt_rotate90.h │ │ ├── vimt_sample_grid_bicub.h │ │ ├── vimt_sample_grid_bicub.hxx │ │ ├── vimt_sample_grid_bilin.h │ │ ├── vimt_sample_grid_bilin.hxx │ │ ├── vimt_sample_profile_bilin.h │ │ ├── vimt_sample_profile_bilin.hxx │ │ ├── vimt_save.cxx │ │ ├── vimt_save.h │ │ ├── vimt_scale_pyramid_builder_2d.h │ │ ├── vimt_scale_pyramid_builder_2d.hxx │ │ ├── vimt_transform_2d.cxx │ │ ├── vimt_transform_2d.h │ │ ├── vimt_transform_util_2d.cxx │ │ ├── vimt_transform_util_2d.h │ │ ├── vimt_vil_v2i.cxx │ │ └── vimt_vil_v2i.h │ ├── vimt3d │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vimt3d_gaussian_pyramid_builder_3d+byte-.cxx │ │ │ ├── vimt3d_gaussian_pyramid_builder_3d+double-.cxx │ │ │ ├── vimt3d_gaussian_pyramid_builder_3d+float-.cxx │ │ │ ├── vimt3d_gaussian_pyramid_builder_3d+int-.cxx │ │ │ ├── vimt3d_gaussian_pyramid_builder_3d+int_16-.cxx │ │ │ ├── vimt3d_image_3d_of+byte-.cxx │ │ │ ├── vimt3d_image_3d_of+double-.cxx │ │ │ ├── vimt3d_image_3d_of+float-.cxx │ │ │ ├── vimt3d_image_3d_of+int-.cxx │ │ │ ├── vimt3d_image_3d_of+int_16-.cxx │ │ │ ├── vimt3d_image_3d_of+uint-.cxx │ │ │ ├── vimt3d_reconstruct_from_grid+double.double-.cxx │ │ │ ├── vimt3d_reconstruct_from_grid+float.double-.cxx │ │ │ ├── vimt3d_reconstruct_from_grid+int.double-.cxx │ │ │ ├── vimt3d_reconstruct_from_grid+uchar.double-.cxx │ │ │ ├── vimt3d_sample_grid_trilin+float.double-.cxx │ │ │ ├── vimt3d_sample_grid_trilin+int.double-.cxx │ │ │ └── vimt3d_sample_grid_trilin+uchar.double-.cxx │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_crop.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_from_image_2d.cxx │ │ │ ├── test_gauss_reduce.cxx │ │ │ ├── test_image_3d_of.cxx │ │ │ ├── test_image_bounds_and_centre_3d.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_load.cxx │ │ │ ├── test_reflect.cxx │ │ │ ├── test_resample.cxx │ │ │ ├── test_sample_grid_trilin.cxx │ │ │ ├── test_save.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_transform_3d.cxx │ │ │ ├── test_v3i.cxx │ │ │ └── test_v3m.cxx │ │ ├── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── vimt3d_project_image.cxx │ │ │ └── vimt3d_stack_slices.cxx │ │ ├── vimt3d_add_all_loaders.cxx │ │ ├── vimt3d_add_all_loaders.h │ │ ├── vimt3d_crop.h │ │ ├── vimt3d_from_image_2d.h │ │ ├── vimt3d_fwd.h │ │ ├── vimt3d_gauss_reduce.h │ │ ├── vimt3d_gaussian_pyramid_builder_3d.h │ │ ├── vimt3d_gaussian_pyramid_builder_3d.hxx │ │ ├── vimt3d_image_3d.cxx │ │ ├── vimt3d_image_3d.h │ │ ├── vimt3d_image_3d_of.h │ │ ├── vimt3d_image_3d_of.hxx │ │ ├── vimt3d_load.cxx │ │ ├── vimt3d_load.h │ │ ├── vimt3d_reconstruct_from_grid.h │ │ ├── vimt3d_reconstruct_from_grid.hxx │ │ ├── vimt3d_reflect.h │ │ ├── vimt3d_resample_tricubic.h │ │ ├── vimt3d_resample_trilinear.h │ │ ├── vimt3d_sample_grid_trilin.h │ │ ├── vimt3d_sample_grid_trilin.hxx │ │ ├── vimt3d_sample_profile_trilin.h │ │ ├── vimt3d_sample_transformed_blob.h │ │ ├── vimt3d_save.cxx │ │ ├── vimt3d_save.h │ │ ├── vimt3d_slice.h │ │ ├── vimt3d_transform_3d.cxx │ │ ├── vimt3d_transform_3d.h │ │ ├── vimt3d_trilin_interp.h │ │ ├── vimt3d_vil3d_v3i.cxx │ │ ├── vimt3d_vil3d_v3i.h │ │ ├── vimt3d_vil3d_v3m.cxx │ │ └── vimt3d_vil3d_v3m.h │ └── vpdfl │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── mbl_cloneables_factory+vpdfl_builder_base-.cxx │ │ ├── vsl_binary_loader+vpdfl_builder_base-.cxx │ │ ├── vsl_binary_loader+vpdfl_pdf_base-.cxx │ │ ├── vsl_vector_io+vpdfl_builder_base~-.cxx │ │ └── vsl_vector_io+vpdfl_pdf_base~-.cxx │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_axis_gaussian.cxx │ │ ├── test_driver.cxx │ │ ├── test_gaussian.cxx │ │ ├── test_include.cxx │ │ ├── test_mixture.cxx │ │ ├── test_pc_gaussian.cxx │ │ └── test_vpdfl.cxx │ │ ├── vpdfl_add_all_binary_loaders.cxx │ │ ├── vpdfl_add_all_binary_loaders.h │ │ ├── vpdfl_all.h │ │ ├── vpdfl_axis_gaussian.cxx │ │ ├── vpdfl_axis_gaussian.h │ │ ├── vpdfl_axis_gaussian_builder.cxx │ │ ├── vpdfl_axis_gaussian_builder.h │ │ ├── vpdfl_axis_gaussian_sampler.cxx │ │ ├── vpdfl_axis_gaussian_sampler.h │ │ ├── vpdfl_builder_base.cxx │ │ ├── vpdfl_builder_base.h │ │ ├── vpdfl_calc_mean_var.cxx │ │ ├── vpdfl_calc_mean_var.h │ │ ├── vpdfl_gaussian.cxx │ │ ├── vpdfl_gaussian.h │ │ ├── vpdfl_gaussian_builder.cxx │ │ ├── vpdfl_gaussian_builder.h │ │ ├── vpdfl_gaussian_kernel_pdf.cxx │ │ ├── vpdfl_gaussian_kernel_pdf.h │ │ ├── vpdfl_gaussian_kernel_pdf_builder.cxx │ │ ├── vpdfl_gaussian_kernel_pdf_builder.h │ │ ├── vpdfl_gaussian_kernel_pdf_sampler.cxx │ │ ├── vpdfl_gaussian_kernel_pdf_sampler.h │ │ ├── vpdfl_gaussian_sampler.cxx │ │ ├── vpdfl_gaussian_sampler.h │ │ ├── vpdfl_kernel_pdf.cxx │ │ ├── vpdfl_kernel_pdf.h │ │ ├── vpdfl_kernel_pdf_builder.cxx │ │ ├── vpdfl_kernel_pdf_builder.h │ │ ├── vpdfl_mixture.cxx │ │ ├── vpdfl_mixture.h │ │ ├── vpdfl_mixture_builder.cxx │ │ ├── vpdfl_mixture_builder.h │ │ ├── vpdfl_mixture_sampler.cxx │ │ ├── vpdfl_mixture_sampler.h │ │ ├── vpdfl_pc_gaussian.cxx │ │ ├── vpdfl_pc_gaussian.h │ │ ├── vpdfl_pc_gaussian_builder.cxx │ │ ├── vpdfl_pc_gaussian_builder.h │ │ ├── vpdfl_pc_gaussian_sampler.cxx │ │ ├── vpdfl_pc_gaussian_sampler.h │ │ ├── vpdfl_pdf_base.cxx │ │ ├── vpdfl_pdf_base.h │ │ ├── vpdfl_prob_chi2.cxx │ │ ├── vpdfl_prob_chi2.h │ │ ├── vpdfl_resample.cxx │ │ ├── vpdfl_resample.h │ │ ├── vpdfl_sampler_base.cxx │ │ └── vpdfl_sampler_base.h ├── oul │ ├── CMakeLists.txt │ ├── ouel │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ ├── kalman_filter.cxx │ │ ├── kalman_filter.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── oufgl │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── TODO │ │ ├── asyncio.cxx │ │ ├── asyncio.h │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ └── example1.cxx │ │ ├── frame_grabber.h │ │ ├── frame_grabber_v4l.cxx │ │ ├── frame_grabber_v4l.h │ │ ├── frame_grabber_vil.cxx │ │ ├── frame_grabber_vil.h │ │ ├── introduction_doxy.txt │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── oul_copyright.h │ ├── ouml │ │ ├── CMakeLists.txt │ │ ├── CardinalSpline.cxx │ │ ├── CardinalSpline.h │ │ ├── eigenfaces.cxx │ │ ├── eigenfaces.h │ │ ├── image_convert.h │ │ ├── image_convert.hxx │ │ ├── image_database.cxx │ │ ├── image_database.h │ │ ├── image_ops.h │ │ ├── image_ops.hxx │ │ ├── inlines.h │ │ ├── introduction_doxy.txt │ │ ├── io.h │ │ ├── io.hxx │ │ ├── polygon_mesh.cxx │ │ ├── polygon_mesh.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_include.cxx │ │ │ └── test_template_include.cxx │ └── readme.txt ├── oxl │ ├── CMakeLists.txt │ ├── mvl │ │ ├── AffineMetric.cxx │ │ ├── AffineMetric.h │ │ ├── CMakeLists.txt │ │ ├── ClosestImagePointFinder.cxx │ │ ├── ClosestImagePointFinder.h │ │ ├── ComputeGRIC.cxx │ │ ├── ComputeGRIC.h │ │ ├── FDesignMatrix.cxx │ │ ├── FDesignMatrix.h │ │ ├── FMPlanarComputeNonLinear.cxx │ │ ├── FMPlanarComputeNonLinear.h │ │ ├── FMPlanarNonLinFun.cxx │ │ ├── FMPlanarNonLinFun.h │ │ ├── FManifoldProject.cxx │ │ ├── FManifoldProject.h │ │ ├── FMatrix.cxx │ │ ├── FMatrix.h │ │ ├── FMatrixAffine.cxx │ │ ├── FMatrixAffine.h │ │ ├── FMatrixCompute.cxx │ │ ├── FMatrixCompute.h │ │ ├── FMatrixCompute7Point.cxx │ │ ├── FMatrixCompute7Point.h │ │ ├── FMatrixCompute8Point.h │ │ ├── FMatrixComputeLMedSq.cxx │ │ ├── FMatrixComputeLMedSq.h │ │ ├── FMatrixComputeLinear.cxx │ │ ├── FMatrixComputeLinear.h │ │ ├── FMatrixComputeMLESAC.cxx │ │ ├── FMatrixComputeMLESAC.h │ │ ├── FMatrixComputeNonLinear.cxx │ │ ├── FMatrixComputeNonLinear.h │ │ ├── FMatrixComputeRANSAC.cxx │ │ ├── FMatrixComputeRANSAC.h │ │ ├── FMatrixComputeRobust.cxx │ │ ├── FMatrixComputeRobust.h │ │ ├── FMatrixPlanar.cxx │ │ ├── FMatrixPlanar.h │ │ ├── FMatrixSkew.cxx │ │ ├── FMatrixSkew.h │ │ ├── FileNameGenerator.h │ │ ├── FileNameGeneratorBase.cxx │ │ ├── FileNameGeneratorBase.h │ │ ├── HMatrix1D.cxx │ │ ├── HMatrix1D.h │ │ ├── HMatrix1DCompute.cxx │ │ ├── HMatrix1DCompute.h │ │ ├── HMatrix1DCompute3Point.cxx │ │ ├── HMatrix1DCompute3Point.h │ │ ├── HMatrix1DComputeDesign.cxx │ │ ├── HMatrix1DComputeDesign.h │ │ ├── HMatrix1DComputeOptimize1.cxx │ │ ├── HMatrix1DComputeOptimize1.h │ │ ├── HMatrix2D.cxx │ │ ├── HMatrix2D.h │ │ ├── HMatrix2DAffineCompute.cxx │ │ ├── HMatrix2DAffineCompute.h │ │ ├── HMatrix2DCompute.cxx │ │ ├── HMatrix2DCompute.h │ │ ├── HMatrix2DCompute4Line.cxx │ │ ├── HMatrix2DCompute4Line.h │ │ ├── HMatrix2DCompute4Point.cxx │ │ ├── HMatrix2DCompute4Point.h │ │ ├── HMatrix2DComputeLinear.cxx │ │ ├── HMatrix2DComputeLinear.h │ │ ├── HMatrix2DComputeMLESAC.cxx │ │ ├── HMatrix2DComputeMLESAC.h │ │ ├── HMatrix2DComputeRobust.cxx │ │ ├── HMatrix2DComputeRobust.h │ │ ├── HMatrix2DEuclideanCompute.cxx │ │ ├── HMatrix2DEuclideanCompute.h │ │ ├── HMatrix2DSimilarityCompute.cxx │ │ ├── HMatrix2DSimilarityCompute.h │ │ ├── HMatrix3D.cxx │ │ ├── HMatrix3D.h │ │ ├── Homg.cxx │ │ ├── Homg.h │ │ ├── Homg2D.h │ │ ├── Homg3D.h │ │ ├── HomgInterestPoint.cxx │ │ ├── HomgInterestPoint.h │ │ ├── HomgInterestPointSet.cxx │ │ ├── HomgInterestPointSet.h │ │ ├── HomgLine2D.cxx │ │ ├── HomgLine2D.h │ │ ├── HomgLine3D.cxx │ │ ├── HomgLine3D.h │ │ ├── HomgLineSeg2D.cxx │ │ ├── HomgLineSeg2D.h │ │ ├── HomgLineSeg3D.cxx │ │ ├── HomgLineSeg3D.h │ │ ├── HomgMap2D.h │ │ ├── HomgMatchPoint3D2D.h │ │ ├── HomgMetric.cxx │ │ ├── HomgMetric.h │ │ ├── HomgNorm2D.cxx │ │ ├── HomgNorm2D.h │ │ ├── HomgOperator2D.cxx │ │ ├── HomgOperator2D.h │ │ ├── HomgOperator3D.cxx │ │ ├── HomgOperator3D.h │ │ ├── HomgPlane3D.cxx │ │ ├── HomgPlane3D.h │ │ ├── HomgPoint2D.cxx │ │ ├── HomgPoint2D.h │ │ ├── HomgPoint3D.cxx │ │ ├── HomgPoint3D.h │ │ ├── HomgPrettyPrint.cxx │ │ ├── HomgPrettyPrint.h │ │ ├── ImageMetric.cxx │ │ ├── ImageMetric.h │ │ ├── LineSeg.cxx │ │ ├── LineSeg.h │ │ ├── LineSegSet.cxx │ │ ├── LineSegSet.h │ │ ├── MatchSet.h │ │ ├── ModifyHandle.h │ │ ├── NViewMatches.cxx │ │ ├── NViewMatches.h │ │ ├── PMatrix.cxx │ │ ├── PMatrix.h │ │ ├── PMatrixAffine.h │ │ ├── PMatrixCompute.h │ │ ├── PMatrixCompute6Point.h │ │ ├── PMatrixComputeLinear.cxx │ │ ├── PMatrixComputeLinear.h │ │ ├── PMatrixDec.cxx │ │ ├── PMatrixDec.h │ │ ├── PMatrixDecompAa.cxx │ │ ├── PMatrixDecompAa.h │ │ ├── PMatrixDecompCR.cxx │ │ ├── PMatrixDecompCR.h │ │ ├── PMatrixEuclidean.h │ │ ├── PMatrix_sptr.h │ │ ├── PairMatchMulti.cxx │ │ ├── PairMatchMulti.h │ │ ├── PairMatchMultiIterator.cxx │ │ ├── PairMatchMultiIterator.h │ │ ├── PairMatchMultiStrength.h │ │ ├── PairMatchSet.cxx │ │ ├── PairMatchSet.h │ │ ├── PairMatchSet2D3D.cxx │ │ ├── PairMatchSet2D3D.h │ │ ├── PairMatchSetCorner.cxx │ │ ├── PairMatchSetCorner.h │ │ ├── PairMatchSetLineSeg.cxx │ │ ├── PairMatchSetLineSeg.h │ │ ├── PairMatchSetMulti.h │ │ ├── PairSetCorner.cxx │ │ ├── PairSetCorner.h │ │ ├── Probability.cxx │ │ ├── Probability.h │ │ ├── ProjStructure.cxx │ │ ├── ProjStructure.h │ │ ├── ProjectiveBasis2D.cxx │ │ ├── ProjectiveBasis2D.h │ │ ├── RawPMatrixStore.cxx │ │ ├── RawPMatrixStore.h │ │ ├── SimilarityMetric.cxx │ │ ├── SimilarityMetric.h │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── ModifyHandle+double-.cxx │ │ │ ├── vbl_array_2d+HomgPoint2D-.cxx │ │ │ ├── vbl_array_2d+PairMatchSetLineSeg~-.cxx │ │ │ ├── vbl_array_2d+vnl_matrix+double--.cxx │ │ │ ├── vbl_array_2d+vnl_vector+double--.cxx │ │ │ ├── vbl_smart_ptr+PMatrix-.cxx │ │ │ ├── vbl_sparse_array_1d+FMatrix~-.cxx │ │ │ ├── vbl_sparse_array_1d+HMatrix2D~-.cxx │ │ │ ├── vbl_sparse_array_1d+HMatrix3D-.cxx │ │ │ ├── vbl_sparse_array_1d+ImageMetric~-.cxx │ │ │ ├── vbl_sparse_array_1d+PairMatchSetCorner~-.cxx │ │ │ └── vbl_sparse_array_1d+PairMatchSetLineSeg~-.cxx │ │ ├── TriTensor.cxx │ │ ├── TriTensor.h │ │ ├── TriTensorCompute.cxx │ │ ├── TriTensorCompute.h │ │ ├── TripleMatchSet.cxx │ │ ├── TripleMatchSet.h │ │ ├── TripleMatchSetCorner.cxx │ │ ├── TripleMatchSetCorner.h │ │ ├── TripleMatchSetLineSeg.cxx │ │ ├── TripleMatchSetLineSeg.h │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── PMatrixDecompCR_example.cxx │ │ │ ├── compute_FMatrix_example.cxx │ │ │ └── mvl_multi_view_matches_example.cxx │ │ ├── introduction_doxy.txt │ │ ├── mvl_five_point_camera_pencil.cxx │ │ ├── mvl_five_point_camera_pencil.h │ │ ├── mvl_linear_backproject.cxx │ │ ├── mvl_linear_backproject.h │ │ ├── mvl_modify_handle.h │ │ ├── mvl_multi_view_matches.cxx │ │ ├── mvl_multi_view_matches.h │ │ ├── mvl_psi.cxx │ │ ├── mvl_psi.h │ │ ├── mvl_six_point_design_matrix_row.cxx │ │ ├── mvl_six_point_design_matrix_row.h │ │ ├── mvl_three_view_six_point_structure.cxx │ │ ├── mvl_three_view_six_point_structure.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ ├── osl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── osl_1d_half_kernel+double-.cxx │ │ │ ├── osl_canny_smooth+byte-.cxx │ │ │ ├── osl_canny_smooth+float-.cxx │ │ │ ├── osl_canny_smooth+ushort-.cxx │ │ │ └── osl_canny_smooth+vil1_rgb+uchar--.cxx │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── break_lines.cxx │ │ │ ├── fit_lines.cxx │ │ │ ├── run_osl_canny.cxx │ │ │ ├── run_osl_harris.cxx │ │ │ └── topology_edges.cxx │ │ ├── internals │ │ │ ├── droid.cxx │ │ │ ├── droid.h │ │ │ ├── osl_reorder_chain.cxx │ │ │ └── osl_reorder_chain.h │ │ ├── introduction_doxy.txt │ │ ├── osl_1d_half_kernel.h │ │ ├── osl_1d_half_kernel.hxx │ │ ├── osl_OrthogRegress.h │ │ ├── osl_break_edge.cxx │ │ ├── osl_break_edge.h │ │ ├── osl_canny_base.cxx │ │ ├── osl_canny_base.h │ │ ├── osl_canny_gradient.cxx │ │ ├── osl_canny_gradient.h │ │ ├── osl_canny_nms.cxx │ │ ├── osl_canny_nms.h │ │ ├── osl_canny_ox.cxx │ │ ├── osl_canny_ox.h │ │ ├── osl_canny_ox_params.cxx │ │ ├── osl_canny_ox_params.h │ │ ├── osl_canny_port.h │ │ ├── osl_canny_rothwell.cxx │ │ ├── osl_canny_rothwell.h │ │ ├── osl_canny_rothwell_params.h │ │ ├── osl_canny_smooth.cxx │ │ ├── osl_canny_smooth.h │ │ ├── osl_canny_smooth.hxx │ │ ├── osl_chamfer.cxx │ │ ├── osl_chamfer.h │ │ ├── osl_convolve.cxx │ │ ├── osl_convolve.h │ │ ├── osl_easy_canny.cxx │ │ ├── osl_easy_canny.h │ │ ├── osl_edge.cxx │ │ ├── osl_edge.h │ │ ├── osl_edge_detector.cxx │ │ ├── osl_edge_detector.h │ │ ├── osl_edge_detector_params.cxx │ │ ├── osl_edge_detector_params.h │ │ ├── osl_edgel_chain.cxx │ │ ├── osl_edgel_chain.h │ │ ├── osl_fit_circle.cxx │ │ ├── osl_fit_circle.h │ │ ├── osl_fit_lines.cxx │ │ ├── osl_fit_lines.h │ │ ├── osl_fit_lines_params.cxx │ │ ├── osl_fit_lines_params.h │ │ ├── osl_hacks.h │ │ ├── osl_harris.cxx │ │ ├── osl_harris.h │ │ ├── osl_harris_params.cxx │ │ ├── osl_harris_params.h │ │ ├── osl_kernel.cxx │ │ ├── osl_kernel.h │ │ ├── osl_load_topology.cxx │ │ ├── osl_load_topology.h │ │ ├── osl_ortho_regress.cxx │ │ ├── osl_ortho_regress.h │ │ ├── osl_roi_window.h │ │ ├── osl_save_topology.cxx │ │ ├── osl_save_topology.h │ │ ├── osl_topology.cxx │ │ ├── osl_topology.h │ │ ├── osl_vertex.cxx │ │ ├── osl_vertex.h │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_include.cxx │ │ │ └── test_template_include.cxx │ ├── vrml │ │ ├── CMakeLists.txt │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ │ ├── vrml_out.cxx │ │ └── vrml_out.h │ └── xcv │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── example_data.gx │ │ ├── tests │ │ ├── CMakeLists.txt │ │ └── test_include.cxx │ │ ├── xcv.cxx │ │ ├── xcv_axes_limits.cxx │ │ ├── xcv_axes_limits.h │ │ ├── xcv_axes_tableau.cxx │ │ ├── xcv_axes_tableau.h │ │ ├── xcv_axes_tableau_sptr.h │ │ ├── xcv_display.cxx │ │ ├── xcv_display.h │ │ ├── xcv_file.cxx │ │ ├── xcv_file.h │ │ ├── xcv_geometry.cxx │ │ ├── xcv_geometry.h │ │ ├── xcv_image_tableau.cxx │ │ ├── xcv_image_tableau.h │ │ ├── xcv_image_tableau_sptr.h │ │ ├── xcv_multiview.cxx │ │ ├── xcv_multiview.h │ │ ├── xcv_multiview_create_multiview_menu.cxx │ │ ├── xcv_mview_manager.h │ │ ├── xcv_picker_tableau.cxx │ │ ├── xcv_picker_tableau.h │ │ ├── xcv_picker_tableau_sptr.h │ │ ├── xcv_processing.cxx │ │ ├── xcv_processing.h │ │ ├── xcv_segmentation.cxx │ │ ├── xcv_segmentation.h │ │ ├── xcv_threeview_manager.cxx │ │ ├── xcv_threeview_manager.h │ │ ├── xcv_tjunction.cxx │ │ ├── xcv_tjunction.h │ │ ├── xcv_twoview_manager.cxx │ │ └── xcv_twoview_manager.h ├── prip │ ├── CMakeLists.txt │ ├── vdtop │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── lena.org.pgm │ │ │ ├── test_include.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── vdtop_kernel_test.cxx │ │ │ ├── vdtop_veinerization_test.cxx │ │ │ └── vdtop_well_composed_kernel_test.cxx │ │ ├── vdtop_4_lower_homotopic_kernel.h │ │ ├── vdtop_4_lower_leveling_kernel.h │ │ ├── vdtop_4_upper_homotopic_kernel.h │ │ ├── vdtop_4_upper_leveling_kernel.h │ │ ├── vdtop_8_lower_homotopic_kernel.h │ │ ├── vdtop_8_lower_leveling_kernel.h │ │ ├── vdtop_8_neighborhood_mask.cxx │ │ ├── vdtop_8_neighborhood_mask.h │ │ ├── vdtop_8_upper_homotopic_kernel.h │ │ ├── vdtop_8_upper_leveling_kernel.h │ │ ├── vdtop_construct_well_composed.h │ │ ├── vdtop_draw_digital_graph.h │ │ ├── vdtop_export.h │ │ ├── vdtop_freeman_code.cxx │ │ ├── vdtop_freeman_code.h │ │ ├── vdtop_kernel.h │ │ ├── vdtop_misc.hxx │ │ ├── vdtop_neighborhood.h │ │ ├── vdtop_pixel.h │ │ ├── vdtop_pixel.hxx │ │ ├── vdtop_replace_quasi_8_minima.h │ │ ├── vdtop_set_4_veinerization_structure.h │ │ ├── vdtop_set_4_veinerization_structure.hxx │ │ ├── vdtop_set_8_veinerization_structure.h │ │ ├── vdtop_set_8_veinerization_structure.hxx │ │ ├── vdtop_set_structure_from_digital_graph.h │ │ ├── vdtop_set_structure_from_digital_graph.hxx │ │ ├── vdtop_well_composed_lower_leveling_kernel.h │ │ └── vil_canny_deriche_grad_filter.h │ ├── vmap │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── my_map.h │ │ │ ├── my_map_functions.hxx │ │ │ ├── test_include.cxx │ │ │ ├── test_template_include.cxx │ │ │ └── vmap_test.cxx │ │ ├── vbl_controlled_partition.cxx │ │ ├── vbl_controlled_partition.h │ │ ├── vmap_2_map.cxx │ │ ├── vmap_2_map.h │ │ ├── vmap_2_map.hxx │ │ ├── vmap_2_tmap.h │ │ ├── vmap_2_tmap.hxx │ │ ├── vmap_2_tmap_elts.cxx │ │ ├── vmap_2_tmap_elts.h │ │ ├── vmap_grid_structure.cxx │ │ ├── vmap_grid_structure.h │ │ ├── vmap_kernel.h │ │ ├── vmap_kernel.hxx │ │ ├── vmap_map_iterator_wrapper.h │ │ ├── vmap_non_oriented_kernel.h │ │ ├── vmap_non_oriented_kernel.hxx │ │ ├── vmap_oriented_kernel.h │ │ ├── vmap_oriented_kernel.hxx │ │ ├── vmap_ptr_sequences.h │ │ ├── vmap_set_grid_structure.h │ │ └── vmap_types.h │ └── vpyr │ │ ├── CMakeLists.txt │ │ ├── examples │ │ ├── .NoDartCoverage │ │ └── simple_segmentation │ │ │ ├── CMakeLists.txt │ │ │ ├── simple_segmentation.cxx │ │ │ ├── simple_segmentation_builder.cxx │ │ │ └── simple_segmentation_builder.h │ │ ├── introduction_doxy.txt │ │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── my_pyramid.cxx │ │ ├── my_pyramid.h │ │ ├── my_pyramid_functions.hxx │ │ ├── my_top_level.cxx │ │ ├── my_top_level.h │ │ ├── test_include.cxx │ │ ├── test_template_include.cxx │ │ ├── vpyr_test.cxx │ │ └── vpyr_test2.cxx │ │ ├── vpyr_2_pyramid.h │ │ ├── vpyr_2_pyramid.hxx │ │ ├── vpyr_2_pyramid_base.cxx │ │ ├── vpyr_2_pyramid_base.h │ │ ├── vpyr_2_pyramid_level.h │ │ ├── vpyr_2_pyramid_level.hxx │ │ ├── vpyr_2_pyramid_level_elts.h │ │ ├── vpyr_2_tpyramid.h │ │ ├── vpyr_2_tpyramid.hxx │ │ ├── vpyr_2_tpyramid_base.cxx │ │ ├── vpyr_2_tpyramid_base.h │ │ ├── vpyr_2_tpyramid_builder.h │ │ ├── vpyr_2_tpyramid_level.h │ │ ├── vpyr_2_tpyramid_level.hxx │ │ ├── vpyr_2_tpyramid_level_elts.h │ │ ├── vpyr_top_tmap.h │ │ └── vpyr_top_tmap.hxx ├── rpl │ ├── CMakeLists.txt │ ├── rgrl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── rgrl_est_proj_func+2.2-.cxx │ │ │ ├── rgrl_est_proj_func+2.3-.cxx │ │ │ ├── rgrl_est_proj_rad_func+2.2-.cxx │ │ │ ├── rgrl_est_proj_rad_func+2.3-.cxx │ │ │ ├── rgrl_feature_caster+rgrl_feature_trace_pt-.cxx │ │ │ ├── rgrl_feature_set_bins+2.cxx │ │ │ ├── rgrl_feature_set_bins+3.cxx │ │ │ ├── rgrl_feature_set_location+2-.cxx │ │ │ ├── rgrl_feature_set_location+3-.cxx │ │ │ ├── rgrl_matcher_pseudo+vxl_byte-.cxx │ │ │ ├── rgrl_matcher_pseudo+vxl_uint_16-.cxx │ │ │ ├── rgrl_matcher_pseudo_3d+float-.cxx │ │ │ ├── rgrl_matcher_pseudo_3d+vxl_byte-.cxx │ │ │ ├── rgrl_matcher_pseudo_3d+vxl_sint_16-.cxx │ │ │ ├── rgrl_matcher_pseudo_int_3d+vxl_sint_16-.cxx │ │ │ ├── rgrl_set_of+rgrl_match_set_sptr-.cxx │ │ │ ├── rgrl_set_of+rgrl_scale_sptr-.cxx │ │ │ ├── rsdl_bins_2d+double.rgrl_feature_sptr-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_command-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_converge_status-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_convergence_tester-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_data_manager-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_estimator-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_evaluator-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_event-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_feature-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_feature_face_pt-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_feature_set-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_initializer-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_invariant-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_invariant_match-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_invariant_set-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_mask-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_match_set-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_matcher-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_object-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_scale-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_scale_estimator_unwgted-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_scale_estimator_wgted-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_spline-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_transformation-.cxx │ │ │ ├── vbl_smart_ptr+rgrl_view-.cxx │ │ │ └── vbl_smart_ptr+rgrl_weighter-.cxx │ │ ├── doc │ │ │ └── SoftwareGuide.pdf │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── IMG0002.pgm.landmarks.invariant.txt │ │ │ ├── IMG0002.pgm.landmarks.txt │ │ │ ├── IMG0002.pgm.txt │ │ │ ├── IMG0002_low.pgm.txt │ │ │ ├── IMG0003.pgm.txt │ │ │ ├── IMG0003_low.pgm.txt │ │ │ ├── IMG0004.pgm.landmarks.invariant.txt │ │ │ ├── IMG0004.pgm.landmarks.txt │ │ │ ├── IMG0004.pgm.txt │ │ │ ├── bun000.txt.out │ │ │ ├── bun045.txt.out │ │ │ ├── dragonStandRight_0_normals.txt │ │ │ ├── estimate_normals_3d.cxx │ │ │ ├── init-needing-dbicp │ │ │ ├── init_xform_flipped_y.txt │ │ │ ├── mask.png │ │ │ ├── match_2d.cxx │ │ │ ├── match_2d_multi.cxx │ │ │ ├── registration1.cxx │ │ │ ├── registration2.cxx │ │ │ ├── registration3.cxx │ │ │ ├── registration_blackbox.cxx │ │ │ ├── registration_landmark.cxx │ │ │ ├── registration_range_data.cxx │ │ │ ├── registration_range_data_blackbox.cxx │ │ │ ├── registration_retina_no_view.cxx │ │ │ ├── registration_simple_shapes.cxx │ │ │ ├── registration_simple_shapes_outliers.cxx │ │ │ ├── sigcube1.png │ │ │ ├── sigcube1_face_features.txt │ │ │ └── sigcube2.png │ │ ├── introduction_doxy.txt │ │ ├── rgrl_cast.h │ │ ├── rgrl_command.h │ │ ├── rgrl_command_sptr.h │ │ ├── rgrl_converge_status.cxx │ │ ├── rgrl_converge_status.h │ │ ├── rgrl_converge_status_nas.cxx │ │ ├── rgrl_converge_status_nas.h │ │ ├── rgrl_converge_status_sptr.h │ │ ├── rgrl_convergence_on_median_error.cxx │ │ ├── rgrl_convergence_on_median_error.h │ │ ├── rgrl_convergence_on_weighted_error.cxx │ │ ├── rgrl_convergence_on_weighted_error.h │ │ ├── rgrl_convergence_tester.cxx │ │ ├── rgrl_convergence_tester.h │ │ ├── rgrl_convergence_tester_sptr.h │ │ ├── rgrl_copyright.h │ │ ├── rgrl_data_manager.cxx │ │ ├── rgrl_data_manager.h │ │ ├── rgrl_data_manager_sptr.h │ │ ├── rgrl_debug_util.cxx │ │ ├── rgrl_debug_util.h │ │ ├── rgrl_est_affine.cxx │ │ ├── rgrl_est_affine.h │ │ ├── rgrl_est_dis_homo2d_lm.cxx │ │ ├── rgrl_est_dis_homo2d_lm.h │ │ ├── rgrl_est_homo2d_lm.cxx │ │ ├── rgrl_est_homo2d_lm.h │ │ ├── rgrl_est_homo2d_proj.cxx │ │ ├── rgrl_est_homo2d_proj.h │ │ ├── rgrl_est_homo2d_proj_rad.cxx │ │ ├── rgrl_est_homo2d_proj_rad.h │ │ ├── rgrl_est_homography2d.cxx │ │ ├── rgrl_est_homography2d.h │ │ ├── rgrl_est_proj_func.h │ │ ├── rgrl_est_proj_func.txx │ │ ├── rgrl_est_proj_rad_func.h │ │ ├── rgrl_est_proj_rad_func.txx │ │ ├── rgrl_est_quadratic.cxx │ │ ├── rgrl_est_quadratic.h │ │ ├── rgrl_est_reduced_quad2d.cxx │ │ ├── rgrl_est_reduced_quad2d.h │ │ ├── rgrl_est_rigid.cxx │ │ ├── rgrl_est_rigid.h │ │ ├── rgrl_est_similarity2d.cxx │ │ ├── rgrl_est_similarity2d.h │ │ ├── rgrl_est_spline.cxx │ │ ├── rgrl_est_spline.h │ │ ├── rgrl_est_translation.cxx │ │ ├── rgrl_est_translation.h │ │ ├── rgrl_estimator.cxx │ │ ├── rgrl_estimator.h │ │ ├── rgrl_estimator_sptr.h │ │ ├── rgrl_evaluator.h │ │ ├── rgrl_evaluator_sptr.h │ │ ├── rgrl_evaluator_ssd.cxx │ │ ├── rgrl_evaluator_ssd.h │ │ ├── rgrl_event.h │ │ ├── rgrl_event_sptr.h │ │ ├── rgrl_export.h │ │ ├── rgrl_feature.cxx │ │ ├── rgrl_feature.h │ │ ├── rgrl_feature_based_registration.cxx │ │ ├── rgrl_feature_based_registration.h │ │ ├── rgrl_feature_face_pt.cxx │ │ ├── rgrl_feature_face_pt.h │ │ ├── rgrl_feature_face_pt_sptr.h │ │ ├── rgrl_feature_face_region.cxx │ │ ├── rgrl_feature_face_region.h │ │ ├── rgrl_feature_landmark.cxx │ │ ├── rgrl_feature_landmark.h │ │ ├── rgrl_feature_point.cxx │ │ ├── rgrl_feature_point.h │ │ ├── rgrl_feature_point_region.cxx │ │ ├── rgrl_feature_point_region.h │ │ ├── rgrl_feature_reader.cxx │ │ ├── rgrl_feature_reader.h │ │ ├── rgrl_feature_region.cxx │ │ ├── rgrl_feature_region.h │ │ ├── rgrl_feature_set.cxx │ │ ├── rgrl_feature_set.h │ │ ├── rgrl_feature_set_bins.h │ │ ├── rgrl_feature_set_bins.txx │ │ ├── rgrl_feature_set_bins_2d.cxx │ │ ├── rgrl_feature_set_bins_2d.h │ │ ├── rgrl_feature_set_location.h │ │ ├── rgrl_feature_set_location.txx │ │ ├── rgrl_feature_set_location_masked.cxx │ │ ├── rgrl_feature_set_location_masked.h │ │ ├── rgrl_feature_set_sptr.h │ │ ├── rgrl_feature_sptr.h │ │ ├── rgrl_feature_trace_pt.cxx │ │ ├── rgrl_feature_trace_pt.h │ │ ├── rgrl_feature_trace_region.cxx │ │ ├── rgrl_feature_trace_region.h │ │ ├── rgrl_fwd.h │ │ ├── rgrl_initializer.cxx │ │ ├── rgrl_initializer.h │ │ ├── rgrl_initializer_inv_indexing.cxx │ │ ├── rgrl_initializer_inv_indexing.h │ │ ├── rgrl_initializer_prior.cxx │ │ ├── rgrl_initializer_prior.h │ │ ├── rgrl_initializer_ran_sam.cxx │ │ ├── rgrl_initializer_ran_sam.h │ │ ├── rgrl_initializer_reader.cxx │ │ ├── rgrl_initializer_reader.h │ │ ├── rgrl_initializer_sptr.h │ │ ├── rgrl_internal_util.cxx │ │ ├── rgrl_internal_util.h │ │ ├── rgrl_invariant.cxx │ │ ├── rgrl_invariant.h │ │ ├── rgrl_invariant_match.cxx │ │ ├── rgrl_invariant_match.h │ │ ├── rgrl_invariant_match_sptr.h │ │ ├── rgrl_invariant_set.h │ │ ├── rgrl_invariant_set_sptr.h │ │ ├── rgrl_invariant_single_landmark.cxx │ │ ├── rgrl_invariant_single_landmark.h │ │ ├── rgrl_invariant_sptr.h │ │ ├── rgrl_macros.h │ │ ├── rgrl_mask.cxx │ │ ├── rgrl_mask.h │ │ ├── rgrl_mask_3d_image.cxx │ │ ├── rgrl_mask_3d_image.h │ │ ├── rgrl_mask_oriented_box.cxx │ │ ├── rgrl_mask_oriented_box.h │ │ ├── rgrl_mask_sptr.h │ │ ├── rgrl_match_set.cxx │ │ ├── rgrl_match_set.h │ │ ├── rgrl_match_set_sptr.h │ │ ├── rgrl_matcher.cxx │ │ ├── rgrl_matcher.h │ │ ├── rgrl_matcher_fixed.cxx │ │ ├── rgrl_matcher_fixed.h │ │ ├── rgrl_matcher_k_nearest.cxx │ │ ├── rgrl_matcher_k_nearest.h │ │ ├── rgrl_matcher_k_nearest_adv.cxx │ │ ├── rgrl_matcher_k_nearest_adv.h │ │ ├── rgrl_matcher_k_nearest_boundary.cxx │ │ ├── rgrl_matcher_k_nearest_boundary.h │ │ ├── rgrl_matcher_k_nearest_pick_one.cxx │ │ ├── rgrl_matcher_k_nearest_pick_one.h │ │ ├── rgrl_matcher_k_nearest_random.cxx │ │ ├── rgrl_matcher_k_nearest_random.h │ │ ├── rgrl_matcher_pseudo.h │ │ ├── rgrl_matcher_pseudo.txx │ │ ├── rgrl_matcher_pseudo_3d.h │ │ ├── rgrl_matcher_pseudo_3d.txx │ │ ├── rgrl_matcher_pseudo_int_3d.h │ │ ├── rgrl_matcher_pseudo_int_3d.txx │ │ ├── rgrl_matcher_sptr.h │ │ ├── rgrl_object.cxx │ │ ├── rgrl_object.h │ │ ├── rgrl_object_sptr.h │ │ ├── rgrl_rotation.cxx │ │ ├── rgrl_rotation.h │ │ ├── rgrl_scale.cxx │ │ ├── rgrl_scale.h │ │ ├── rgrl_scale_est_all_weights.cxx │ │ ├── rgrl_scale_est_all_weights.h │ │ ├── rgrl_scale_est_closest.cxx │ │ ├── rgrl_scale_est_closest.h │ │ ├── rgrl_scale_est_null.cxx │ │ ├── rgrl_scale_est_null.h │ │ ├── rgrl_scale_estimator.cxx │ │ ├── rgrl_scale_estimator.h │ │ ├── rgrl_scale_estimator_sptr.h │ │ ├── rgrl_scale_sptr.h │ │ ├── rgrl_set_of.h │ │ ├── rgrl_set_of.txx │ │ ├── rgrl_spline.cxx │ │ ├── rgrl_spline.h │ │ ├── rgrl_spline_sptr.h │ │ ├── rgrl_trans_affine.cxx │ │ ├── rgrl_trans_affine.h │ │ ├── rgrl_trans_couple.cxx │ │ ├── rgrl_trans_couple.h │ │ ├── rgrl_trans_homo2d_proj_rad.cxx │ │ ├── rgrl_trans_homo2d_proj_rad.h │ │ ├── rgrl_trans_homography2d.cxx │ │ ├── rgrl_trans_homography2d.h │ │ ├── rgrl_trans_mixed_spline.cxx │ │ ├── rgrl_trans_mixed_spline.h │ │ ├── rgrl_trans_quadratic.cxx │ │ ├── rgrl_trans_quadratic.h │ │ ├── rgrl_trans_rad_dis_homo2d.cxx │ │ ├── rgrl_trans_rad_dis_homo2d.h │ │ ├── rgrl_trans_reader.cxx │ │ ├── rgrl_trans_reader.h │ │ ├── rgrl_trans_reduced_quad.cxx │ │ ├── rgrl_trans_reduced_quad.h │ │ ├── rgrl_trans_rigid.cxx │ │ ├── rgrl_trans_rigid.h │ │ ├── rgrl_trans_similarity.cxx │ │ ├── rgrl_trans_similarity.h │ │ ├── rgrl_trans_spline.cxx │ │ ├── rgrl_trans_spline.h │ │ ├── rgrl_trans_translation.cxx │ │ ├── rgrl_trans_translation.h │ │ ├── rgrl_transformation.cxx │ │ ├── rgrl_transformation.h │ │ ├── rgrl_transformation_sptr.h │ │ ├── rgrl_util.cxx │ │ ├── rgrl_util.h │ │ ├── rgrl_view.cxx │ │ ├── rgrl_view.h │ │ ├── rgrl_view_sptr.h │ │ ├── rgrl_weighter.cxx │ │ ├── rgrl_weighter.h │ │ ├── rgrl_weighter_indiv_scale.cxx │ │ ├── rgrl_weighter_indiv_scale.h │ │ ├── rgrl_weighter_m_est.cxx │ │ ├── rgrl_weighter_m_est.h │ │ ├── rgrl_weighter_sptr.h │ │ ├── rgrl_weighter_unit.cxx │ │ ├── rgrl_weighter_unit.h │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── affine_xform.txt │ │ │ ├── test_convergence.cxx │ │ │ ├── test_data_set.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_estimator.cxx │ │ │ ├── test_feature.cxx │ │ │ ├── test_feature_region.cxx │ │ │ ├── test_feature_set.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_initializer.cxx │ │ │ ├── test_initializer_ran_sam.cxx │ │ │ ├── test_match_set.cxx │ │ │ ├── test_matcher.cxx │ │ │ ├── test_rgrl_util.cxx │ │ │ ├── test_scale_est.cxx │ │ │ ├── test_set_of.cxx │ │ │ ├── test_spline.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_trans_reader.cxx │ │ │ ├── test_transformation.cxx │ │ │ ├── test_util.cxx │ │ │ └── test_util.h │ ├── rgtl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── rgtl_object_array_points+2-.cxx │ │ │ ├── rgtl_object_array_points+3-.cxx │ │ │ ├── rgtl_octree_cell_bounds+1-.cxx │ │ │ ├── rgtl_octree_cell_bounds+2-.cxx │ │ │ ├── rgtl_octree_cell_bounds+3-.cxx │ │ │ ├── rgtl_octree_cell_geometry+2-.cxx │ │ │ ├── rgtl_octree_cell_geometry+3-.cxx │ │ │ ├── rgtl_octree_cell_location+1-.cxx │ │ │ ├── rgtl_octree_cell_location+2-.cxx │ │ │ ├── rgtl_octree_cell_location+3-.cxx │ │ │ ├── rgtl_octree_objects+2-.cxx │ │ │ ├── rgtl_octree_objects+3-.cxx │ │ │ ├── rgtl_octree_point_location+2-.cxx │ │ │ ├── rgtl_octree_point_location+3-.cxx │ │ │ ├── rgtl_sqt_cell_bounds+2-.cxx │ │ │ ├── rgtl_sqt_cell_bounds+3-.cxx │ │ │ ├── rgtl_sqt_cell_geometry+2._-.cxx │ │ │ ├── rgtl_sqt_cell_geometry+3._-.cxx │ │ │ ├── rgtl_sqt_cell_location+2-.cxx │ │ │ ├── rgtl_sqt_cell_location+3-.cxx │ │ │ ├── rgtl_sqt_objects+2-.cxx │ │ │ ├── rgtl_sqt_objects+3-.cxx │ │ │ ├── rgtl_sqt_space+2._-.cxx │ │ │ └── rgtl_sqt_space+3._-.cxx │ │ ├── rgtl_compact_tree.hxx │ │ ├── rgtl_compact_tree.txx │ │ ├── rgtl_compact_tree_data_fixed.hxx │ │ ├── rgtl_compact_tree_index.hxx │ │ ├── rgtl_compact_tree_link.hxx │ │ ├── rgtl_compact_tree_node_data.hxx │ │ ├── rgtl_compact_tree_policy.hxx │ │ ├── rgtl_config.hxx │ │ ├── rgtl_license_1_0.txt │ │ ├── rgtl_meta.hxx │ │ ├── rgtl_object_array.hxx │ │ ├── rgtl_object_array_points.hxx │ │ ├── rgtl_object_array_points.txx │ │ ├── rgtl_object_array_triangles_3d.cxx │ │ ├── rgtl_object_array_triangles_3d.hxx │ │ ├── rgtl_object_closest_polygon_3d.hxx │ │ ├── rgtl_object_once.cxx │ │ ├── rgtl_object_once.hxx │ │ ├── rgtl_octree_cell_bounds.hxx │ │ ├── rgtl_octree_cell_bounds.txx │ │ ├── rgtl_octree_cell_geometry.hxx │ │ ├── rgtl_octree_cell_geometry.txx │ │ ├── rgtl_octree_cell_location.hxx │ │ ├── rgtl_octree_cell_location.txx │ │ ├── rgtl_octree_data_fixed.hxx │ │ ├── rgtl_octree_data_fixed.txx │ │ ├── rgtl_octree_dual.hxx │ │ ├── rgtl_octree_dual_element.hxx │ │ ├── rgtl_octree_dual_index.hxx │ │ ├── rgtl_octree_dual_location.hxx │ │ ├── rgtl_octree_dual_visit.hxx │ │ ├── rgtl_octree_objects.hxx │ │ ├── rgtl_octree_objects.txx │ │ ├── rgtl_octree_point_location.hxx │ │ ├── rgtl_octree_point_location.txx │ │ ├── rgtl_separating_axis.hxx │ │ ├── rgtl_separating_axis_projection.hxx │ │ ├── rgtl_serialize.txt │ │ ├── rgtl_serialize_access.hxx │ │ ├── rgtl_serialize_base.hxx │ │ ├── rgtl_serialize_direction.hxx │ │ ├── rgtl_serialize_istream.cxx │ │ ├── rgtl_serialize_istream.hxx │ │ ├── rgtl_serialize_ostream.cxx │ │ ├── rgtl_serialize_ostream.hxx │ │ ├── rgtl_serialize_split.hxx │ │ ├── rgtl_serialize_stl_vector.hxx │ │ ├── rgtl_serialize_vnl_double_3.hxx │ │ ├── rgtl_serialize_vnl_vector_fixed.hxx │ │ ├── rgtl_sqt_base.cxx │ │ ├── rgtl_sqt_base.hxx │ │ ├── rgtl_sqt_cell_bounds.hxx │ │ ├── rgtl_sqt_cell_bounds.txx │ │ ├── rgtl_sqt_cell_geometry.hxx │ │ ├── rgtl_sqt_cell_geometry.txx │ │ ├── rgtl_sqt_cell_location.hxx │ │ ├── rgtl_sqt_cell_location.txx │ │ ├── rgtl_sqt_object_array.hxx │ │ ├── rgtl_sqt_object_array_triangles_3d.cxx │ │ ├── rgtl_sqt_object_array_triangles_3d.hxx │ │ ├── rgtl_sqt_objects.hxx │ │ ├── rgtl_sqt_objects.txx │ │ ├── rgtl_sqt_space.hxx │ │ ├── rgtl_sqt_space.txx │ │ ├── rgtl_static_assert.hxx │ │ ├── rgtl_tagged_index.hxx │ │ ├── rgtl_tagged_vector.hxx │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_compact_tree_data_fixed.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_octree_data_fixed.cxx │ │ │ ├── test_octree_dual_visit.cxx │ │ │ ├── test_octree_objects.cxx │ │ │ ├── test_sqt_base.cxx │ │ │ └── test_template_include.cxx │ ├── rrel │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── rrel_util_double~.cxx │ │ │ ├── rrel_util_list+double-.cxx │ │ │ ├── rrel_util_vector+double-.cxx │ │ │ └── rrel_util_vector+float-.cxx │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── homography2d_fit.cxx │ │ │ ├── homography2d_fit_20.dat │ │ │ ├── homography2d_gen.cxx │ │ │ ├── line_fit.cxx │ │ │ ├── line_fit_30.dat │ │ │ ├── line_fit_60.dat │ │ │ └── line_gen.cxx │ │ ├── introduction_doxy.txt │ │ ├── rrel_affine_est.cxx │ │ ├── rrel_affine_est.h │ │ ├── rrel_cauchy_obj.cxx │ │ ├── rrel_cauchy_obj.h │ │ ├── rrel_estimation_problem.cxx │ │ ├── rrel_estimation_problem.h │ │ ├── rrel_export.h │ │ ├── rrel_fwd.h │ │ ├── rrel_homography2d_est.cxx │ │ ├── rrel_homography2d_est.h │ │ ├── rrel_homography2d_est_aff.cxx │ │ ├── rrel_homography2d_est_aff.h │ │ ├── rrel_irls.cxx │ │ ├── rrel_irls.h │ │ ├── rrel_kernel_density_obj.cxx │ │ ├── rrel_kernel_density_obj.h │ │ ├── rrel_linear_regression.cxx │ │ ├── rrel_linear_regression.h │ │ ├── rrel_lms_obj.cxx │ │ ├── rrel_lms_obj.h │ │ ├── rrel_lts_obj.cxx │ │ ├── rrel_lts_obj.h │ │ ├── rrel_m_est_obj.cxx │ │ ├── rrel_m_est_obj.h │ │ ├── rrel_misc.cxx │ │ ├── rrel_misc.h │ │ ├── rrel_mlesac_obj.cxx │ │ ├── rrel_mlesac_obj.h │ │ ├── rrel_muse_table.cxx │ │ ├── rrel_muse_table.h │ │ ├── rrel_muset_obj.cxx │ │ ├── rrel_muset_obj.h │ │ ├── rrel_objective.h │ │ ├── rrel_orthogonal_regression.cxx │ │ ├── rrel_orthogonal_regression.h │ │ ├── rrel_quad_est.cxx │ │ ├── rrel_quad_est.h │ │ ├── rrel_ran_sam_search.cxx │ │ ├── rrel_ran_sam_search.h │ │ ├── rrel_ransac_obj.cxx │ │ ├── rrel_ransac_obj.h │ │ ├── rrel_shift2d_est.cxx │ │ ├── rrel_shift2d_est.h │ │ ├── rrel_trunc_quad_obj.cxx │ │ ├── rrel_trunc_quad_obj.h │ │ ├── rrel_tukey_obj.cxx │ │ ├── rrel_tukey_obj.h │ │ ├── rrel_util.h │ │ ├── rrel_util.txx │ │ ├── rrel_wgted_ran_sam_search.cxx │ │ ├── rrel_wgted_ran_sam_search.h │ │ ├── rrel_wls_obj.h │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── similarity_from_matches.cxx │ │ │ ├── similarity_from_matches.h │ │ │ ├── test_driver.cxx │ │ │ ├── test_homography2d_est.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_irls.cxx │ │ │ ├── test_linear_reg.cxx │ │ │ ├── test_lms_lts.cxx │ │ │ ├── test_m_est_obj.cxx │ │ │ ├── test_muse_table.cxx │ │ │ ├── test_orthogonal_regression.cxx │ │ │ ├── test_ran_sam_search.cxx │ │ │ ├── test_ransac_obj.cxx │ │ │ ├── test_robust_util.cxx │ │ │ ├── test_shift2d_est.cxx │ │ │ ├── test_similarity_from_matches.cxx │ │ │ └── test_template_include.cxx │ ├── rsdl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── rsdl_bins+2.double.int-.cxx │ │ │ ├── rsdl_bins+2.float.int-.cxx │ │ │ ├── rsdl_bins+3.double.int-.cxx │ │ │ ├── rsdl_bins+3.float.int-.cxx │ │ │ ├── rsdl_bins_2d+double.int-.cxx │ │ │ ├── rsdl_borgefors+vnl_vector_fixed+double.2--.cxx │ │ │ └── vbl_smart_ptr+rsdl_kd_tree-.cxx │ │ ├── knownproblems.txt │ │ ├── rsdl_bins.h │ │ ├── rsdl_bins.txx │ │ ├── rsdl_bins_2d.h │ │ ├── rsdl_bins_2d.txx │ │ ├── rsdl_borgefors.h │ │ ├── rsdl_borgefors.txx │ │ ├── rsdl_bounding_box.cxx │ │ ├── rsdl_bounding_box.h │ │ ├── rsdl_dist.cxx │ │ ├── rsdl_dist.h │ │ ├── rsdl_fwd.h │ │ ├── rsdl_kd_tree.cxx │ │ ├── rsdl_kd_tree.h │ │ ├── rsdl_kd_tree_sptr.h │ │ ├── rsdl_point.cxx │ │ ├── rsdl_point.h │ │ └── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_bins.cxx │ │ │ ├── test_bins_2d.cxx │ │ │ ├── test_borgefors.cxx │ │ │ ├── test_bounding_box.cxx │ │ │ ├── test_dist.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_kd_tree.cxx │ │ │ ├── test_point.cxx │ │ │ └── test_template_include.cxx │ └── rtvl │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ ├── rtvl_refine+2-.cxx │ │ ├── rtvl_refine+3-.cxx │ │ ├── rtvl_tensor+2-.cxx │ │ ├── rtvl_tensor+3-.cxx │ │ ├── rtvl_tensor_d+2-.cxx │ │ ├── rtvl_tensor_d+3-.cxx │ │ ├── rtvl_vote+2-.cxx │ │ ├── rtvl_vote+3-.cxx │ │ ├── rtvl_votee+2-.cxx │ │ ├── rtvl_votee+3-.cxx │ │ ├── rtvl_votee_d+2-.cxx │ │ ├── rtvl_votee_d+3-.cxx │ │ ├── rtvl_voter+2-.cxx │ │ ├── rtvl_voter+3-.cxx │ │ ├── rtvl_weight_original+2-.cxx │ │ ├── rtvl_weight_original+3-.cxx │ │ ├── rtvl_weight_smooth+2-.cxx │ │ └── rtvl_weight_smooth+3-.cxx │ │ ├── examples │ │ ├── CMakeLists.txt │ │ └── rtvl_hello.cxx │ │ ├── rtvl_intpow.hxx │ │ ├── rtvl_license_1_0.txt │ │ ├── rtvl_refine.hxx │ │ ├── rtvl_refine.txx │ │ ├── rtvl_tensor.hxx │ │ ├── rtvl_tensor.txx │ │ ├── rtvl_tensor_d.hxx │ │ ├── rtvl_tensor_d.txx │ │ ├── rtvl_terms.hxx │ │ ├── rtvl_tokens.hxx │ │ ├── rtvl_vote.hxx │ │ ├── rtvl_vote.txx │ │ ├── rtvl_votee.hxx │ │ ├── rtvl_votee.txx │ │ ├── rtvl_votee_d.hxx │ │ ├── rtvl_votee_d.txx │ │ ├── rtvl_voter.hxx │ │ ├── rtvl_voter.txx │ │ ├── rtvl_weight.hxx │ │ ├── rtvl_weight_original.hxx │ │ ├── rtvl_weight_original.txx │ │ ├── rtvl_weight_smooth.hxx │ │ ├── rtvl_weight_smooth.txx │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── test_include.cxx │ │ └── test_template_include.cxx └── tbl │ ├── CMakeLists.txt │ ├── doc │ └── book │ │ ├── atexinfo.tex │ │ ├── awffonts.tex │ │ ├── book.texi │ │ ├── book_header.texi │ │ ├── chapter_examples.texi │ │ ├── chapter_intro.texi │ │ ├── chapter_vepl.texi │ │ └── chapter_vipl.texi │ ├── section │ └── section.h │ ├── vepl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vepl_convert+double-.cxx │ │ ├── vepl_convert+float-.cxx │ │ ├── vepl_convert+int-.cxx │ │ ├── vepl_convert+short-.cxx │ │ └── vepl_convert+uchar-.cxx │ ├── accessors │ │ ├── vipl_accessors_vil_image_view_base.h │ │ └── vipl_accessors_vil_image_view_base.hxx │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── example1_threshold.cxx │ │ ├── example2_threshold.cxx │ │ ├── example3_threshold.cxx │ │ ├── example4_threshold.cxx │ │ ├── example_add_random_noise.cxx │ │ ├── example_convert.cxx │ │ ├── example_dilate_disk.cxx │ │ ├── example_erode_disk.cxx │ │ ├── example_gradient_mag.cxx │ │ ├── example_histogram.cxx │ │ ├── example_median.cxx │ │ ├── example_sobel.cxx │ │ ├── example_std_dev.cxx │ │ └── example_x_gradient.cxx │ ├── introduction_doxy.txt │ ├── section │ │ └── vipl_filterable_section_container_generator_vil_image_view_base.hxx │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ ├── test_driver.h │ │ ├── test_include.cxx │ │ ├── test_template_include.cxx │ │ ├── vepl_test_dilate_disk.cxx │ │ ├── vepl_test_dyadic.cxx │ │ ├── vepl_test_erode_disk.cxx │ │ ├── vepl_test_gaussian_convolution.cxx │ │ ├── vepl_test_gradient_dir.cxx │ │ ├── vepl_test_gradient_mag.cxx │ │ ├── vepl_test_median.cxx │ │ ├── vepl_test_moment.cxx │ │ ├── vepl_test_monadic.cxx │ │ ├── vepl_test_sobel.cxx │ │ ├── vepl_test_threshold.cxx │ │ ├── vepl_test_x_gradient.cxx │ │ └── vepl_test_y_gradient.cxx │ ├── vepl_add_random_noise.cxx │ ├── vepl_add_random_noise.h │ ├── vepl_convert.h │ ├── vepl_convert.hxx │ ├── vepl_dilate_disk.cxx │ ├── vepl_dilate_disk.h │ ├── vepl_dyadic.cxx │ ├── vepl_dyadic.h │ ├── vepl_erode_disk.cxx │ ├── vepl_erode_disk.h │ ├── vepl_gaussian_convolution.cxx │ ├── vepl_gaussian_convolution.h │ ├── vepl_gradient_dir.cxx │ ├── vepl_gradient_dir.h │ ├── vepl_gradient_mag.cxx │ ├── vepl_gradient_mag.h │ ├── vepl_histogram.cxx │ ├── vepl_histogram.h │ ├── vepl_median.cxx │ ├── vepl_median.h │ ├── vepl_moment.cxx │ ├── vepl_moment.h │ ├── vepl_monadic.cxx │ ├── vepl_monadic.h │ ├── vepl_sobel.cxx │ ├── vepl_sobel.h │ ├── vepl_threshold.cxx │ ├── vepl_threshold.h │ ├── vepl_x_gradient.cxx │ ├── vepl_x_gradient.h │ ├── vepl_y_gradient.cxx │ └── vepl_y_gradient.h │ └── vipl │ ├── CMakeLists.txt │ ├── accessors │ ├── vipl_accessors_vcl_vector.h │ ├── vipl_accessors_vcl_vector.hxx │ ├── vipl_accessors_vil_image_view.h │ └── vipl_accessors_vil_image_view.hxx │ ├── examples │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── example1_threshold.cxx │ ├── example2_threshold.cxx │ ├── example3_threshold.cxx │ ├── example_add_random_noise.cxx │ ├── example_convert.cxx │ ├── example_dilate_disk.cxx │ ├── example_erode_disk.cxx │ ├── example_gaussian_convolution.cxx │ ├── example_gradient_mag.cxx │ ├── example_histogram.cxx │ ├── example_histogram2.cxx │ ├── example_median.cxx │ ├── example_sobel.cxx │ ├── example_std_dev.cxx │ └── example_x_gradient.cxx │ ├── filter │ ├── vipl_filter.h │ ├── vipl_filter.hxx │ ├── vipl_filter_2d.h │ ├── vipl_filter_2d.hxx │ ├── vipl_filter_abs.cxx │ ├── vipl_filter_abs.h │ ├── vipl_filter_helper.h │ └── vipl_trivial_pixeliter.h │ ├── introduction_doxy.txt │ ├── section │ ├── vipl_filterable_section_container_generator_vcl_vector.hxx │ ├── vipl_filterable_section_container_generator_vil_image_view.hxx │ ├── vipl_section_container.h │ ├── vipl_section_container.hxx │ ├── vipl_section_descriptor.h │ ├── vipl_section_descriptor.hxx │ ├── vipl_section_descriptor_2d.h │ ├── vipl_section_descriptor_2d.hxx │ ├── vipl_section_iterator.h │ └── vipl_section_iterator.hxx │ ├── tests │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── test_driver.cxx │ ├── test_driver.h │ ├── test_include.cxx │ ├── test_template_include.cxx │ ├── vipl_test_erode_disk.cxx │ ├── vipl_test_gaussian_convolution.cxx │ ├── vipl_test_histogram.cxx │ └── vipl_test_threshold.cxx │ ├── vipl_add_random_noise.h │ ├── vipl_add_random_noise.hxx │ ├── vipl_convert.h │ ├── vipl_convert.hxx │ ├── vipl_dilate_disk.h │ ├── vipl_dilate_disk.hxx │ ├── vipl_dyadic.h │ ├── vipl_dyadic.hxx │ ├── vipl_erode_disk.h │ ├── vipl_erode_disk.hxx │ ├── vipl_gaussian_convolution.h │ ├── vipl_gaussian_convolution.hxx │ ├── vipl_gradient_dir.h │ ├── vipl_gradient_dir.hxx │ ├── vipl_gradient_mag.h │ ├── vipl_gradient_mag.hxx │ ├── vipl_histogram.h │ ├── vipl_histogram.hxx │ ├── vipl_median.h │ ├── vipl_median.hxx │ ├── vipl_moment.h │ ├── vipl_moment.hxx │ ├── vipl_monadic.h │ ├── vipl_monadic.hxx │ ├── vipl_sobel.h │ ├── vipl_sobel.hxx │ ├── vipl_threshold.h │ ├── vipl_threshold.hxx │ ├── vipl_with_section │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vipl_accessors_section+int.2-.cxx │ │ ├── vipl_accessors_section+uchar.2-.cxx │ │ ├── vipl_accessors_section+vil1_rgb+uchar-.2-.cxx │ │ ├── vipl_erode_disk+section+uchar.2-.section+uchar.2-.uchar.uchar-.cxx │ │ ├── vipl_filter_2d+section+uchar.2-.section+int.2-.uchar.int-.cxx │ │ ├── vipl_filter_2d+section+uchar.2-.section+uchar.2-.uchar.uchar-.cxx │ │ ├── vipl_filter_2d+section+uchar.2-.vcl_vector+uint-.uchar.uint-.cxx │ │ ├── vipl_filter_2d+section+vil1_rgb+uchar-.2-.section+vil1_rgb+uchar-.2-.vil1_rgb+uchar-.vil1_rgb+uchar--.cxx │ │ ├── vipl_histogram+section+uchar.2-.section+int.2-.uchar.int-.cxx │ │ ├── vipl_histogram+section+uchar.2-.vcl_vector+uint-.uchar.uint-.cxx │ │ ├── vipl_threshold+section+uchar.2-.section+uchar.2-.uchar.uchar-.cxx │ │ └── vipl_x_gradient+section+vil1_rgb+uchar-.2-.section+vil1_rgb+uchar-.2-.vil1_rgb+uchar-.vil1_rgb+uchar--.cxx │ ├── accessors │ │ ├── vipl_accessors_section.h │ │ └── vipl_accessors_section.hxx │ └── vipl_filterable_section_container_generator_section.hxx │ ├── vipl_with_vbl_array_2d │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vipl_accessors_vbl_array_2d+uchar-.cxx │ │ ├── vipl_filter_2d+vbl_array_2d+uchar-.vbl_array_2d+uchar-.uchar.uchar-.cxx │ │ ├── vipl_gradient_mag+vbl_array_2d+uchar-.vbl_array_2d+uchar-.uchar.uchar-.cxx │ │ └── vipl_sobel+vbl_array_2d+uchar-.vbl_array_2d+uchar-.uchar.uchar-.cxx │ ├── accessors │ │ ├── vipl_accessors_vbl_array_2d.h │ │ └── vipl_accessors_vbl_array_2d.hxx │ └── vipl_filterable_section_container_generator_vbl_array_2d.hxx │ ├── vipl_with_vnl_matrix │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vipl_accessors_vnl_matrix+uchar-.cxx │ │ ├── vipl_accessors_vnl_vector+uint-.cxx │ │ ├── vipl_filter_2d+vil1_image.vnl_vector+uint-.uchar.uint.cxx │ │ ├── vipl_filter_2d+vnl_matrix+uchar-.vnl_matrix+uchar-.uchar.uchar-.cxx │ │ ├── vipl_gaussian_convolution+vnl_matrix+uchar-.vnl_matrix+uchar-.uchar.uchar-.cxx │ │ ├── vipl_histogram+vil1_image.vnl_vector+uint-.uchar.uint-.cxx │ │ ├── vipl_median+vnl_matrix+uchar-.vnl_matrix+uchar-.uchar.uchar-.cxx │ │ └── vipl_threshold+vnl_matrix+uchar-.vnl_matrix+uchar-.uchar.uchar-.cxx │ ├── accessors │ │ ├── vipl_accessors_vnl_matrix.h │ │ ├── vipl_accessors_vnl_matrix.hxx │ │ ├── vipl_accessors_vnl_vector.h │ │ └── vipl_accessors_vnl_vector.hxx │ ├── vipl_filterable_section_container_generator_vnl_matrix.hxx │ └── vipl_filterable_section_container_generator_vnl_vector.hxx │ ├── vipl_x_gradient.h │ ├── vipl_x_gradient.hxx │ ├── vipl_y_gradient.h │ └── vipl_y_gradient.hxx ├── core ├── CMakeLists.txt ├── bin │ ├── .NoDartCoverage │ ├── FrostAPI.pm │ ├── buildlog_parser.pl │ ├── check_consistency │ ├── check_dependencies │ ├── check_dsp │ ├── check_malindentation │ ├── extract_all_doxygen_docs │ ├── fix-builds │ ├── makein │ ├── ref_to_sptr.pl │ ├── sync_co.sh │ ├── test_includes.pl │ ├── vgui_make_sptr.pl │ ├── vxl_convert.pl │ ├── vxl_demangle │ ├── vxl_env │ ├── vxl_filter.pl │ ├── vxl_make_dll_h.pl │ ├── vxl_rm_copyright_filt.pl │ └── vxl_version_update.sh ├── doc │ ├── .NoDartCoverage │ ├── CHANGES.txt │ ├── Doxyfile_for_vxl_doc_rules │ ├── README │ ├── book │ │ ├── appendix_adding_to_vnl_algo.texi │ │ ├── appendix_build.texi │ │ ├── appendix_coding_standards.texi │ │ ├── appendix_structure.texi │ │ ├── appendix_vsl_for_developers.texi │ │ ├── awffonts.tex │ │ ├── book.css │ │ ├── book.texi │ │ ├── book_header.texi │ │ ├── chapter_examples.texi │ │ ├── chapter_intro.texi │ │ ├── chapter_vbl.texi │ │ ├── chapter_vcl.texi │ │ ├── chapter_vcsl.texi │ │ ├── chapter_vgl.texi │ │ ├── chapter_vgui.texi │ │ ├── chapter_vidl.texi │ │ ├── chapter_vil.texi │ │ ├── chapter_vil1.texi │ │ ├── chapter_vnl.texi │ │ ├── chapter_vpdl.texi │ │ ├── chapter_vpgl.texi │ │ ├── chapter_vsl.texi │ │ ├── chapter_vul.texi │ │ ├── choice-color.eps │ │ ├── choice-color.jpg │ │ ├── choice-color.pdf │ │ ├── deck-tableau.eps │ │ ├── deck-tableau.jpg │ │ ├── deck-tableau.pdf │ │ ├── dialog-example.eps │ │ ├── dialog-example.jpg │ │ ├── dialog-example.pdf │ │ ├── dialog2-example.eps │ │ ├── dialog2-example.jpg │ │ ├── dialog2-example.pdf │ │ ├── display-2d-annotated.eps │ │ ├── display-2d-annotated.jpg │ │ ├── display-2d-annotated.pdf │ │ ├── epipolar.eps │ │ ├── homography.eps │ │ ├── homography.fig │ │ ├── homography.pdf │ │ ├── homography.png │ │ ├── image-tableau-with-status.eps │ │ ├── image-tableau-with-status.jpg │ │ ├── image-tableau-with-status.pdf │ │ ├── lena.eps │ │ ├── lena.pdf │ │ ├── lena.png │ │ ├── lvcs.eps │ │ ├── makefile │ │ ├── menu-example.eps │ │ ├── menu-example.jpg │ │ ├── menu-example.pdf │ │ ├── multiple-panes.eps │ │ ├── multiple-panes.jpg │ │ ├── multiple-panes.pdf │ │ ├── perspectivecamera.eps │ │ ├── polygon-scan.eps │ │ ├── polygon-scan.fig │ │ ├── polygon-scan.pdf │ │ ├── polygon-scan.png │ │ ├── popupmenu-example.eps │ │ ├── popupmenu-example.jpg │ │ ├── popupmenu-example.pdf │ │ ├── range-display.eps │ │ ├── range-display.pdf │ │ ├── range-display.png │ │ ├── rational_adjust.eps │ │ ├── rosenbrock.eps │ │ ├── rosenbrock.pdf │ │ ├── rosenbrock.png │ │ ├── soview-hierarchy.eps │ │ ├── soview-hierarchy.jpg │ │ ├── soview-hierarchy.pdf │ │ ├── tableau-hierarchy-annotated.eps │ │ ├── tableau-hierarchy-annotated.jpg │ │ ├── tableau-hierarchy-annotated.pdf │ │ ├── threeD-example.eps │ │ ├── threeD-example.jpg │ │ ├── threeD-example.pdf │ │ └── vpgl_classes.eps │ ├── meetings │ │ ├── 2003-meeting-notes.txt │ │ ├── 2003-meeting-plan.txt │ │ ├── Jan2007-teleconference-notes.txt │ │ ├── Orlando-meeting-notes.tex │ │ ├── Providence-meeting-notes.txt │ │ ├── Zurich-meeting-notes.txt │ │ └── vil2talk.ppt │ ├── presentations │ │ └── vxl_overview_fww.ppt │ ├── vxl_doc_rules.cxx │ ├── vxl_doc_rules.h │ └── vxl_doxy.pl ├── examples │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── create_image_vil.cxx │ └── vnl_calc │ │ ├── CMakeLists.txt │ │ ├── introduction_doxy.txt │ │ └── vnl_calc.cxx ├── testlib │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── introduction_doxy.txt │ ├── testlib_main.cxx │ ├── testlib_register.h │ ├── testlib_root_dir.cxx │ ├── testlib_root_dir.h │ ├── testlib_test.cxx │ ├── testlib_test.h │ └── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_args.cxx │ │ ├── test_assert.cxx │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_link.cxx │ │ ├── test_macros.cxx │ │ └── test_root_dir.cxx ├── tests │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── make_test_config.pl │ ├── test_build_info.cxx │ ├── test_build_info.h.in │ ├── test_config.cxx │ ├── test_driver.cxx │ ├── test_include.cxx │ └── vxl_echo.cxx ├── vbl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vbl_array_1d+double-.cxx │ │ ├── vbl_array_1d+float-.cxx │ │ ├── vbl_array_1d+ushort-.cxx │ │ ├── vbl_array_2d+bool-.cxx │ │ ├── vbl_array_2d+double-.cxx │ │ ├── vbl_array_2d+float-.cxx │ │ ├── vbl_array_2d+int-.cxx │ │ ├── vbl_array_2d+short-.cxx │ │ ├── vbl_array_2d+uchar-.cxx │ │ ├── vbl_array_2d+uint-.cxx │ │ ├── vbl_array_3d+bool-.cxx │ │ ├── vbl_array_3d+double-.cxx │ │ ├── vbl_array_3d+float-.cxx │ │ ├── vbl_array_3d+int-.cxx │ │ ├── vbl_array_3d+uchar-.cxx │ │ ├── vbl_array_3d+uint-.cxx │ │ ├── vbl_array_3d+ushort-.cxx │ │ ├── vbl_array_3d+vcl_string-.cxx │ │ ├── vbl_array_3d+void~-.cxx │ │ ├── vbl_attributes+double-.cxx │ │ ├── vbl_attributes+float-.cxx │ │ ├── vbl_attributes+uint-.cxx │ │ ├── vbl_big_sparse_array_3d+double-.cxx │ │ ├── vbl_bounding_box+double.2-.cxx │ │ ├── vbl_bounding_box+double.3-.cxx │ │ ├── vbl_bounding_box+float.2-.cxx │ │ ├── vbl_bounding_box+int.2-.cxx │ │ ├── vbl_local_minima+double-.cxx │ │ ├── vbl_local_minima+float-.cxx │ │ ├── vbl_local_minima+uint-.cxx │ │ ├── vbl_quadruple+int.int.int.int-.cxx │ │ ├── vbl_sparse_array_1d+double-.cxx │ │ ├── vbl_sparse_array_1d+int-.cxx │ │ ├── vbl_sparse_array_2d+double-.cxx │ │ ├── vbl_sparse_array_2d+int-.cxx │ │ ├── vbl_sparse_array_3d+double-.cxx │ │ ├── vbl_sparse_array_3d+int-.cxx │ │ ├── vbl_sparse_array_3d+void~-.cxx │ │ ├── vbl_triple+double.int.int-.cxx │ │ ├── vbl_triple+float.float.float-.cxx │ │ ├── vbl_triple+int.int.int-.cxx │ │ └── vbl_triple+uint.uint.uint-.cxx │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ └── smartptr-instances.cxx │ │ ├── vbl_smart_ptr_example.cxx │ │ └── vbl_smart_ptr_example.h │ ├── introduction_doxy.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vbl_io_array_1d+double-.cxx │ │ │ ├── vbl_io_array_1d+float-.cxx │ │ │ ├── vbl_io_array_1d+ushort-.cxx │ │ │ ├── vbl_io_array_1d+vcl_string-.cxx │ │ │ ├── vbl_io_array_2d+bool-.cxx │ │ │ ├── vbl_io_array_2d+double-.cxx │ │ │ ├── vbl_io_array_2d+float-.cxx │ │ │ ├── vbl_io_array_2d+int-.cxx │ │ │ ├── vbl_io_array_2d+uchar-.cxx │ │ │ ├── vbl_io_array_2d+uint-.cxx │ │ │ ├── vbl_io_array_2d+vcl_vector+double--.cxx │ │ │ ├── vbl_io_array_2d+vcl_vector+float--.cxx │ │ │ ├── vbl_io_array_2d+vcl_vector+vcl_pair+int.double---.cxx │ │ │ ├── vbl_io_array_2d+vcl_vector+vcl_pair+int.float---.cxx │ │ │ ├── vbl_io_array_2d+vcl_vector+vcl_pair+long.double---.cxx │ │ │ ├── vbl_io_array_2d+vcl_vector+vcl_pair+long.float---.cxx │ │ │ ├── vbl_io_array_3d+double-.cxx │ │ │ ├── vbl_io_array_3d+float-.cxx │ │ │ ├── vbl_io_array_3d+int-.cxx │ │ │ ├── vbl_io_bounding_box+double.2-.cxx │ │ │ ├── vbl_io_bounding_box+double.3-.cxx │ │ │ ├── vbl_io_bounding_box+float.2-.cxx │ │ │ ├── vbl_io_bounding_box+int.2-.cxx │ │ │ ├── vbl_io_sparse_array+double.uint-.cxx │ │ │ ├── vbl_io_sparse_array+double.vcl_pair+uint.uint--.cxx │ │ │ ├── vbl_io_sparse_array+int.uint-.cxx │ │ │ ├── vbl_io_sparse_array+int.vcl_pair+uint.uint--.cxx │ │ │ ├── vbl_io_triple+double.int.int-.cxx │ │ │ ├── vsl_vector_io+vbl_triple+double.int.int--.cxx │ │ │ ├── vsl_vector_io+vbl_triple+int.int.int--.cxx │ │ │ ├── vsl_vector_io+vbl_triple+uint.uint.uint--.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vbl_triple+double.int.int---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vbl_triple+int.int.int---.cxx │ │ │ └── vsl_vector_io+vcl_vector+vbl_triple+uint.uint.uint---.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── golden_test_vbl_io.bvl │ │ │ ├── golden_test_vbl_io.cxx │ │ │ ├── test_array_1d_io.cxx │ │ │ ├── test_array_2d_io.cxx │ │ │ ├── test_array_3d_io.cxx │ │ │ ├── test_bounding_box_io.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_smart_ptr_io.cxx │ │ │ ├── test_sparse_array_io.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_triple_io.cxx │ │ │ ├── vbl_io_test_classes.cxx │ │ │ └── vbl_io_test_classes.h │ │ ├── vbl_io_array_1d.h │ │ ├── vbl_io_array_1d.hxx │ │ ├── vbl_io_array_2d.h │ │ ├── vbl_io_array_2d.hxx │ │ ├── vbl_io_array_3d.h │ │ ├── vbl_io_array_3d.hxx │ │ ├── vbl_io_bounding_box.h │ │ ├── vbl_io_bounding_box.hxx │ │ ├── vbl_io_quadruple.h │ │ ├── vbl_io_quadruple.hxx │ │ ├── vbl_io_smart_ptr.h │ │ ├── vbl_io_smart_ptr.hxx │ │ ├── vbl_io_sparse_array_1d.h │ │ ├── vbl_io_sparse_array_2d.h │ │ ├── vbl_io_sparse_array_3d.h │ │ ├── vbl_io_sparse_array_base.h │ │ ├── vbl_io_sparse_array_base.hxx │ │ ├── vbl_io_triple.h │ │ └── vbl_io_triple.hxx │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_template_include.cxx │ │ ├── vbl_test_array.cxx │ │ ├── vbl_test_array_x.cxx │ │ ├── vbl_test_array_x.h │ │ ├── vbl_test_attributes.cxx │ │ ├── vbl_test_batch_compact_multimap.cxx │ │ ├── vbl_test_batch_multimap.cxx │ │ ├── vbl_test_bit_array.cxx │ │ ├── vbl_test_bounding_box.cxx │ │ ├── vbl_test_classes.cxx │ │ ├── vbl_test_classes.h │ │ ├── vbl_test_disjoint_sets.cxx │ │ ├── vbl_test_local_minima.cxx │ │ ├── vbl_test_qsort.cxx │ │ ├── vbl_test_quadruple.cxx │ │ ├── vbl_test_ref_count.cxx │ │ ├── vbl_test_scoped_ptr.cxx │ │ ├── vbl_test_shared_pointer.cxx │ │ ├── vbl_test_smart_ptr.cxx │ │ ├── vbl_test_sparse_array_2d.cxx │ │ ├── vbl_test_sparse_array_3d.cxx │ │ └── vbl_test_triple.cxx │ ├── vbl_array_1d.h │ ├── vbl_array_1d.hxx │ ├── vbl_array_2d.h │ ├── vbl_array_2d.hxx │ ├── vbl_array_3d.h │ ├── vbl_array_3d.hxx │ ├── vbl_attributes.h │ ├── vbl_attributes.hxx │ ├── vbl_batch_compact_multimap.h │ ├── vbl_batch_multimap.h │ ├── vbl_big_sparse_array_3d.h │ ├── vbl_big_sparse_array_3d.hxx │ ├── vbl_bit_array_2d.cxx │ ├── vbl_bit_array_2d.h │ ├── vbl_bit_array_3d.cxx │ ├── vbl_bit_array_3d.h │ ├── vbl_bool_ostream.cxx │ ├── vbl_bool_ostream.h │ ├── vbl_bounding_box.h │ ├── vbl_bounding_box.hxx │ ├── vbl_checked_delete.h │ ├── vbl_disjoint_sets.cxx │ ├── vbl_disjoint_sets.h │ ├── vbl_edge.cxx │ ├── vbl_edge.h │ ├── vbl_fwd.h │ ├── vbl_graph_partition.cxx │ ├── vbl_graph_partition.h │ ├── vbl_local_minima.h │ ├── vbl_local_minima.hxx │ ├── vbl_qsort.cxx │ ├── vbl_qsort.h │ ├── vbl_quadruple.h │ ├── vbl_quadruple.hxx │ ├── vbl_ref_count.h │ ├── vbl_scoped_ptr.h │ ├── vbl_shared_pointer.h │ ├── vbl_smart_ptr.h │ ├── vbl_smart_ptr.hxx │ ├── vbl_sort.cxx │ ├── vbl_sort.h │ ├── vbl_sort.hxx │ ├── vbl_sparse_array_1d.h │ ├── vbl_sparse_array_1d.hxx │ ├── vbl_sparse_array_2d.h │ ├── vbl_sparse_array_2d.hxx │ ├── vbl_sparse_array_3d.h │ ├── vbl_sparse_array_3d.hxx │ ├── vbl_sparse_array_base.h │ ├── vbl_sparse_array_base.hxx │ ├── vbl_triple.h │ └── vbl_triple.hxx ├── vcsl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vbl_smart_ptr+vcsl_angle-.cxx │ │ ├── vbl_smart_ptr+vcsl_angle_unit-.cxx │ │ ├── vbl_smart_ptr+vcsl_axis-.cxx │ │ ├── vbl_smart_ptr+vcsl_cartesian-.cxx │ │ ├── vbl_smart_ptr+vcsl_cartesian_2d-.cxx │ │ ├── vbl_smart_ptr+vcsl_cartesian_3d-.cxx │ │ ├── vbl_smart_ptr+vcsl_composition-.cxx │ │ ├── vbl_smart_ptr+vcsl_coordinate_system-.cxx │ │ ├── vbl_smart_ptr+vcsl_cylindrical-.cxx │ │ ├── vbl_smart_ptr+vcsl_cylindrical_to_cartesian_3d-.cxx │ │ ├── vbl_smart_ptr+vcsl_degree-.cxx │ │ ├── vbl_smart_ptr+vcsl_dimension-.cxx │ │ ├── vbl_smart_ptr+vcsl_displacement-.cxx │ │ ├── vbl_smart_ptr+vcsl_geocentric-.cxx │ │ ├── vbl_smart_ptr+vcsl_geodetic-.cxx │ │ ├── vbl_smart_ptr+vcsl_geographic-.cxx │ │ ├── vbl_smart_ptr+vcsl_graph-.cxx │ │ ├── vbl_smart_ptr+vcsl_lambertian-.cxx │ │ ├── vbl_smart_ptr+vcsl_length-.cxx │ │ ├── vbl_smart_ptr+vcsl_length_unit-.cxx │ │ ├── vbl_smart_ptr+vcsl_matrix-.cxx │ │ ├── vbl_smart_ptr+vcsl_matrix_param-.cxx │ │ ├── vbl_smart_ptr+vcsl_meter-.cxx │ │ ├── vbl_smart_ptr+vcsl_micron-.cxx │ │ ├── vbl_smart_ptr+vcsl_millimeter-.cxx │ │ ├── vbl_smart_ptr+vcsl_perspective-.cxx │ │ ├── vbl_smart_ptr+vcsl_polar-.cxx │ │ ├── vbl_smart_ptr+vcsl_radian-.cxx │ │ ├── vbl_smart_ptr+vcsl_rotation-.cxx │ │ ├── vbl_smart_ptr+vcsl_scale-.cxx │ │ ├── vbl_smart_ptr+vcsl_spatial-.cxx │ │ ├── vbl_smart_ptr+vcsl_spatial_transformation-.cxx │ │ ├── vbl_smart_ptr+vcsl_spherical-.cxx │ │ ├── vbl_smart_ptr+vcsl_spheroid-.cxx │ │ ├── vbl_smart_ptr+vcsl_translation-.cxx │ │ ├── vbl_smart_ptr+vcsl_unit-.cxx │ │ └── vbl_smart_ptr+vcsl_utm-.cxx │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── example1.cxx │ │ └── vcsl_tutor.cxx │ ├── introduction_doxy.txt │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_cartesian_2d.cxx │ │ ├── test_cartesian_3d.cxx │ │ ├── test_composition.cxx │ │ ├── test_cylindrical.cxx │ │ ├── test_degree.cxx │ │ ├── test_displacement.cxx │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_meter.cxx │ │ ├── test_polar.cxx │ │ ├── test_radian.cxx │ │ ├── test_rotation.cxx │ │ ├── test_scale.cxx │ │ ├── test_spherical.cxx │ │ ├── test_transformation_graph.cxx │ │ └── test_translation.cxx │ ├── vcsl_angle.cxx │ ├── vcsl_angle.h │ ├── vcsl_angle_sptr.h │ ├── vcsl_angle_unit.cxx │ ├── vcsl_angle_unit.h │ ├── vcsl_angle_unit_sptr.h │ ├── vcsl_axis.cxx │ ├── vcsl_axis.h │ ├── vcsl_axis_sptr.h │ ├── vcsl_cartesian.h │ ├── vcsl_cartesian_2d.cxx │ ├── vcsl_cartesian_2d.h │ ├── vcsl_cartesian_2d_sptr.h │ ├── vcsl_cartesian_3d.cxx │ ├── vcsl_cartesian_3d.h │ ├── vcsl_cartesian_3d_sptr.h │ ├── vcsl_cartesian_sptr.h │ ├── vcsl_composition.cxx │ ├── vcsl_composition.h │ ├── vcsl_composition_sptr.h │ ├── vcsl_coordinate_system.cxx │ ├── vcsl_coordinate_system.h │ ├── vcsl_coordinate_system_sptr.h │ ├── vcsl_cylindrical.cxx │ ├── vcsl_cylindrical.h │ ├── vcsl_cylindrical_sptr.h │ ├── vcsl_cylindrical_to_cartesian_3d.cxx │ ├── vcsl_cylindrical_to_cartesian_3d.h │ ├── vcsl_cylindrical_to_cartesian_3d_sptr.h │ ├── vcsl_degree.cxx │ ├── vcsl_degree.h │ ├── vcsl_degree_sptr.h │ ├── vcsl_dimension.h │ ├── vcsl_dimension_sptr.h │ ├── vcsl_displacement.cxx │ ├── vcsl_displacement.h │ ├── vcsl_displacement_sptr.h │ ├── vcsl_geocentric.cxx │ ├── vcsl_geocentric.h │ ├── vcsl_geocentric_sptr.h │ ├── vcsl_geodetic.h │ ├── vcsl_geodetic_sptr.h │ ├── vcsl_geographic.cxx │ ├── vcsl_geographic.h │ ├── vcsl_geographic_sptr.h │ ├── vcsl_graph.cxx │ ├── vcsl_graph.h │ ├── vcsl_graph_sptr.h │ ├── vcsl_lambertian.cxx │ ├── vcsl_lambertian.h │ ├── vcsl_lambertian_sptr.h │ ├── vcsl_length.cxx │ ├── vcsl_length.h │ ├── vcsl_length_sptr.h │ ├── vcsl_length_unit.cxx │ ├── vcsl_length_unit.h │ ├── vcsl_length_unit_sptr.h │ ├── vcsl_matrix.cxx │ ├── vcsl_matrix.h │ ├── vcsl_matrix_param.h │ ├── vcsl_matrix_param_sptr.h │ ├── vcsl_matrix_sptr.h │ ├── vcsl_meter.cxx │ ├── vcsl_meter.h │ ├── vcsl_meter_sptr.h │ ├── vcsl_micron.cxx │ ├── vcsl_micron.h │ ├── vcsl_micron_sptr.h │ ├── vcsl_millimeter.cxx │ ├── vcsl_millimeter.h │ ├── vcsl_millimeter_sptr.h │ ├── vcsl_perspective.cxx │ ├── vcsl_perspective.h │ ├── vcsl_perspective_sptr.h │ ├── vcsl_polar.cxx │ ├── vcsl_polar.h │ ├── vcsl_polar_sptr.h │ ├── vcsl_radian.cxx │ ├── vcsl_radian.h │ ├── vcsl_radian_sptr.h │ ├── vcsl_rotation.cxx │ ├── vcsl_rotation.h │ ├── vcsl_rotation_sptr.h │ ├── vcsl_scale.cxx │ ├── vcsl_scale.h │ ├── vcsl_scale_sptr.h │ ├── vcsl_spatial.cxx │ ├── vcsl_spatial.h │ ├── vcsl_spatial_sptr.h │ ├── vcsl_spatial_transformation.cxx │ ├── vcsl_spatial_transformation.h │ ├── vcsl_spatial_transformation_sptr.h │ ├── vcsl_spherical.cxx │ ├── vcsl_spherical.h │ ├── vcsl_spherical_sptr.h │ ├── vcsl_spheroid.cxx │ ├── vcsl_spheroid.h │ ├── vcsl_spheroid_sptr.h │ ├── vcsl_translation.cxx │ ├── vcsl_translation.h │ ├── vcsl_translation_sptr.h │ ├── vcsl_unit.h │ ├── vcsl_unit_sptr.h │ ├── vcsl_utm.cxx │ ├── vcsl_utm.h │ └── vcsl_utm_sptr.h ├── vgl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vgl_area+double-.cxx │ │ ├── vgl_area+float-.cxx │ │ ├── vgl_bounding_box+double-.cxx │ │ ├── vgl_bounding_box+float-.cxx │ │ ├── vgl_box_2d+double-.cxx │ │ ├── vgl_box_2d+float-.cxx │ │ ├── vgl_box_2d+int-.cxx │ │ ├── vgl_box_2d+uint-.cxx │ │ ├── vgl_box_3d+double-.cxx │ │ ├── vgl_box_3d+float-.cxx │ │ ├── vgl_box_3d+int-.cxx │ │ ├── vgl_clip+double-.cxx │ │ ├── vgl_clip+float-.cxx │ │ ├── vgl_closest_point+double-.cxx │ │ ├── vgl_closest_point+float-.cxx │ │ ├── vgl_closest_point+int-.cxx │ │ ├── vgl_conic+double-.cxx │ │ ├── vgl_conic+float-.cxx │ │ ├── vgl_conic_segment_2d+double-.cxx │ │ ├── vgl_conic_segment_2d+float-.cxx │ │ ├── vgl_convex+double-.cxx │ │ ├── vgl_convex+float-.cxx │ │ ├── vgl_cylinder+double-.cxx │ │ ├── vgl_cylinder+float-.cxx │ │ ├── vgl_distance+double-.cxx │ │ ├── vgl_distance+float-.cxx │ │ ├── vgl_distance+int-.cxx │ │ ├── vgl_ellipse_scan_iterator+double-.cxx │ │ ├── vgl_ellipse_scan_iterator+float-.cxx │ │ ├── vgl_frustum_3d+double-.cxx │ │ ├── vgl_frustum_3d+float-.cxx │ │ ├── vgl_homg_line_2d+double-.cxx │ │ ├── vgl_homg_line_2d+float-.cxx │ │ ├── vgl_homg_line_2d+int-.cxx │ │ ├── vgl_homg_line_3d_2_points+double-.cxx │ │ ├── vgl_homg_line_3d_2_points+float-.cxx │ │ ├── vgl_homg_line_3d_2_points+int-.cxx │ │ ├── vgl_homg_plane_3d+double-.cxx │ │ ├── vgl_homg_plane_3d+float-.cxx │ │ ├── vgl_homg_plane_3d+int-.cxx │ │ ├── vgl_homg_point_1d+double-.cxx │ │ ├── vgl_homg_point_1d+float-.cxx │ │ ├── vgl_homg_point_1d+int-.cxx │ │ ├── vgl_homg_point_2d+double-.cxx │ │ ├── vgl_homg_point_2d+float-.cxx │ │ ├── vgl_homg_point_2d+int-.cxx │ │ ├── vgl_homg_point_2d+uint-.cxx │ │ ├── vgl_homg_point_3d+double-.cxx │ │ ├── vgl_homg_point_3d+float-.cxx │ │ ├── vgl_homg_point_3d+int-.cxx │ │ ├── vgl_infinite_line_3d+double-.cxx │ │ ├── vgl_infinite_line_3d+float-.cxx │ │ ├── vgl_infinite_line_3d+int-.cxx │ │ ├── vgl_intersection+double-.cxx │ │ ├── vgl_intersection+float-.cxx │ │ ├── vgl_intersection+int-.cxx │ │ ├── vgl_line_2d+double-.cxx │ │ ├── vgl_line_2d+float-.cxx │ │ ├── vgl_line_2d+int-.cxx │ │ ├── vgl_line_3d_2_points+double-.cxx │ │ ├── vgl_line_3d_2_points+float-.cxx │ │ ├── vgl_line_segment_2d+double-.cxx │ │ ├── vgl_line_segment_2d+float-.cxx │ │ ├── vgl_line_segment_2d+int-.cxx │ │ ├── vgl_line_segment_3d+double-.cxx │ │ ├── vgl_line_segment_3d+float-.cxx │ │ ├── vgl_lineseg_test+double-.cxx │ │ ├── vgl_lineseg_test+float-.cxx │ │ ├── vgl_plane_3d+double-.cxx │ │ ├── vgl_plane_3d+float-.cxx │ │ ├── vgl_plane_3d+int-.cxx │ │ ├── vgl_point_2d+double-.cxx │ │ ├── vgl_point_2d+float-.cxx │ │ ├── vgl_point_2d+int-.cxx │ │ ├── vgl_point_2d+uint-.cxx │ │ ├── vgl_point_3d+double-.cxx │ │ ├── vgl_point_3d+float-.cxx │ │ ├── vgl_point_3d+int-.cxx │ │ ├── vgl_polygon+double-.cxx │ │ ├── vgl_polygon+float-.cxx │ │ ├── vgl_polygon_scan_iterator+double-.cxx │ │ ├── vgl_polygon_scan_iterator+float-.cxx │ │ ├── vgl_polygon_test+double-.cxx │ │ ├── vgl_polygon_test+float-.cxx │ │ ├── vgl_ray_3d+double-.cxx │ │ ├── vgl_ray_3d+float-.cxx │ │ ├── vgl_ray_3d+int-.cxx │ │ ├── vgl_sphere_3d+double-.cxx │ │ ├── vgl_sphere_3d+float-.cxx │ │ ├── vgl_sphere_3d+int-.cxx │ │ ├── vgl_tolerance+double-.cxx │ │ ├── vgl_tolerance+float-.cxx │ │ ├── vgl_tolerance+int-.cxx │ │ ├── vgl_tolerance+uint-.cxx │ │ ├── vgl_triangle_scan_iterator+double-.cxx │ │ ├── vgl_triangle_scan_iterator+float-.cxx │ │ ├── vgl_triangle_test+double-.cxx │ │ ├── vgl_triangle_test+float-.cxx │ │ ├── vgl_vector_2d+double-.cxx │ │ ├── vgl_vector_2d+float-.cxx │ │ ├── vgl_vector_2d+int-.cxx │ │ ├── vgl_vector_2d+uint-.cxx │ │ ├── vgl_vector_3d+double-.cxx │ │ ├── vgl_vector_3d+float-.cxx │ │ ├── vgl_vector_3d+int-.cxx │ │ ├── vgl_vector_3d+uint-.cxx │ │ ├── vgl_window_scan_iterator+double-.cxx │ │ └── vgl_window_scan_iterator+float-.cxx │ ├── algo │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── compute_rigid_3d+double-.cxx │ │ │ ├── vgl_algo_intersection+double-.cxx │ │ │ ├── vgl_algo_intersection+float-.cxx │ │ │ ├── vgl_compute_similarity_3d+double-.cxx │ │ │ ├── vgl_conic_2d_regression+double-.cxx │ │ │ ├── vgl_conic_2d_regression+float-.cxx │ │ │ ├── vgl_convex_hull_2d+double-.cxx │ │ │ ├── vgl_convex_hull_2d+float-.cxx │ │ │ ├── vgl_ellipsoid_3d+double-.cxx │ │ │ ├── vgl_ellipsoid_3d+float-.cxx │ │ │ ├── vgl_fit_conics_2d+double-.cxx │ │ │ ├── vgl_fit_conics_2d+float-.cxx │ │ │ ├── vgl_fit_lines_2d+double-.cxx │ │ │ ├── vgl_fit_lines_2d+float-.cxx │ │ │ ├── vgl_fit_plane_3d+double-.cxx │ │ │ ├── vgl_fit_plane_3d+float-.cxx │ │ │ ├── vgl_fit_sphere_3d+double-.cxx │ │ │ ├── vgl_fit_sphere_3d+float-.cxx │ │ │ ├── vgl_h_matrix_1d+double-.cxx │ │ │ ├── vgl_h_matrix_1d+float-.cxx │ │ │ ├── vgl_h_matrix_2d+double-.cxx │ │ │ ├── vgl_h_matrix_2d+float-.cxx │ │ │ ├── vgl_h_matrix_3d+double-.cxx │ │ │ ├── vgl_h_matrix_3d+float-.cxx │ │ │ ├── vgl_homg_operators_1d+double-.cxx │ │ │ ├── vgl_homg_operators_1d+float-.cxx │ │ │ ├── vgl_homg_operators_2d+double-.cxx │ │ │ ├── vgl_homg_operators_2d+float-.cxx │ │ │ ├── vgl_homg_operators_3d+double-.cxx │ │ │ ├── vgl_homg_operators_3d+float-.cxx │ │ │ ├── vgl_line_2d_regression+double-.cxx │ │ │ ├── vgl_line_2d_regression+float-.cxx │ │ │ ├── vgl_norm_trans_2d+double-.cxx │ │ │ ├── vgl_norm_trans_2d+float-.cxx │ │ │ ├── vgl_norm_trans_3d+double-.cxx │ │ │ ├── vgl_norm_trans_3d+float-.cxx │ │ │ ├── vgl_orient_box_3d+double-.cxx │ │ │ ├── vgl_orient_box_3d+float-.cxx │ │ │ ├── vgl_orient_box_3d_operators+double-.cxx │ │ │ ├── vgl_orient_box_3d_operators+float-.cxx │ │ │ ├── vgl_p_matrix+double-.cxx │ │ │ ├── vgl_p_matrix+float-.cxx │ │ │ ├── vgl_rtree+vgl_box_2d+float-.vgl_bbox_2d+float-.vgl_rtree_box_box_2d+float--.cxx │ │ │ ├── vgl_rtree+vgl_point_2d+double-.vgl_box_2d+double-.dummy-.cxx │ │ │ └── vgl_rtree+vgl_point_2d+float-.vgl_box_2d+float-.vgl_rtree_point_box_2d+float--.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_compute_rigid_3d.cxx │ │ │ ├── test_compute_similarity_3d.cxx │ │ │ ├── test_conic.cxx │ │ │ ├── test_convex_hull_2d.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_ellipsoid.cxx │ │ │ ├── test_fit_conics_2d.cxx │ │ │ ├── test_fit_lines_2d.cxx │ │ │ ├── test_fit_plane_3d.cxx │ │ │ ├── test_fit_sphere_3d.cxx │ │ │ ├── test_h_matrix_1d.cxx │ │ │ ├── test_h_matrix_2d.cxx │ │ │ ├── test_h_matrix_3d.cxx │ │ │ ├── test_homg.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_intersection.cxx │ │ │ ├── test_orient_box_3d.cxx │ │ │ ├── test_p_matrix.cxx │ │ │ ├── test_rotation_3d.cxx │ │ │ ├── test_rtree.cxx │ │ │ └── test_template_include.cxx │ │ ├── vgl_algo_fwd.h │ │ ├── vgl_compute_rigid_3d.h │ │ ├── vgl_compute_rigid_3d.hxx │ │ ├── vgl_compute_similarity_3d.h │ │ ├── vgl_compute_similarity_3d.hxx │ │ ├── vgl_conic_2d_regression.h │ │ ├── vgl_conic_2d_regression.hxx │ │ ├── vgl_convex_hull_2d.h │ │ ├── vgl_convex_hull_2d.hxx │ │ ├── vgl_ellipsoid_3d.h │ │ ├── vgl_ellipsoid_3d.hxx │ │ ├── vgl_fit_conics_2d.h │ │ ├── vgl_fit_conics_2d.hxx │ │ ├── vgl_fit_lines_2d.h │ │ ├── vgl_fit_lines_2d.hxx │ │ ├── vgl_fit_plane_3d.h │ │ ├── vgl_fit_plane_3d.hxx │ │ ├── vgl_fit_sphere_3d.h │ │ ├── vgl_fit_sphere_3d.hxx │ │ ├── vgl_h_matrix_1d.h │ │ ├── vgl_h_matrix_1d.hxx │ │ ├── vgl_h_matrix_1d_compute.h │ │ ├── vgl_h_matrix_1d_compute_3point.cxx │ │ ├── vgl_h_matrix_1d_compute_3point.h │ │ ├── vgl_h_matrix_1d_compute_linear.cxx │ │ ├── vgl_h_matrix_1d_compute_linear.h │ │ ├── vgl_h_matrix_1d_compute_optimize.cxx │ │ ├── vgl_h_matrix_1d_compute_optimize.h │ │ ├── vgl_h_matrix_2d.h │ │ ├── vgl_h_matrix_2d.hxx │ │ ├── vgl_h_matrix_2d_compute.h │ │ ├── vgl_h_matrix_2d_compute_4point.cxx │ │ ├── vgl_h_matrix_2d_compute_4point.h │ │ ├── vgl_h_matrix_2d_compute_linear.cxx │ │ ├── vgl_h_matrix_2d_compute_linear.h │ │ ├── vgl_h_matrix_2d_compute_rigid_body.cxx │ │ ├── vgl_h_matrix_2d_compute_rigid_body.h │ │ ├── vgl_h_matrix_2d_optimize.h │ │ ├── vgl_h_matrix_2d_optimize_lmq.cxx │ │ ├── vgl_h_matrix_2d_optimize_lmq.h │ │ ├── vgl_h_matrix_3d.h │ │ ├── vgl_h_matrix_3d.hxx │ │ ├── vgl_h_matrix_3d_compute.h │ │ ├── vgl_h_matrix_3d_compute_affine.cxx │ │ ├── vgl_h_matrix_3d_compute_affine.h │ │ ├── vgl_h_matrix_3d_compute_linear.cxx │ │ ├── vgl_h_matrix_3d_compute_linear.h │ │ ├── vgl_homg_operators_1d.h │ │ ├── vgl_homg_operators_1d.hxx │ │ ├── vgl_homg_operators_2d.h │ │ ├── vgl_homg_operators_2d.hxx │ │ ├── vgl_homg_operators_3d.h │ │ ├── vgl_homg_operators_3d.hxx │ │ ├── vgl_intersection.h │ │ ├── vgl_intersection.hxx │ │ ├── vgl_line_2d_regression.h │ │ ├── vgl_line_2d_regression.hxx │ │ ├── vgl_norm_trans_2d.h │ │ ├── vgl_norm_trans_2d.hxx │ │ ├── vgl_norm_trans_3d.h │ │ ├── vgl_norm_trans_3d.hxx │ │ ├── vgl_orient_box_3d.h │ │ ├── vgl_orient_box_3d.hxx │ │ ├── vgl_orient_box_3d_operators.h │ │ ├── vgl_orient_box_3d_operators.hxx │ │ ├── vgl_p_matrix.h │ │ ├── vgl_p_matrix.hxx │ │ ├── vgl_rotation_3d.h │ │ ├── vgl_rtree.h │ │ ├── vgl_rtree.hxx │ │ └── vgl_rtree_c.h │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── calculate_homography.cxx │ │ └── vgl_conic_example.cxx │ ├── internals │ │ ├── gpc.c │ │ └── gpc.h │ ├── introduction_doxy.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vgl_io_box_2d+double-.cxx │ │ │ ├── vgl_io_box_2d+float-.cxx │ │ │ ├── vgl_io_box_2d+int-.cxx │ │ │ ├── vgl_io_box_3d+double-.cxx │ │ │ ├── vgl_io_box_3d+float-.cxx │ │ │ ├── vgl_io_box_3d+int-.cxx │ │ │ ├── vgl_io_conic+double-.cxx │ │ │ ├── vgl_io_conic+float-.cxx │ │ │ ├── vgl_io_cylinder+double-.cxx │ │ │ ├── vgl_io_h_matrix_2d+double-.cxx │ │ │ ├── vgl_io_h_matrix_2d+float-.cxx │ │ │ ├── vgl_io_homg_line_2d+double-.cxx │ │ │ ├── vgl_io_homg_line_2d+float-.cxx │ │ │ ├── vgl_io_homg_line_3d_2_points+double-.cxx │ │ │ ├── vgl_io_homg_line_3d_2_points+float-.cxx │ │ │ ├── vgl_io_homg_plane_3d+double-.cxx │ │ │ ├── vgl_io_homg_plane_3d+float-.cxx │ │ │ ├── vgl_io_homg_point_1d+double-.cxx │ │ │ ├── vgl_io_homg_point_1d+float-.cxx │ │ │ ├── vgl_io_homg_point_2d+double-.cxx │ │ │ ├── vgl_io_homg_point_2d+float-.cxx │ │ │ ├── vgl_io_homg_point_3d+double-.cxx │ │ │ ├── vgl_io_homg_point_3d+float-.cxx │ │ │ ├── vgl_io_infinite_line_3d+double-.cxx │ │ │ ├── vgl_io_infinite_line_3d+float-.cxx │ │ │ ├── vgl_io_line_2d+double-.cxx │ │ │ ├── vgl_io_line_2d+float-.cxx │ │ │ ├── vgl_io_line_3d_2_points+double-.cxx │ │ │ ├── vgl_io_line_3d_2_points+float-.cxx │ │ │ ├── vgl_io_line_segment_2d+double-.cxx │ │ │ ├── vgl_io_line_segment_2d+float-.cxx │ │ │ ├── vgl_io_line_segment_3d+double-.cxx │ │ │ ├── vgl_io_line_segment_3d+float-.cxx │ │ │ ├── vgl_io_plane_3d+double-.cxx │ │ │ ├── vgl_io_point_2d+double-.cxx │ │ │ ├── vgl_io_point_2d+float-.cxx │ │ │ ├── vgl_io_point_2d+int-.cxx │ │ │ ├── vgl_io_point_2d+uint-.cxx │ │ │ ├── vgl_io_point_3d+double-.cxx │ │ │ ├── vgl_io_point_3d+float-.cxx │ │ │ ├── vgl_io_point_3d+int-.cxx │ │ │ ├── vgl_io_vector_2d+double-.cxx │ │ │ ├── vgl_io_vector_2d+float-.cxx │ │ │ ├── vgl_io_vector_2d+int-.cxx │ │ │ ├── vgl_io_vector_3d+double-.cxx │ │ │ ├── vgl_io_vector_3d+float-.cxx │ │ │ ├── vgl_io_vector_3d+int-.cxx │ │ │ ├── vgl_io_vector_3d+uint-.cxx │ │ │ ├── vsl_pair_io+vgl_point_2d+double-.vgl_point_2d+double--.cxx │ │ │ ├── vsl_vector_io+vcl_pair+vgl_point_2d+double-.vgl_point_2d+double---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vgl_cylinder+double---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vgl_line_2d+double---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vgl_point_2d+double---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vgl_point_2d+int---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vgl_point_3d+double---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vgl_vector_2d+double---.cxx │ │ │ ├── vsl_vector_io+vgl_box_2d+double--.cxx │ │ │ ├── vsl_vector_io+vgl_box_2d+int--.cxx │ │ │ ├── vsl_vector_io+vgl_line_segment_2d+double--.cxx │ │ │ ├── vsl_vector_io+vgl_point_2d+double--.cxx │ │ │ ├── vsl_vector_io+vgl_point_2d+float--.cxx │ │ │ ├── vsl_vector_io+vgl_point_2d+int--.cxx │ │ │ ├── vsl_vector_io+vgl_point_3d+double--.cxx │ │ │ ├── vsl_vector_io+vgl_point_3d+int--.cxx │ │ │ ├── vsl_vector_io+vgl_vector_2d+double--.cxx │ │ │ └── vsl_vector_io+vgl_vector_3d+double--.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── golden_test_vgl_io.cxx │ │ │ ├── golden_vgl_io_test.bvl │ │ │ ├── test_box_2d_io.cxx │ │ │ ├── test_box_3d_io.cxx │ │ │ ├── test_conic_io.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_homg_line_2d_io.cxx │ │ │ ├── test_homg_line_3d_2_points_io.cxx │ │ │ ├── test_homg_plane_3d_io.cxx │ │ │ ├── test_homg_point_1d_io.cxx │ │ │ ├── test_homg_point_2d_io.cxx │ │ │ ├── test_homg_point_3d_io.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_line_2d_io.cxx │ │ │ ├── test_line_3d_2_points_io.cxx │ │ │ ├── test_line_segment_2d_io.cxx │ │ │ ├── test_line_segment_3d_io.cxx │ │ │ ├── test_plane_3d_io.cxx │ │ │ ├── test_point_2d_io.cxx │ │ │ ├── test_point_3d_io.cxx │ │ │ ├── test_polygon_io.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_vector_2d_io.cxx │ │ │ └── test_vector_3d_io.cxx │ │ ├── vgl_io_box_2d.h │ │ ├── vgl_io_box_2d.hxx │ │ ├── vgl_io_box_3d.h │ │ ├── vgl_io_box_3d.hxx │ │ ├── vgl_io_conic.h │ │ ├── vgl_io_conic.hxx │ │ ├── vgl_io_cylinder.h │ │ ├── vgl_io_cylinder.hxx │ │ ├── vgl_io_h_matrix_2d.h │ │ ├── vgl_io_h_matrix_2d.hxx │ │ ├── vgl_io_homg_line_2d.h │ │ ├── vgl_io_homg_line_2d.hxx │ │ ├── vgl_io_homg_line_3d_2_points.h │ │ ├── vgl_io_homg_line_3d_2_points.hxx │ │ ├── vgl_io_homg_plane_3d.h │ │ ├── vgl_io_homg_plane_3d.hxx │ │ ├── vgl_io_homg_point_1d.h │ │ ├── vgl_io_homg_point_1d.hxx │ │ ├── vgl_io_homg_point_2d.h │ │ ├── vgl_io_homg_point_2d.hxx │ │ ├── vgl_io_homg_point_3d.h │ │ ├── vgl_io_homg_point_3d.hxx │ │ ├── vgl_io_infinite_line_3d.h │ │ ├── vgl_io_infinite_line_3d.hxx │ │ ├── vgl_io_line_2d.h │ │ ├── vgl_io_line_2d.hxx │ │ ├── vgl_io_line_3d_2_points.h │ │ ├── vgl_io_line_3d_2_points.hxx │ │ ├── vgl_io_line_segment_2d.h │ │ ├── vgl_io_line_segment_2d.hxx │ │ ├── vgl_io_line_segment_3d.h │ │ ├── vgl_io_line_segment_3d.hxx │ │ ├── vgl_io_plane_3d.h │ │ ├── vgl_io_plane_3d.hxx │ │ ├── vgl_io_point_2d.h │ │ ├── vgl_io_point_2d.hxx │ │ ├── vgl_io_point_3d.h │ │ ├── vgl_io_point_3d.hxx │ │ ├── vgl_io_polygon.cxx │ │ ├── vgl_io_polygon.h │ │ ├── vgl_io_vector_2d.h │ │ ├── vgl_io_vector_2d.hxx │ │ ├── vgl_io_vector_3d.h │ │ └── vgl_io_vector_3d.hxx │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_area.cxx │ │ ├── test_cartesian.cxx │ │ ├── test_clip.cxx │ │ ├── test_closest_point.cxx │ │ ├── test_convex.cxx │ │ ├── test_distance.cxx │ │ ├── test_driver.cxx │ │ ├── test_ellipse_scan_iterator.cxx │ │ ├── test_frustum_3d.cxx │ │ ├── test_include.cxx │ │ ├── test_infinite_line_3d.cxx │ │ ├── test_intersection.cxx │ │ ├── test_line_3d_2_points.cxx │ │ ├── test_line_segment_3d.cxx │ │ ├── test_plane_3d.cxx │ │ ├── test_pointset.cxx │ │ ├── test_polygon.cxx │ │ ├── test_polygon_scan_iterator.cxx │ │ ├── test_ray_3d.cxx │ │ ├── test_sphere.cxx │ │ ├── test_spline.cxx │ │ ├── test_template_include.cxx │ │ ├── test_triangle_3d.cxx │ │ ├── test_triangle_3d_line_intersection.cxx │ │ ├── test_triangle_scan_iterator.cxx │ │ └── test_window_scan_iterator.cxx │ ├── vgl_1d_basis.cxx │ ├── vgl_1d_basis.h │ ├── vgl_1d_basis.hxx │ ├── vgl_area.h │ ├── vgl_area.hxx │ ├── vgl_bounding_box.h │ ├── vgl_bounding_box.hxx │ ├── vgl_box_2d.h │ ├── vgl_box_2d.hxx │ ├── vgl_box_3d.h │ ├── vgl_box_3d.hxx │ ├── vgl_clip.h │ ├── vgl_clip.hxx │ ├── vgl_closest_point.h │ ├── vgl_closest_point.hxx │ ├── vgl_conic.h │ ├── vgl_conic.hxx │ ├── vgl_conic_segment_2d.h │ ├── vgl_conic_segment_2d.hxx │ ├── vgl_convex.h │ ├── vgl_convex.hxx │ ├── vgl_cubic_spline_2d.h │ ├── vgl_cubic_spline_3d.h │ ├── vgl_cylinder.h │ ├── vgl_cylinder.hxx │ ├── vgl_distance.h │ ├── vgl_distance.hxx │ ├── vgl_ellipse_scan_iterator.h │ ├── vgl_ellipse_scan_iterator.hxx │ ├── vgl_frustum_3d.h │ ├── vgl_frustum_3d.hxx │ ├── vgl_fwd.h │ ├── vgl_homg.cxx │ ├── vgl_homg.h │ ├── vgl_homg_line_2d.h │ ├── vgl_homg_line_2d.hxx │ ├── vgl_homg_line_3d_2_points.h │ ├── vgl_homg_line_3d_2_points.hxx │ ├── vgl_homg_plane_3d.h │ ├── vgl_homg_plane_3d.hxx │ ├── vgl_homg_point_1d.h │ ├── vgl_homg_point_1d.hxx │ ├── vgl_homg_point_2d.h │ ├── vgl_homg_point_2d.hxx │ ├── vgl_homg_point_3d.h │ ├── vgl_homg_point_3d.hxx │ ├── vgl_infinite_line_3d.h │ ├── vgl_infinite_line_3d.hxx │ ├── vgl_intersection.h │ ├── vgl_intersection.hxx │ ├── vgl_line_2d.h │ ├── vgl_line_2d.hxx │ ├── vgl_line_3d_2_points.h │ ├── vgl_line_3d_2_points.hxx │ ├── vgl_line_segment_2d.h │ ├── vgl_line_segment_2d.hxx │ ├── vgl_line_segment_3d.h │ ├── vgl_line_segment_3d.hxx │ ├── vgl_lineseg_test.h │ ├── vgl_lineseg_test.hxx │ ├── vgl_plane_3d.h │ ├── vgl_plane_3d.hxx │ ├── vgl_point_2d.h │ ├── vgl_point_2d.hxx │ ├── vgl_point_3d.h │ ├── vgl_point_3d.hxx │ ├── vgl_pointset_3d.h │ ├── vgl_polygon.h │ ├── vgl_polygon.hxx │ ├── vgl_polygon_scan_iterator.h │ ├── vgl_polygon_scan_iterator.hxx │ ├── vgl_polygon_test.h │ ├── vgl_polygon_test.hxx │ ├── vgl_ray_3d.h │ ├── vgl_ray_3d.hxx │ ├── vgl_region_scan_iterator.h │ ├── vgl_sphere_3d.h │ ├── vgl_sphere_3d.hxx │ ├── vgl_tolerance.h │ ├── vgl_tolerance.hxx │ ├── vgl_triangle_3d.cxx │ ├── vgl_triangle_3d.h │ ├── vgl_triangle_scan_iterator.h │ ├── vgl_triangle_scan_iterator.hxx │ ├── vgl_triangle_test.h │ ├── vgl_triangle_test.hxx │ ├── vgl_vector_2d.h │ ├── vgl_vector_2d.hxx │ ├── vgl_vector_3d.h │ ├── vgl_vector_3d.hxx │ ├── vgl_window_scan_iterator.h │ ├── vgl_window_scan_iterator.hxx │ └── xio │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ ├── vgl_xio_box_3d+double-.cxx │ │ ├── vgl_xio_point_2d+double-.cxx │ │ ├── vgl_xio_point_2d+float-.cxx │ │ ├── vgl_xio_point_2d+int-.cxx │ │ ├── vgl_xio_point_3d+double-.cxx │ │ └── vgl_xio_vector_3d+double-.cxx │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_template_include.cxx │ │ └── test_vgl_xio.cxx │ │ ├── vgl_xio_box_3d.h │ │ ├── vgl_xio_box_3d.hxx │ │ ├── vgl_xio_point_2d.h │ │ ├── vgl_xio_point_2d.hxx │ │ ├── vgl_xio_point_3d.h │ │ ├── vgl_xio_point_3d.hxx │ │ ├── vgl_xio_vector_3d.h │ │ └── vgl_xio_vector_3d.hxx ├── vgui │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vbl_array_2d+vgui_grid_tableau+-grid_data-.cxx │ │ ├── vbl_smart_ptr+vgui_command-.cxx │ │ ├── vbl_smart_ptr+vgui_font-.cxx │ │ ├── vbl_smart_ptr+vgui_range_map_params-.cxx │ │ ├── vbl_smart_ptr+vgui_style-.cxx │ │ ├── vbl_smart_ptr+vgui_tableau-.cxx │ │ ├── vgui_command_simple+vgui_active_tableau-.cxx │ │ ├── vgui_command_simple+vgui_adaptor-.cxx │ │ ├── vgui_command_simple+vgui_clear_tableau-.cxx │ │ ├── vgui_command_simple+vgui_tableau-.cxx │ │ ├── vgui_range_map+bool-.cxx │ │ ├── vgui_range_map+char-.cxx │ │ ├── vgui_range_map+double-.cxx │ │ ├── vgui_range_map+float-.cxx │ │ ├── vgui_range_map+int-.cxx │ │ ├── vgui_range_map+long-.cxx │ │ ├── vgui_range_map+long_double-.cxx │ │ ├── vgui_range_map+short-.cxx │ │ ├── vgui_range_map+signed_char-.cxx │ │ ├── vgui_range_map+uint-.cxx │ │ ├── vgui_range_map+ulong-.cxx │ │ ├── vgui_range_map+vxl_byte-.cxx │ │ └── vgui_range_map+vxl_uint_16-.cxx │ ├── dll.h │ ├── doc │ │ ├── README │ │ ├── overlays │ │ ├── vgui_ref_manual │ │ │ ├── vgui_ref_manual.tex │ │ │ └── zoomer-deck-example.eps │ │ └── vgui_users_guide │ │ │ ├── script │ │ │ └── vgui_users_guide.tex │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── basic01_display_image.cxx │ │ ├── basic01a_multiple_panes.cxx │ │ ├── basic01b_deck.cxx │ │ ├── basic01c_display_vil_image.cxx │ │ ├── basic01d_display_vil1_image.cxx │ │ ├── basic02_display_line.cxx │ │ ├── basic03_display_text.cxx │ │ ├── basic04_display_2d.cxx │ │ ├── basic05_menubar.cxx │ │ ├── basic06_popup.cxx │ │ ├── basic07_dialog.cxx │ │ ├── basic08_printing.cxx │ │ ├── basic09_mouse_position.cxx │ │ ├── basic10_draw_line.cxx │ │ ├── basic10a_rubberband.cxx │ │ ├── basic11_display_3d.cxx │ │ ├── basic_app.cxx │ │ ├── basic_manager.cxx │ │ ├── basic_manager.h │ │ ├── basic_menus.cxx │ │ ├── basic_menus.h │ │ ├── click_points.cxx │ │ ├── example_blender_tableau.cxx │ │ ├── example_display_pyramid.cxx │ │ ├── example_draw_polygon.cxx │ │ ├── example_enhance_tableau.cxx │ │ ├── example_get_highlighted.cxx │ │ ├── example_gllist_tableau.cxx │ │ ├── example_idle_processing.cxx │ │ ├── example_multiple_windows.cxx │ │ ├── example_poly_tableau.cxx │ │ ├── example_satellite_tableau.cxx │ │ ├── example_slider.cxx │ │ ├── example_sprite.cxx │ │ ├── example_text_windows.cxx │ │ ├── example_vgui_observer.cxx │ │ ├── glut1_raw.cxx │ │ ├── glut2_raw.cxx │ │ ├── gtk1_display_image.cxx │ │ ├── gtk2_movie_player.cxx │ │ ├── gtk3_vidl.cxx │ │ ├── mfc_example │ │ │ ├── CMakeLists.txt │ │ │ ├── MainFrm.cpp │ │ │ ├── MainFrm.h │ │ │ ├── README.txt │ │ │ ├── Resource.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── example_mfc.cpp │ │ │ ├── example_mfc.h │ │ │ ├── example_mfc.rc │ │ │ ├── example_mfcDoc.cpp │ │ │ ├── example_mfcDoc.h │ │ │ ├── example_mfcView.cpp │ │ │ ├── example_mfcView.h │ │ │ └── res │ │ │ │ ├── Toolbar.bmp │ │ │ │ ├── bitmap1.bmp │ │ │ │ ├── example_mfc.ico │ │ │ │ ├── example_mfc.rc2 │ │ │ │ ├── example_mfcDoc.ico │ │ │ │ └── mainfram.bmp │ │ └── wx_example │ │ │ ├── CMakeLists.txt │ │ │ ├── wx_childview_app.cxx │ │ │ ├── wx_childview_app.h │ │ │ ├── wx_childview_frame.cxx │ │ │ ├── wx_childview_frame.h │ │ │ ├── wx_docview_app.cxx │ │ │ ├── wx_docview_app.h │ │ │ ├── wx_docview_doc.cxx │ │ │ ├── wx_docview_doc.h │ │ │ ├── wx_docview_frame.cxx │ │ │ ├── wx_docview_frame.h │ │ │ ├── wx_docview_view.cxx │ │ │ ├── wx_docview_view.h │ │ │ ├── wx_xrc.xrc │ │ │ ├── wx_xrc_app.cxx │ │ │ ├── wx_xrc_app.h │ │ │ ├── wx_xrc_frame.cxx │ │ │ └── wx_xrc_frame.h │ ├── impl │ │ ├── glut │ │ │ ├── menu_hack.h │ │ │ ├── menu_hack_X11.cxx │ │ │ ├── menu_hack_none.cxx │ │ │ ├── vgui_glut_adaptor.cxx │ │ │ ├── vgui_glut_adaptor.h │ │ │ ├── vgui_glut_impl.cxx │ │ │ ├── vgui_glut_impl.h │ │ │ ├── vgui_glut_popup_impl.cxx │ │ │ ├── vgui_glut_popup_impl.h │ │ │ ├── vgui_glut_tag.cxx │ │ │ ├── vgui_glut_window.cxx │ │ │ └── vgui_glut_window.h │ │ ├── gtk │ │ │ ├── vgui_gtk.cxx │ │ │ ├── vgui_gtk.h │ │ │ ├── vgui_gtk_adaptor.cxx │ │ │ ├── vgui_gtk_adaptor.h │ │ │ ├── vgui_gtk_dialog_impl.cxx │ │ │ ├── vgui_gtk_dialog_impl.h │ │ │ ├── vgui_gtk_statusbar.cxx │ │ │ ├── vgui_gtk_statusbar.h │ │ │ ├── vgui_gtk_tag.cxx │ │ │ ├── vgui_gtk_utils.cxx │ │ │ ├── vgui_gtk_utils.h │ │ │ ├── vgui_gtk_window.cxx │ │ │ └── vgui_gtk_window.h │ │ ├── gtk2 │ │ │ ├── vgui_gtk2.cxx │ │ │ ├── vgui_gtk2.h │ │ │ ├── vgui_gtk2_adaptor.cxx │ │ │ ├── vgui_gtk2_adaptor.h │ │ │ ├── vgui_gtk2_dialog_impl.cxx │ │ │ ├── vgui_gtk2_dialog_impl.h │ │ │ ├── vgui_gtk2_statusbar.cxx │ │ │ ├── vgui_gtk2_statusbar.h │ │ │ ├── vgui_gtk2_tag.cxx │ │ │ ├── vgui_gtk2_utils.cxx │ │ │ ├── vgui_gtk2_utils.h │ │ │ ├── vgui_gtk2_window.cxx │ │ │ └── vgui_gtk2_window.h │ │ ├── mfc │ │ │ ├── StdAfx.h │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ ├── vgui_dir_dialog.cxx │ │ │ ├── vgui_dir_dialog.h │ │ │ ├── vgui_mfc.cxx │ │ │ ├── vgui_mfc.h │ │ │ ├── vgui_mfc.rc │ │ │ ├── vgui_mfc_adaptor.cxx │ │ │ ├── vgui_mfc_adaptor.h │ │ │ ├── vgui_mfc_app.cxx │ │ │ ├── vgui_mfc_app.h │ │ │ ├── vgui_mfc_app_init.cxx │ │ │ ├── vgui_mfc_app_init.h │ │ │ ├── vgui_mfc_dialog_extensions_impl.cxx │ │ │ ├── vgui_mfc_dialog_extensions_impl.h │ │ │ ├── vgui_mfc_dialog_impl.cxx │ │ │ ├── vgui_mfc_dialog_impl.h │ │ │ ├── vgui_mfc_doc.cxx │ │ │ ├── vgui_mfc_doc.h │ │ │ ├── vgui_mfc_mainfrm.cxx │ │ │ ├── vgui_mfc_mainfrm.h │ │ │ ├── vgui_mfc_statusbar.cxx │ │ │ ├── vgui_mfc_statusbar.h │ │ │ ├── vgui_mfc_tag.cxx │ │ │ ├── vgui_mfc_utils.cxx │ │ │ ├── vgui_mfc_utils.h │ │ │ ├── vgui_mfc_view.cxx │ │ │ ├── vgui_mfc_view.h │ │ │ ├── vgui_mfc_window.cxx │ │ │ └── vgui_mfc_window.h │ │ ├── qt │ │ │ ├── vgui_qt.cxx │ │ │ ├── vgui_qt.h │ │ │ ├── vgui_qt_adaptor.cxx │ │ │ ├── vgui_qt_adaptor.h │ │ │ ├── vgui_qt_dialog_impl.cxx │ │ │ ├── vgui_qt_dialog_impl.h │ │ │ ├── vgui_qt_menu.cxx │ │ │ ├── vgui_qt_menu.h │ │ │ ├── vgui_qt_statusbar.cxx │ │ │ ├── vgui_qt_statusbar.h │ │ │ ├── vgui_qt_tag.cxx │ │ │ ├── vgui_qt_window.cxx │ │ │ └── vgui_qt_window.h │ │ ├── qt4 │ │ │ ├── vgui_qt.cxx │ │ │ ├── vgui_qt.h │ │ │ ├── vgui_qt_adaptor.cxx │ │ │ ├── vgui_qt_adaptor.h │ │ │ ├── vgui_qt_dialog_impl.cxx │ │ │ ├── vgui_qt_dialog_impl.h │ │ │ ├── vgui_qt_menu.cxx │ │ │ ├── vgui_qt_menu.h │ │ │ ├── vgui_qt_statusbar.cxx │ │ │ ├── vgui_qt_statusbar.h │ │ │ ├── vgui_qt_tag.cxx │ │ │ ├── vgui_qt_window.cxx │ │ │ └── vgui_qt_window.h │ │ ├── win32 │ │ │ ├── vgui_win32.cxx │ │ │ ├── vgui_win32.h │ │ │ ├── vgui_win32_adaptor.cxx │ │ │ ├── vgui_win32_adaptor.h │ │ │ ├── vgui_win32_cmdtarget.cxx │ │ │ ├── vgui_win32_cmdtarget.h │ │ │ ├── vgui_win32_dialog_impl.cxx │ │ │ ├── vgui_win32_dialog_impl.h │ │ │ ├── vgui_win32_statusbar.cxx │ │ │ ├── vgui_win32_statusbar.h │ │ │ ├── vgui_win32_tag.cxx │ │ │ ├── vgui_win32_utils.cxx │ │ │ ├── vgui_win32_utils.h │ │ │ ├── vgui_win32_window.cxx │ │ │ └── vgui_win32_window.h │ │ └── wx │ │ │ ├── vgui_wx.cxx │ │ │ ├── vgui_wx.h │ │ │ ├── vgui_wx_adaptor.cxx │ │ │ ├── vgui_wx_adaptor.h │ │ │ ├── vgui_wx_dialog_impl.cxx │ │ │ ├── vgui_wx_dialog_impl.h │ │ │ ├── vgui_wx_menu.cxx │ │ │ ├── vgui_wx_menu.h │ │ │ ├── vgui_wx_statusbar.cxx │ │ │ ├── vgui_wx_statusbar.h │ │ │ ├── vgui_wx_tag.cxx │ │ │ ├── vgui_wx_window.cxx │ │ │ └── vgui_wx_window.h │ ├── internals │ │ ├── .NoDartCoverage │ │ ├── trackball.c │ │ ├── trackball.h │ │ ├── vgui_accelerate.cxx │ │ ├── vgui_accelerate.h │ │ ├── vgui_accelerate_tag.cxx │ │ ├── vgui_accelerate_x11.cxx │ │ ├── vgui_accelerate_x11.h │ │ ├── vgui_adaptor_mixin.h │ │ ├── vgui_adaptor_tableau.cxx │ │ ├── vgui_adaptor_tableau.h │ │ ├── vgui_back_project.cxx │ │ ├── vgui_back_project.h │ │ ├── vgui_button_field.h │ │ ├── vgui_dialog_extensions_impl.cxx │ │ ├── vgui_dialog_extensions_impl.h │ │ ├── vgui_dialog_field.h │ │ ├── vgui_dialog_impl.cxx │ │ ├── vgui_dialog_impl.h │ │ ├── vgui_draw_line.cxx │ │ ├── vgui_draw_line.h │ │ ├── vgui_file_field.h │ │ ├── vgui_gl_selection_macros.h │ │ ├── vgui_invert_homg4x4.cxx │ │ ├── vgui_invert_homg4x4.h │ │ ├── vgui_multiply_4x4.cxx │ │ ├── vgui_multiply_4x4.h │ │ ├── vgui_overlay_helper.cxx │ │ ├── vgui_overlay_helper.h │ │ ├── vgui_parent_child_link_data.h │ │ ├── vgui_rasterpos.cxx │ │ ├── vgui_rasterpos.h │ │ ├── vgui_simple_field.cxx │ │ ├── vgui_simple_field.h │ │ ├── vgui_string_field.h │ │ ├── vgui_transpose_4x4.cxx │ │ ├── vgui_transpose_4x4.h │ │ ├── vgui_un_project.cxx │ │ └── vgui_un_project.h │ ├── introduction_doxy.txt │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_acceleration.cxx │ │ ├── test_displaybase.cxx │ │ ├── test_drawpix_speed.cxx │ │ ├── test_drawpix_speed2.cxx │ │ ├── test_driver.cxx │ │ ├── test_events.cxx │ │ ├── test_front_back.cxx │ │ ├── test_image.ppm │ │ ├── test_image_tableau.cxx │ │ ├── test_include.cxx │ │ ├── test_pixels.cxx │ │ ├── test_popup.cxx │ │ ├── test_range_map.cxx │ │ ├── test_rubberband_dialog.cxx │ │ ├── test_template_include.cxx │ │ └── test_timer.cxx │ ├── vgui.cxx │ ├── vgui.h │ ├── vgui_active_tableau.cxx │ ├── vgui_active_tableau.h │ ├── vgui_active_tableau_sptr.h │ ├── vgui_adaptor.cxx │ ├── vgui_adaptor.h │ ├── vgui_blackbox_tableau.cxx │ ├── vgui_blackbox_tableau.h │ ├── vgui_blackbox_tableau_sptr.h │ ├── vgui_blender_tableau.cxx │ ├── vgui_blender_tableau.h │ ├── vgui_blender_tableau_sptr.h │ ├── vgui_button.cxx │ ├── vgui_button.h │ ├── vgui_cache_wizard.cxx │ ├── vgui_cache_wizard.h │ ├── vgui_camera.cxx │ ├── vgui_camera.h │ ├── vgui_clear_tableau.cxx │ ├── vgui_clear_tableau.h │ ├── vgui_clear_tableau_sptr.h │ ├── vgui_color.cxx │ ├── vgui_color.h │ ├── vgui_color_text.cxx │ ├── vgui_color_text.h │ ├── vgui_command.cxx │ ├── vgui_command.h │ ├── vgui_command_sptr.h │ ├── vgui_composite_tableau.cxx │ ├── vgui_composite_tableau.h │ ├── vgui_composite_tableau_sptr.h │ ├── vgui_config.h.in │ ├── vgui_debug_tableau.cxx │ ├── vgui_debug_tableau.h │ ├── vgui_debug_tableau_sptr.h │ ├── vgui_deck_tableau.cxx │ ├── vgui_deck_tableau.h │ ├── vgui_deck_tableau_sptr.h │ ├── vgui_dialog.cxx │ ├── vgui_dialog.h │ ├── vgui_dialog_extensions.cxx │ ├── vgui_dialog_extensions.h │ ├── vgui_displaybase_tableau.cxx │ ├── vgui_displaybase_tableau.h │ ├── vgui_displaybase_tableau_sptr.h │ ├── vgui_displaylist2D_tableau.cxx │ ├── vgui_displaylist2D_tableau.h │ ├── vgui_displaylist2D_tableau_sptr.h │ ├── vgui_displaylist3D_tableau.cxx │ ├── vgui_displaylist3D_tableau.h │ ├── vgui_displaylist3D_tableau_sptr.h │ ├── vgui_drag_mixin.cxx │ ├── vgui_drag_mixin.h │ ├── vgui_drag_tableau.h │ ├── vgui_drag_tableau_sptr.h │ ├── vgui_easy2D_tableau.cxx │ ├── vgui_easy2D_tableau.h │ ├── vgui_easy2D_tableau_sptr.h │ ├── vgui_easy3D_tableau.cxx │ ├── vgui_easy3D_tableau.h │ ├── vgui_easy3D_tableau_sptr.h │ ├── vgui_enhance_tableau.cxx │ ├── vgui_enhance_tableau.h │ ├── vgui_enhance_tableau_sptr.h │ ├── vgui_error_dialog.cxx │ ├── vgui_error_dialog.h │ ├── vgui_event.cxx │ ├── vgui_event.h │ ├── vgui_event_condition.cxx │ ├── vgui_event_condition.h │ ├── vgui_event_server.cxx │ ├── vgui_event_server.h │ ├── vgui_find.cxx │ ├── vgui_find.h │ ├── vgui_font.cxx │ ├── vgui_font.h │ ├── vgui_font_bitmap.cxx │ ├── vgui_font_bitmap.h │ ├── vgui_font_sptr.h │ ├── vgui_font_textured.cxx │ ├── vgui_font_textured.h │ ├── vgui_function_tableau.cxx │ ├── vgui_function_tableau.h │ ├── vgui_function_tableau_sptr.h │ ├── vgui_fwd.h │ ├── vgui_gl.h │ ├── vgui_glu.h │ ├── vgui_glut.cxx │ ├── vgui_glut.h │ ├── vgui_glx.h │ ├── vgui_grid_tableau.cxx │ ├── vgui_grid_tableau.h │ ├── vgui_grid_tableau_sptr.h │ ├── vgui_image_renderer.cxx │ ├── vgui_image_renderer.h │ ├── vgui_image_tableau.cxx │ ├── vgui_image_tableau.h │ ├── vgui_image_tableau_sptr.h │ ├── vgui_key.cxx │ ├── vgui_key.h │ ├── vgui_listmanager2D_tableau.cxx │ ├── vgui_listmanager2D_tableau.h │ ├── vgui_listmanager2D_tableau_sptr.h │ ├── vgui_loader_tableau.cxx │ ├── vgui_loader_tableau.h │ ├── vgui_loader_tableau_sptr.h │ ├── vgui_macro.cxx │ ├── vgui_macro.h │ ├── vgui_matrix_state.cxx │ ├── vgui_matrix_state.h │ ├── vgui_menu.cxx │ ├── vgui_menu.h │ ├── vgui_message.h │ ├── vgui_modifier.cxx │ ├── vgui_modifier.h │ ├── vgui_observable.cxx │ ├── vgui_observable.h │ ├── vgui_observer.cxx │ ├── vgui_observer.h │ ├── vgui_parent_child_link.cxx │ ├── vgui_parent_child_link.h │ ├── vgui_pixel.cxx │ ├── vgui_pixel.h │ ├── vgui_poly_tableau.cxx │ ├── vgui_poly_tableau.h │ ├── vgui_poly_tableau_sptr.h │ ├── vgui_popup_params.h │ ├── vgui_projection_inspector.cxx │ ├── vgui_projection_inspector.h │ ├── vgui_quit_tableau.cxx │ ├── vgui_quit_tableau.h │ ├── vgui_quit_tableau_sptr.h │ ├── vgui_range_map.h │ ├── vgui_range_map.hxx │ ├── vgui_range_map_params.cxx │ ├── vgui_range_map_params.h │ ├── vgui_range_map_params_sptr.h │ ├── vgui_register_all.cxx │ ├── vgui_roi_tableau.cxx │ ├── vgui_roi_tableau.h │ ├── vgui_roi_tableau_sptr.h │ ├── vgui_rubberband_tableau.cxx │ ├── vgui_rubberband_tableau.h │ ├── vgui_rubberband_tableau_sptr.h │ ├── vgui_satellite_tableau.h │ ├── vgui_satellite_tableau.hxx │ ├── vgui_section_buffer.cxx │ ├── vgui_section_buffer.h │ ├── vgui_section_render.cxx │ ├── vgui_section_render.h │ ├── vgui_selector_tableau.cxx │ ├── vgui_selector_tableau.h │ ├── vgui_selector_tableau_sptr.h │ ├── vgui_shell_tableau.cxx │ ├── vgui_shell_tableau.h │ ├── vgui_shell_tableau_sptr.h │ ├── vgui_slider_tableau.cxx │ ├── vgui_slider_tableau.h │ ├── vgui_slider_tableau_sptr.h │ ├── vgui_soview.cxx │ ├── vgui_soview.h │ ├── vgui_soview2D.cxx │ ├── vgui_soview2D.h │ ├── vgui_soview3D.cxx │ ├── vgui_soview3D.h │ ├── vgui_statusbar.h │ ├── vgui_statusbuf.cxx │ ├── vgui_statusbuf.h │ ├── vgui_style.cxx │ ├── vgui_style.h │ ├── vgui_style_sptr.h │ ├── vgui_tableau.cxx │ ├── vgui_tableau.h │ ├── vgui_tableau_sptr.h │ ├── vgui_tag.cxx │ ├── vgui_tag.h │ ├── vgui_text_graph.cxx │ ├── vgui_text_graph.h │ ├── vgui_text_put.cxx │ ├── vgui_text_put.h │ ├── vgui_text_tableau.cxx │ ├── vgui_text_tableau.h │ ├── vgui_text_tableau_sptr.h │ ├── vgui_texture_hacks.cxx │ ├── vgui_texture_hacks.h │ ├── vgui_toolkit.cxx │ ├── vgui_toolkit.h │ ├── vgui_tview_launcher_tableau.cxx │ ├── vgui_tview_launcher_tableau.h │ ├── vgui_tview_launcher_tableau_sptr.h │ ├── vgui_tview_tableau.cxx │ ├── vgui_tview_tableau.h │ ├── vgui_tview_tableau_sptr.h │ ├── vgui_utils.cxx │ ├── vgui_utils.h │ ├── vgui_viewer2D_tableau.cxx │ ├── vgui_viewer2D_tableau.h │ ├── vgui_viewer2D_tableau_sptr.h │ ├── vgui_viewer3D_tableau.cxx │ ├── vgui_viewer3D_tableau.h │ ├── vgui_viewer3D_tableau_sptr.h │ ├── vgui_vil_image_renderer.cxx │ ├── vgui_vil_image_renderer.h │ ├── vgui_window.cxx │ ├── vgui_window.h │ ├── vgui_wrapper_tableau.cxx │ ├── vgui_wrapper_tableau.h │ ├── vgui_wrapper_tableau_sptr.h │ └── wx │ │ ├── CMakeLists.txt │ │ ├── bitmaps │ │ ├── next.xpm │ │ ├── pause.xpm │ │ ├── play.xpm │ │ └── prev.xpm │ │ ├── tests │ │ ├── CMakeLists.txt │ │ └── test_include.cxx │ │ ├── vgui_wx.cxx │ │ ├── vgui_wx.h │ │ ├── vgui_wx_adaptorXmlHandler.cxx │ │ ├── vgui_wx_adaptorXmlHandler.h │ │ ├── wxSliderPanel.cxx │ │ ├── wxSliderPanel.h │ │ ├── wxSliderPanelXmlHandler.cxx │ │ ├── wxSliderPanelXmlHandler.h │ │ ├── wxVideoControl.cxx │ │ ├── wxVideoControl.h │ │ ├── wxVideoControlXmlHandler.cxx │ │ └── wxVideoControlXmlHandler.h ├── vidl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── vil_smart_ptr+vidl_frame-.cxx │ │ ├── vil_smart_ptr+vidl_istream-.cxx │ │ ├── vil_smart_ptr+vidl_ostream-.cxx │ │ └── vil_smart_ptr+vidl_v4l2_device-.cxx │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── vidl_dshow_file_example.cxx │ │ ├── vidl_dshow_live_example.cxx │ │ ├── vidl_player_main.cxx │ │ ├── vidl_player_manager.cxx │ │ ├── vidl_player_manager.h │ │ ├── vidl_player_menus.cxx │ │ ├── vidl_player_menus.h │ │ ├── vidl_transcode_video.cxx │ │ ├── vidl_v4l2_live_example.cxx │ │ └── vidl_v4l_live_example.cxx │ ├── gui │ │ ├── CMakeLists.txt │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ │ ├── vidl_capture_tableau.cxx │ │ ├── vidl_capture_tableau.h │ │ ├── vidl_capture_tableau_sptr.h │ │ ├── vidl_gui_param_dialog.cxx │ │ └── vidl_gui_param_dialog.h │ ├── introduction_doxy.txt │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_color.cxx │ │ ├── test_convert.cxx │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_pixel_format.cxx │ │ ├── test_pixel_iterator.cxx │ │ └── test_template_include.cxx │ ├── vidl_color.cxx │ ├── vidl_color.h │ ├── vidl_config.h.in │ ├── vidl_convert.cxx │ ├── vidl_convert.h │ ├── vidl_dc1394_istream.cxx │ ├── vidl_dc1394_istream.h │ ├── vidl_dshow.cxx │ ├── vidl_dshow.h │ ├── vidl_dshow_file_istream.cxx │ ├── vidl_dshow_file_istream.h │ ├── vidl_dshow_istream_params.cxx │ ├── vidl_dshow_istream_params.h │ ├── vidl_dshow_istream_params_esf.cxx │ ├── vidl_dshow_istream_params_esf.h │ ├── vidl_dshow_live_istream.cxx │ ├── vidl_dshow_live_istream.h │ ├── vidl_exception.h │ ├── vidl_ffmpeg_convert.cxx │ ├── vidl_ffmpeg_convert.h │ ├── vidl_ffmpeg_init.cxx │ ├── vidl_ffmpeg_init.h │ ├── vidl_ffmpeg_istream.cxx │ ├── vidl_ffmpeg_istream.h │ ├── vidl_ffmpeg_istream_stub.hxx │ ├── vidl_ffmpeg_istream_v0.9.hxx │ ├── vidl_ffmpeg_istream_v1.hxx │ ├── vidl_ffmpeg_istream_v2.hxx │ ├── vidl_ffmpeg_istream_v3.hxx │ ├── vidl_ffmpeg_istream_v56.hxx │ ├── vidl_ffmpeg_ostream.cxx │ ├── vidl_ffmpeg_ostream.h │ ├── vidl_ffmpeg_ostream_params.cxx │ ├── vidl_ffmpeg_ostream_params.h │ ├── vidl_ffmpeg_ostream_stub.hxx │ ├── vidl_ffmpeg_ostream_v0.11.hxx │ ├── vidl_ffmpeg_ostream_v0.9.hxx │ ├── vidl_ffmpeg_ostream_v1.hxx │ ├── vidl_ffmpeg_ostream_v2.hxx │ ├── vidl_ffmpeg_ostream_v3.hxx │ ├── vidl_ffmpeg_ostream_v4.hxx │ ├── vidl_ffmpeg_ostream_v56.hxx │ ├── vidl_ffmpeg_pixel_format.cxx │ ├── vidl_ffmpeg_pixel_format.h │ ├── vidl_frame.cxx │ ├── vidl_frame.h │ ├── vidl_frame_sptr.h │ ├── vidl_iidc1394_params.cxx │ ├── vidl_iidc1394_params.h │ ├── vidl_image_list_istream.cxx │ ├── vidl_image_list_istream.h │ ├── vidl_image_list_ostream.cxx │ ├── vidl_image_list_ostream.h │ ├── vidl_istream.h │ ├── vidl_istream_image_resource.cxx │ ├── vidl_istream_image_resource.h │ ├── vidl_istream_sptr.h │ ├── vidl_ostream.h │ ├── vidl_ostream_sptr.h │ ├── vidl_pixel_format.cxx │ ├── vidl_pixel_format.h │ ├── vidl_pixel_iterator.cxx │ ├── vidl_pixel_iterator.h │ ├── vidl_pixel_iterator.hxx │ ├── vidl_v4l2_control.cxx │ ├── vidl_v4l2_control.h │ ├── vidl_v4l2_device.cxx │ ├── vidl_v4l2_device.h │ ├── vidl_v4l2_device_sptr.h │ ├── vidl_v4l2_devices.cxx │ ├── vidl_v4l2_devices.h │ ├── vidl_v4l2_istream.cxx │ ├── vidl_v4l2_istream.h │ ├── vidl_v4l2_pixel_format.cxx │ ├── vidl_v4l2_pixel_format.h │ ├── vidl_v4l_istream.cxx │ ├── vidl_v4l_istream.h │ ├── vidl_v4l_params.cxx │ └── vidl_v4l_params.h ├── vil │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vil_bicub_interp+byte-.cxx │ │ ├── vil_bicub_interp+double-.cxx │ │ ├── vil_bicub_interp+float-.cxx │ │ ├── vil_bicub_interp+int_16-.cxx │ │ ├── vil_bicub_interp+uint_16-.cxx │ │ ├── vil_copy+bool-.cxx │ │ ├── vil_copy+byte-.cxx │ │ ├── vil_copy+double-.cxx │ │ ├── vil_copy+float-.cxx │ │ ├── vil_copy+int_16-.cxx │ │ ├── vil_copy+int_32-.cxx │ │ ├── vil_copy+int_64-.cxx │ │ ├── vil_copy+sbyte-.cxx │ │ ├── vil_copy+uint_16-.cxx │ │ ├── vil_copy+uint_32-.cxx │ │ ├── vil_copy+uint_64-.cxx │ │ ├── vil_copy+vcl_complex+double--.cxx │ │ ├── vil_copy+vcl_complex+float--.cxx │ │ ├── vil_copy+vil_rgb+byte--.cxx │ │ ├── vil_image_view+bool-.cxx │ │ ├── vil_image_view+byte-.cxx │ │ ├── vil_image_view+double-.cxx │ │ ├── vil_image_view+float-.cxx │ │ ├── vil_image_view+int_16-.cxx │ │ ├── vil_image_view+int_32-.cxx │ │ ├── vil_image_view+int_64-.cxx │ │ ├── vil_image_view+sbyte-.cxx │ │ ├── vil_image_view+uint_16-.cxx │ │ ├── vil_image_view+uint_32-.cxx │ │ ├── vil_image_view+uint_64-.cxx │ │ ├── vil_image_view+vcl_complex+double--.cxx │ │ ├── vil_image_view+vcl_complex+float--.cxx │ │ ├── vil_image_view+vil_rgb+bool--.cxx │ │ ├── vil_image_view+vil_rgb+byte--.cxx │ │ ├── vil_image_view+vil_rgb+double--.cxx │ │ ├── vil_image_view+vil_rgb+float--.cxx │ │ ├── vil_image_view+vil_rgb+int_16--.cxx │ │ ├── vil_image_view+vil_rgb+int_32--.cxx │ │ ├── vil_image_view+vil_rgb+int_64--.cxx │ │ ├── vil_image_view+vil_rgb+sbyte--.cxx │ │ ├── vil_image_view+vil_rgb+uint_16--.cxx │ │ ├── vil_image_view+vil_rgb+uint_32--.cxx │ │ ├── vil_image_view+vil_rgb+uint_64--.cxx │ │ ├── vil_image_view+vil_rgba+bool--.cxx │ │ ├── vil_image_view+vil_rgba+byte--.cxx │ │ ├── vil_image_view+vil_rgba+double--.cxx │ │ ├── vil_image_view+vil_rgba+float--.cxx │ │ ├── vil_image_view+vil_rgba+int_16--.cxx │ │ ├── vil_image_view+vil_rgba+int_32--.cxx │ │ ├── vil_image_view+vil_rgba+int_64--.cxx │ │ ├── vil_image_view+vil_rgba+sbyte--.cxx │ │ ├── vil_image_view+vil_rgba+uint_16--.cxx │ │ ├── vil_image_view+vil_rgba+uint_32--.cxx │ │ ├── vil_image_view+vil_rgba+uint_64--.cxx │ │ ├── vil_pyramid_image_view+double-.cxx │ │ ├── vil_pyramid_image_view+float-.cxx │ │ ├── vil_resample_bicub+byte.byte-.cxx │ │ ├── vil_resample_bicub+byte.double-.cxx │ │ ├── vil_resample_bicub+byte.float-.cxx │ │ ├── vil_resample_bicub+float.double-.cxx │ │ ├── vil_resample_bicub+float.float-.cxx │ │ ├── vil_resample_bicub+int_16.int_16-.cxx │ │ ├── vil_resample_bicub+uint_16.uint_16-.cxx │ │ ├── vil_resample_bilin+byte.byte-.cxx │ │ ├── vil_resample_bilin+byte.double-.cxx │ │ ├── vil_resample_bilin+byte.float-.cxx │ │ ├── vil_resample_bilin+double.double-.cxx │ │ ├── vil_resample_bilin+float.double-.cxx │ │ ├── vil_resample_bilin+float.float-.cxx │ │ ├── vil_resample_bilin+int_16.int_16-.cxx │ │ ├── vil_resample_bilin+int_32.int_32-.cxx │ │ ├── vil_resample_bilin+uint_16.uint_16-.cxx │ │ ├── vil_resample_nearest+bool.bool-.cxx │ │ ├── vil_resample_nearest+byte.byte-.cxx │ │ ├── vil_resample_nearest+byte.double-.cxx │ │ ├── vil_resample_nearest+byte.float-.cxx │ │ ├── vil_resample_nearest+float.double-.cxx │ │ ├── vil_resample_nearest+float.float-.cxx │ │ ├── vil_resample_nearest+int_16.int_16-.cxx │ │ ├── vil_resample_nearest+uint_16.uint_16-.cxx │ │ ├── vil_rgb+bool-.cxx │ │ ├── vil_rgb+byte-.cxx │ │ ├── vil_rgb+double-.cxx │ │ ├── vil_rgb+float-.cxx │ │ ├── vil_rgb+int_16-.cxx │ │ ├── vil_rgb+int_32-.cxx │ │ ├── vil_rgb+int_64-.cxx │ │ ├── vil_rgb+sbyte-.cxx │ │ ├── vil_rgb+uint_16-.cxx │ │ ├── vil_rgb+uint_32-.cxx │ │ ├── vil_rgb+uint_64-.cxx │ │ ├── vil_rgba+bool-.cxx │ │ ├── vil_rgba+byte-.cxx │ │ ├── vil_rgba+double-.cxx │ │ ├── vil_rgba+float-.cxx │ │ ├── vil_rgba+int_16-.cxx │ │ ├── vil_rgba+int_32-.cxx │ │ ├── vil_rgba+int_64-.cxx │ │ ├── vil_rgba+sbyte-.cxx │ │ ├── vil_rgba+uint_16-.cxx │ │ ├── vil_rgba+uint_32-.cxx │ │ ├── vil_rgba+uint_64-.cxx │ │ ├── vil_rotate+byte.byte-.cxx │ │ ├── vil_rotate+float.float-.cxx │ │ ├── vil_sample_grid_bicub+byte.double-.cxx │ │ ├── vil_sample_grid_bicub+double.double-.cxx │ │ ├── vil_sample_grid_bicub+float.double-.cxx │ │ ├── vil_sample_grid_bicub+float.float-.cxx │ │ ├── vil_sample_grid_bilin+byte.double-.cxx │ │ ├── vil_sample_grid_bilin+byte.float-.cxx │ │ ├── vil_sample_grid_bilin+double.double-.cxx │ │ ├── vil_sample_grid_bilin+float.double-.cxx │ │ ├── vil_sample_grid_bilin+float.float-.cxx │ │ ├── vil_sample_grid_bilin+uint_16.double-.cxx │ │ ├── vil_sample_grid_bilin+uint_16.float-.cxx │ │ ├── vil_sample_profile_bicub+byte.double-.cxx │ │ ├── vil_sample_profile_bicub+double.double-.cxx │ │ ├── vil_sample_profile_bicub+float.double-.cxx │ │ ├── vil_sample_profile_bilin+byte.double-.cxx │ │ ├── vil_sample_profile_bilin+double.double-.cxx │ │ ├── vil_sample_profile_bilin+float.double-.cxx │ │ ├── vil_sample_profile_bilin+uint_16.double-.cxx │ │ ├── vil_smart_ptr+vil_blocked_image_resource-.cxx │ │ ├── vil_smart_ptr+vil_image_resource-.cxx │ │ ├── vil_smart_ptr+vil_image_view_base-.cxx │ │ ├── vil_smart_ptr+vil_memory_chunk-.cxx │ │ ├── vil_smart_ptr+vil_pyramid_image_resource-.cxx │ │ └── vil_smart_ptr+vil_stream-.cxx │ ├── algo │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vil_abs_shuffle_distance+byte.byte-.cxx │ │ │ ├── vil_cartesian_differential_invariants+byte.float-.cxx │ │ │ ├── vil_cartesian_differential_invariants+float.float-.cxx │ │ │ ├── vil_checker_board+byte.byte-.cxx │ │ │ ├── vil_fft+double-.cxx │ │ │ ├── vil_fft+float-.cxx │ │ │ ├── vil_gauss_filter+byte.byte-.cxx │ │ │ ├── vil_gauss_filter+byte.double-.cxx │ │ │ ├── vil_gauss_filter+byte.float-.cxx │ │ │ ├── vil_gauss_filter+double.double-.cxx │ │ │ ├── vil_gauss_filter+float.float-.cxx │ │ │ ├── vil_gauss_filter+int_16.int_16-.cxx │ │ │ ├── vil_gauss_filter+uint_16.uint_16-.cxx │ │ │ ├── vil_gauss_reduce+byte-.cxx │ │ │ ├── vil_gauss_reduce+double-.cxx │ │ │ ├── vil_gauss_reduce+float-.cxx │ │ │ ├── vil_gauss_reduce+int_16-.cxx │ │ │ ├── vil_gauss_reduce+uint_16-.cxx │ │ │ ├── vil_greyscale_dilate+byte-.cxx │ │ │ ├── vil_greyscale_dilate+double-.cxx │ │ │ ├── vil_greyscale_dilate+float-.cxx │ │ │ ├── vil_greyscale_erode+byte-.cxx │ │ │ ├── vil_greyscale_erode+double-.cxx │ │ │ ├── vil_greyscale_erode+float-.cxx │ │ │ ├── vil_histogram+double-.cxx │ │ │ ├── vil_histogram+float-.cxx │ │ │ ├── vil_histogram+short-.cxx │ │ │ ├── vil_histogram+signed_char-.cxx │ │ │ ├── vil_histogram+ushort-.cxx │ │ │ ├── vil_line_filter+byte-.cxx │ │ │ ├── vil_median+bool-.cxx │ │ │ ├── vil_median+byte-.cxx │ │ │ ├── vil_median+double-.cxx │ │ │ ├── vil_median+float-.cxx │ │ │ ├── vil_median+int-.cxx │ │ │ ├── vil_median+uint_16-.cxx │ │ │ ├── vil_sobel_1x3+byte.double-.cxx │ │ │ ├── vil_sobel_1x3+byte.float-.cxx │ │ │ ├── vil_sobel_1x3+double.double-.cxx │ │ │ ├── vil_sobel_1x3+float.float-.cxx │ │ │ ├── vil_sobel_1x3+uint_16.double-.cxx │ │ │ ├── vil_sobel_1x3+uint_16.float-.cxx │ │ │ ├── vil_sobel_3x3+byte.double-.cxx │ │ │ ├── vil_sobel_3x3+byte.float-.cxx │ │ │ ├── vil_sobel_3x3+double.double-.cxx │ │ │ ├── vil_sobel_3x3+float.double-.cxx │ │ │ ├── vil_sobel_3x3+float.float-.cxx │ │ │ ├── vil_sobel_3x3+uint_16.double-.cxx │ │ │ ├── vil_sobel_3x3+uint_16.float-.cxx │ │ │ ├── vil_suppress_non_max_edges+double.double-.cxx │ │ │ ├── vil_suppress_non_max_edges+float.float-.cxx │ │ │ ├── vil_threshold+byte-.cxx │ │ │ ├── vil_threshold+double-.cxx │ │ │ ├── vil_threshold+float-.cxx │ │ │ ├── vil_threshold+int-.cxx │ │ │ ├── vil_threshold+uint_16-.cxx │ │ │ └── vil_threshold+uint_32-.cxx │ │ ├── examples │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── algo_example1.cxx │ │ │ ├── algo_example2.cxx │ │ │ ├── example_complex.cxx │ │ │ ├── vil_convolve_tool.cxx │ │ │ ├── vil_correlate_grad_tool.cxx │ │ │ └── vil_exp_grad_filter_tool.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_algo_abs_shuffle_distance.cxx │ │ │ ├── test_algo_blob.cxx │ │ │ ├── test_algo_cartesian_differential_invariants.cxx │ │ │ ├── test_algo_checker_board.cxx │ │ │ ├── test_algo_colour_space.cxx │ │ │ ├── test_algo_convolve_1d.cxx │ │ │ ├── test_algo_convolve_2d.cxx │ │ │ ├── test_algo_corners.cxx │ │ │ ├── test_algo_correlate_1d.cxx │ │ │ ├── test_algo_correlate_2d.cxx │ │ │ ├── test_algo_distance_transform.cxx │ │ │ ├── test_algo_exp_filter_1d.cxx │ │ │ ├── test_algo_exp_grad_filter_1d.cxx │ │ │ ├── test_algo_fft.cxx │ │ │ ├── test_algo_find_4con_boundary.cxx │ │ │ ├── test_algo_find_peaks.cxx │ │ │ ├── test_algo_find_plateaus.cxx │ │ │ ├── test_algo_flood_fill.cxx │ │ │ ├── test_algo_gauss_filter.cxx │ │ │ ├── test_algo_gauss_reduce.cxx │ │ │ ├── test_algo_grid_merge.cxx │ │ │ ├── test_algo_histogram.cxx │ │ │ ├── test_algo_histogram_equalise.cxx │ │ │ ├── test_algo_line_filter.cxx │ │ │ ├── test_algo_quad_distance_function.cxx │ │ │ ├── test_algo_region_finder.cxx │ │ │ ├── test_algo_sobel.cxx │ │ │ ├── test_algo_suppress_non_max_edges.cxx │ │ │ ├── test_algo_suppress_non_plateau.cxx │ │ │ ├── test_algo_threshold.cxx │ │ │ ├── test_binary_dilate.cxx │ │ │ ├── test_binary_erode.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_greyscale_dilate.cxx │ │ │ ├── test_greyscale_erode.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_median.cxx │ │ │ ├── test_suppress_non_max.cxx │ │ │ └── test_template_include.cxx │ │ ├── vil_abs_shuffle_distance.h │ │ ├── vil_abs_shuffle_distance.hxx │ │ ├── vil_binary_closing.h │ │ ├── vil_binary_dilate.cxx │ │ ├── vil_binary_dilate.h │ │ ├── vil_binary_erode.cxx │ │ ├── vil_binary_erode.h │ │ ├── vil_binary_opening.h │ │ ├── vil_blob.cxx │ │ ├── vil_blob.h │ │ ├── vil_cartesian_differential_invariants.h │ │ ├── vil_cartesian_differential_invariants.hxx │ │ ├── vil_checker_board.h │ │ ├── vil_checker_board.hxx │ │ ├── vil_colour_space.cxx │ │ ├── vil_colour_space.h │ │ ├── vil_convolve_1d.h │ │ ├── vil_convolve_2d.h │ │ ├── vil_corners.cxx │ │ ├── vil_corners.h │ │ ├── vil_correlate_1d.h │ │ ├── vil_correlate_2d.h │ │ ├── vil_distance_transform.cxx │ │ ├── vil_distance_transform.h │ │ ├── vil_dog_filter_5tap.h │ │ ├── vil_dog_pyramid.h │ │ ├── vil_exp_filter_1d.h │ │ ├── vil_exp_filter_2d.h │ │ ├── vil_exp_grad_filter_1d.h │ │ ├── vil_fft.h │ │ ├── vil_fft.hxx │ │ ├── vil_find_4con_boundary.h │ │ ├── vil_find_peaks.h │ │ ├── vil_find_plateaus.h │ │ ├── vil_flood_fill.h │ │ ├── vil_gauss_filter.cxx │ │ ├── vil_gauss_filter.h │ │ ├── vil_gauss_filter.hxx │ │ ├── vil_gauss_reduce.cxx │ │ ├── vil_gauss_reduce.h │ │ ├── vil_gauss_reduce.hxx │ │ ├── vil_greyscale_closing.h │ │ ├── vil_greyscale_dilate.h │ │ ├── vil_greyscale_dilate.hxx │ │ ├── vil_greyscale_erode.h │ │ ├── vil_greyscale_erode.hxx │ │ ├── vil_greyscale_opening.h │ │ ├── vil_grid_merge.h │ │ ├── vil_histogram.cxx │ │ ├── vil_histogram.h │ │ ├── vil_histogram_equalise.cxx │ │ ├── vil_histogram_equalise.h │ │ ├── vil_line_filter.h │ │ ├── vil_line_filter.hxx │ │ ├── vil_median.h │ │ ├── vil_median.hxx │ │ ├── vil_normalised_correlation_2d.h │ │ ├── vil_orientations.cxx │ │ ├── vil_orientations.h │ │ ├── vil_quad_distance_function.h │ │ ├── vil_region_finder.h │ │ ├── vil_region_finder.hxx │ │ ├── vil_sobel_1x3.cxx │ │ ├── vil_sobel_1x3.h │ │ ├── vil_sobel_1x3.hxx │ │ ├── vil_sobel_3x3.cxx │ │ ├── vil_sobel_3x3.h │ │ ├── vil_sobel_3x3.hxx │ │ ├── vil_structuring_element.cxx │ │ ├── vil_structuring_element.h │ │ ├── vil_suppress_non_max.h │ │ ├── vil_suppress_non_max_edges.h │ │ ├── vil_suppress_non_max_edges.hxx │ │ ├── vil_suppress_non_plateau.h │ │ ├── vil_threshold.h │ │ ├── vil_threshold.hxx │ │ └── vil_tile_images.h │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── example1.cxx │ │ ├── example2.cxx │ │ ├── example3.cxx │ │ ├── example4.cxx │ │ ├── example5.cxx │ │ ├── example6.cxx │ │ ├── example_interpolate.cxx │ │ ├── example_rgb.cxx │ │ ├── file_example1.cxx │ │ ├── file_example2.cxx │ │ ├── file_example3.cxx │ │ ├── file_example4.cxx │ │ ├── file_example5.cxx │ │ ├── vil_color_tables.cxx │ │ ├── vil_image_convert.cxx │ │ ├── vil_image_copy.cxx │ │ ├── vil_resample_image.cxx │ │ └── vil_rotate_image.cxx │ ├── file_formats │ │ ├── NCSJPCVilIOStream.cxx │ │ ├── NCSJPCVilIOStream.h │ │ ├── viffheader.h.original │ │ ├── vil_bmp.cxx │ │ ├── vil_bmp.h │ │ ├── vil_bmp.notes │ │ ├── vil_bmp_core_header.cxx │ │ ├── vil_bmp_core_header.h │ │ ├── vil_bmp_file_header.cxx │ │ ├── vil_bmp_file_header.h │ │ ├── vil_bmp_info_header.cxx │ │ ├── vil_bmp_info_header.h │ │ ├── vil_dicom.cxx │ │ ├── vil_dicom.h │ │ ├── vil_dicom_header.cxx │ │ ├── vil_dicom_header.h │ │ ├── vil_dicom_stream.cxx │ │ ├── vil_dicom_stream.h │ │ ├── vil_geotiff_header.cxx │ │ ├── vil_geotiff_header.h │ │ ├── vil_iris.cxx │ │ ├── vil_iris.h │ │ ├── vil_j2k_image.cxx │ │ ├── vil_j2k_image.h │ │ ├── vil_j2k_nitf2_pyramid_image_resource.cxx │ │ ├── vil_j2k_nitf2_pyramid_image_resource.h │ │ ├── vil_j2k_pyramid_image_resource.cxx │ │ ├── vil_j2k_pyramid_image_resource.h │ │ ├── vil_jpeg.cxx │ │ ├── vil_jpeg.h │ │ ├── vil_jpeg_compressor.cxx │ │ ├── vil_jpeg_compressor.h │ │ ├── vil_jpeg_decompressor.cxx │ │ ├── vil_jpeg_decompressor.h │ │ ├── vil_jpeg_destination_mgr.cxx │ │ ├── vil_jpeg_destination_mgr.h │ │ ├── vil_jpeg_source_mgr.cxx │ │ ├── vil_jpeg_source_mgr.h │ │ ├── vil_jpeglib.h │ │ ├── vil_mit.cxx │ │ ├── vil_mit.h │ │ ├── vil_nitf2.cxx │ │ ├── vil_nitf2.h │ │ ├── vil_nitf2_array_field.cxx │ │ ├── vil_nitf2_array_field.h │ │ ├── vil_nitf2_classification.cxx │ │ ├── vil_nitf2_classification.h │ │ ├── vil_nitf2_compound_field_value.cxx │ │ ├── vil_nitf2_compound_field_value.h │ │ ├── vil_nitf2_data_mask_table.cxx │ │ ├── vil_nitf2_data_mask_table.h │ │ ├── vil_nitf2_des.cxx │ │ ├── vil_nitf2_des.h │ │ ├── vil_nitf2_field.cxx │ │ ├── vil_nitf2_field.h │ │ ├── vil_nitf2_field_definition.cxx │ │ ├── vil_nitf2_field_definition.h │ │ ├── vil_nitf2_field_formatter.cxx │ │ ├── vil_nitf2_field_formatter.h │ │ ├── vil_nitf2_field_functor.cxx │ │ ├── vil_nitf2_field_functor.h │ │ ├── vil_nitf2_field_sequence.cxx │ │ ├── vil_nitf2_field_sequence.h │ │ ├── vil_nitf2_header.cxx │ │ ├── vil_nitf2_header.h │ │ ├── vil_nitf2_image.cxx │ │ ├── vil_nitf2_image.h │ │ ├── vil_nitf2_image_subheader.cxx │ │ ├── vil_nitf2_image_subheader.h │ │ ├── vil_nitf2_index_vector.h │ │ ├── vil_nitf2_scalar_field.cxx │ │ ├── vil_nitf2_scalar_field.h │ │ ├── vil_nitf2_tagged_record.cxx │ │ ├── vil_nitf2_tagged_record.h │ │ ├── vil_nitf2_tagged_record_definition.cxx │ │ ├── vil_nitf2_tagged_record_definition.h │ │ ├── vil_nitf2_typed_array_field.h │ │ ├── vil_nitf2_typed_field_formatter.cxx │ │ ├── vil_nitf2_typed_field_formatter.h │ │ ├── vil_nitf2_typed_scalar_field.h │ │ ├── vil_openjpeg.cxx │ │ ├── vil_openjpeg.h │ │ ├── vil_openjpeg_pyramid_image_resource.cxx │ │ ├── vil_openjpeg_pyramid_image_resource.h │ │ ├── vil_png.cxx │ │ ├── vil_png.h │ │ ├── vil_pnm.cxx │ │ ├── vil_pnm.h │ │ ├── vil_pyramid_image_list.cxx │ │ ├── vil_pyramid_image_list.h │ │ ├── vil_ras.cxx │ │ ├── vil_ras.h │ │ ├── vil_tiff.cxx │ │ ├── vil_tiff.h │ │ ├── vil_tiff_header.cxx │ │ ├── vil_tiff_header.h │ │ ├── vil_viff.cxx │ │ ├── vil_viff.h │ │ ├── vil_viffheader.cxx │ │ └── vil_viffheader.h │ ├── introduction_doxy.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vil_io_smart_ptr+vil_image_view_base-.cxx │ │ │ ├── vil_io_smart_ptr+vil_memory_chunk-.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vcl_vector+vil_image_view+float----.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vcl_vector+vil_image_view+int----.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vil_image_view+byte---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vil_image_view+float---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vil_image_view+int---.cxx │ │ │ ├── vsl_vector_io+vil_image_view+byte--.cxx │ │ │ ├── vsl_vector_io+vil_image_view+float--.cxx │ │ │ └── vsl_vector_io+vil_image_view+int--.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_image_view_io.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_memory_chunk_io.cxx │ │ │ └── test_template_include.cxx │ │ ├── vil_io_image_view.h │ │ ├── vil_io_image_view_base.cxx │ │ ├── vil_io_image_view_base.h │ │ ├── vil_io_memory_chunk.cxx │ │ ├── vil_io_memory_chunk.h │ │ ├── vil_io_smart_ptr.h │ │ └── vil_io_smart_ptr.hxx │ ├── notes.html │ ├── scripts │ │ ├── convertvil2tovil.run_me_second.pl │ │ ├── convertviltovil1.run_me_first.pl │ │ └── vil1tovil.pl │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── cpp_above_matlab_comparing_cdi_code.png │ │ ├── file_read_data │ │ │ ├── ff_ga16bit_true.txt │ │ │ ├── ff_ga8bit.bmp │ │ │ ├── ff_ga8bit_compressed.png │ │ │ ├── ff_ga8bit_true.txt │ │ │ ├── ff_ga8bit_uncompressed.tif │ │ │ ├── ff_grey10bit_labview_bitdepth_false.png │ │ │ ├── ff_grey10bit_labview_bitdepth_true.png │ │ │ ├── ff_grey10bit_true.txt │ │ │ ├── ff_grey16bit.iris │ │ │ ├── ff_grey16bit.mit │ │ │ ├── ff_grey16bit_ascii.pgm │ │ │ ├── ff_grey16bit_bigendian.viff │ │ │ ├── ff_grey16bit_labview_bitdepth_false.png │ │ │ ├── ff_grey16bit_labview_bitdepth_true.png │ │ │ ├── ff_grey16bit_littleendian.viff │ │ │ ├── ff_grey16bit_raw.pgm │ │ │ ├── ff_grey16bit_true.txt │ │ │ ├── ff_grey16bit_true_for_dicom.txt │ │ │ ├── ff_grey16bit_true_for_nitf.txt │ │ │ ├── ff_grey16bit_uncompressed.dcm │ │ │ ├── ff_grey16bit_uncompressed.nitf │ │ │ ├── ff_grey16bit_uncompressed2.dcm │ │ │ ├── ff_grey16bit_uncompressed3.dcm │ │ │ ├── ff_grey1bit.png │ │ │ ├── ff_grey1bit_ascii.pbm │ │ │ ├── ff_grey1bit_raw.pbm │ │ │ ├── ff_grey1bit_true.txt │ │ │ ├── ff_grey1bit_uncompressed.tif │ │ │ ├── ff_grey24bit_ascii.pgm │ │ │ ├── ff_grey32bit_ascii.pgm │ │ │ ├── ff_grey32bit_bigendian.viff │ │ │ ├── ff_grey32bit_littleendian.viff │ │ │ ├── ff_grey32bit_true.txt │ │ │ ├── ff_grey8bit.bmp │ │ │ ├── ff_grey8bit.iris │ │ │ ├── ff_grey8bit.mit │ │ │ ├── ff_grey8bit_ascii.pgm │ │ │ ├── ff_grey8bit_bigendian.viff │ │ │ ├── ff_grey8bit_compressed.jpg │ │ │ ├── ff_grey8bit_littleendian.viff │ │ │ ├── ff_grey8bit_nocol.ras │ │ │ ├── ff_grey8bit_raw.pgm │ │ │ ├── ff_grey8bit_raw2.pgm │ │ │ ├── ff_grey8bit_true.txt │ │ │ ├── ff_grey8bit_true_for_nitf.txt │ │ │ ├── ff_grey8bit_uncompressed.dcm │ │ │ ├── ff_grey8bit_uncompressed.nitf │ │ │ ├── ff_grey8bit_uncompressed2.dcm │ │ │ ├── ff_grey_double_bigendian.viff │ │ │ ├── ff_grey_double_littleendian.viff │ │ │ ├── ff_grey_float.tif │ │ │ ├── ff_grey_float_12bit_uncompressed.dcm │ │ │ ├── ff_grey_float_bigendian.viff │ │ │ ├── ff_grey_float_littleendian.viff │ │ │ ├── ff_grey_float_true.txt │ │ │ ├── ff_grey_float_true_for_dicom.txt │ │ │ ├── ff_nitf_16bit.nitf │ │ │ ├── ff_nitf_16bit_true.txt │ │ │ ├── ff_nitf_1bit_lut.nsif │ │ │ ├── ff_nitf_1bit_lut_true.txt │ │ │ ├── ff_nitf_32bit.nitf │ │ │ ├── ff_nitf_32bit_true.txt │ │ │ ├── ff_nitf_8bit_b.nitf │ │ │ ├── ff_nitf_8bit_p.nitf │ │ │ ├── ff_nitf_8bit_r.nitf │ │ │ ├── ff_nitf_8bit_s.nitf │ │ │ ├── ff_nitf_8bit_true.txt │ │ │ ├── ff_nitf_double.nitf │ │ │ ├── ff_nitf_float.nitf │ │ │ ├── ff_nitf_float_true.txt │ │ │ ├── ff_planar16bit_true.txt │ │ │ ├── ff_planar8bit_true.txt │ │ │ ├── ff_rgb16bit_ascii.ppm │ │ │ ├── ff_rgb16bit_bigendian.viff │ │ │ ├── ff_rgb16bit_littleendian.viff │ │ │ ├── ff_rgb16bit_raw.ppm │ │ │ ├── ff_rgb16bit_true.txt │ │ │ ├── ff_rgb16bit_uncompressed.tif │ │ │ ├── ff_rgb8bit.iris │ │ │ ├── ff_rgb8bit.mit │ │ │ ├── ff_rgb8bit_ascii.ppm │ │ │ ├── ff_rgb8bit_bigendian.viff │ │ │ ├── ff_rgb8bit_compressed.png │ │ │ ├── ff_rgb8bit_indexed.ras │ │ │ ├── ff_rgb8bit_indexed_4bpp.png │ │ │ ├── ff_rgb8bit_littleendian.viff │ │ │ ├── ff_rgb8bit_packbits.tif │ │ │ ├── ff_rgb8bit_raw.ppm │ │ │ ├── ff_rgb8bit_raw.ras │ │ │ ├── ff_rgb8bit_topdown_ps.bmp │ │ │ ├── ff_rgb8bit_true.txt │ │ │ ├── ff_rgb8bit_uncompressed.png │ │ │ ├── ff_rgb8bit_uncompressed.tif │ │ │ ├── ff_rgb8bit_xv.bmp │ │ │ ├── ff_rgb8biteasy_ascii.ppm │ │ │ ├── ff_rgb8biteasy_compressed.jpg │ │ │ ├── ff_rgb8biteasy_true.txt │ │ │ ├── ff_rgba8bit_true.txt │ │ │ ├── ff_rgba8bit_uncompressed.tif │ │ │ ├── ff_rgba8bit_uncompressed_ps.bmp │ │ │ ├── jpeg2000 │ │ │ │ ├── file1.jp2 │ │ │ │ ├── file2.jp2 │ │ │ │ ├── file3.jp2 │ │ │ │ ├── file4.jp2 │ │ │ │ ├── file5.jp2 │ │ │ │ ├── file6.jp2 │ │ │ │ ├── file7.jp2 │ │ │ │ ├── file8.jp2 │ │ │ │ ├── file9.jp2 │ │ │ │ ├── opj_file1.tif │ │ │ │ ├── opj_file2.tif │ │ │ │ ├── opj_file4.tif │ │ │ │ ├── opj_file5.tif │ │ │ │ ├── opj_file6.tif │ │ │ │ ├── opj_file7.tif │ │ │ │ ├── opj_file8.tif │ │ │ │ └── opj_file9.tif │ │ │ ├── no_rowsperstrip.tif │ │ │ ├── no_rowsperstrip_true.txt │ │ │ ├── p0_12.j2k │ │ │ ├── p0_12_true.txt │ │ │ └── p0_12a.ntf │ │ ├── test_4_plane_tiff.cxx │ │ ├── test_bicub_interp.cxx │ │ ├── test_bilin_interp.cxx │ │ ├── test_blocked_image_resource.cxx │ │ ├── test_border.cxx │ │ ├── test_convert.cxx │ │ ├── test_deep_copy_3_plane.cxx │ │ ├── test_driver.cxx │ │ ├── test_file_format_read.cxx │ │ ├── test_image_list.cxx │ │ ├── test_image_loader_robustness.cxx │ │ ├── test_image_resource.cxx │ │ ├── test_image_view.cxx │ │ ├── test_image_view_maths.cxx │ │ ├── test_include.cxx │ │ ├── test_math_median.cxx │ │ ├── test_math_value_range.cxx │ │ ├── test_memory_chunk.cxx │ │ ├── test_na.cxx │ │ ├── test_nearest_interp.cxx │ │ ├── test_pixel_format.cxx │ │ ├── test_pyramid_image_resource.cxx │ │ ├── test_pyramid_image_view.cxx │ │ ├── test_resample_bicub.cxx │ │ ├── test_resample_bilin.cxx │ │ ├── test_resample_nearest.cxx │ │ ├── test_rotate_image.cxx │ │ ├── test_round.cxx │ │ ├── test_sample_grid_bicub.cxx │ │ ├── test_sample_grid_bilin.cxx │ │ ├── test_sample_profile_bicub.cxx │ │ ├── test_sample_profile_bilin.cxx │ │ ├── test_save_load_image.cxx │ │ ├── test_stream.cxx │ │ ├── test_template_include.cxx │ │ ├── test_warp.cxx │ │ ├── vil_test_access_timings.cxx │ │ ├── vil_test_access_timings_noplanes.cxx │ │ ├── vil_test_pair_access_timings.cxx │ │ └── vil_test_random_access_timings.cxx │ ├── vil_bicub_interp.h │ ├── vil_bicub_interp.hxx │ ├── vil_bilin_interp.h │ ├── vil_block_cache.cxx │ ├── vil_block_cache.h │ ├── vil_blocked_image_facade.cxx │ ├── vil_blocked_image_facade.h │ ├── vil_blocked_image_resource.cxx │ ├── vil_blocked_image_resource.h │ ├── vil_blocked_image_resource_sptr.h │ ├── vil_border.h │ ├── vil_cached_image_resource.cxx │ ├── vil_cached_image_resource.h │ ├── vil_chord.h │ ├── vil_clamp.cxx │ ├── vil_clamp.h │ ├── vil_color_table.cxx │ ├── vil_color_table.h │ ├── vil_config.h.in │ ├── vil_convert.h │ ├── vil_copy.cxx │ ├── vil_copy.h │ ├── vil_copy.hxx │ ├── vil_crop.cxx │ ├── vil_crop.h │ ├── vil_decimate.cxx │ ├── vil_decimate.h │ ├── vil_exception.h │ ├── vil_file_format.cxx │ ├── vil_file_format.h │ ├── vil_fill.h │ ├── vil_flatten.h │ ├── vil_flip.cxx │ ├── vil_flip.h │ ├── vil_fwd.h │ ├── vil_image_list.cxx │ ├── vil_image_list.h │ ├── vil_image_resource.cxx │ ├── vil_image_resource.h │ ├── vil_image_resource_plugin.cxx │ ├── vil_image_resource_plugin.h │ ├── vil_image_resource_sptr.h │ ├── vil_image_view.h │ ├── vil_image_view.hxx │ ├── vil_image_view_base.h │ ├── vil_load.cxx │ ├── vil_load.h │ ├── vil_math.cxx │ ├── vil_math.h │ ├── vil_memory_chunk.cxx │ ├── vil_memory_chunk.h │ ├── vil_memory_image.cxx │ ├── vil_memory_image.h │ ├── vil_na.cxx │ ├── vil_na.h │ ├── vil_nearest_interp.h │ ├── vil_new.cxx │ ├── vil_new.h │ ├── vil_open.cxx │ ├── vil_open.h │ ├── vil_pixel_format.cxx │ ├── vil_pixel_format.h │ ├── vil_plane.cxx │ ├── vil_plane.h │ ├── vil_print.cxx │ ├── vil_print.h │ ├── vil_property.h │ ├── vil_pyramid_image_resource.cxx │ ├── vil_pyramid_image_resource.h │ ├── vil_pyramid_image_resource_sptr.h │ ├── vil_pyramid_image_view.h │ ├── vil_pyramid_image_view.hxx │ ├── vil_resample_bicub.h │ ├── vil_resample_bicub.hxx │ ├── vil_resample_bilin.h │ ├── vil_resample_bilin.hxx │ ├── vil_resample_nearest.h │ ├── vil_resample_nearest.hxx │ ├── vil_rgb.h │ ├── vil_rgb.hxx │ ├── vil_rgba.h │ ├── vil_rgba.hxx │ ├── vil_rotate.h │ ├── vil_rotate.hxx │ ├── vil_round.h │ ├── vil_sample_grid_bicub.h │ ├── vil_sample_grid_bicub.hxx │ ├── vil_sample_grid_bilin.h │ ├── vil_sample_grid_bilin.hxx │ ├── vil_sample_profile_bicub.h │ ├── vil_sample_profile_bicub.hxx │ ├── vil_sample_profile_bilin.h │ ├── vil_sample_profile_bilin.hxx │ ├── vil_save.cxx │ ├── vil_save.h │ ├── vil_smart_ptr.h │ ├── vil_smart_ptr.hxx │ ├── vil_stream.cxx │ ├── vil_stream.h │ ├── vil_stream_core.cxx │ ├── vil_stream_core.h │ ├── vil_stream_fstream.cxx │ ├── vil_stream_fstream.h │ ├── vil_stream_fstream64.cxx │ ├── vil_stream_fstream64.h │ ├── vil_stream_read.cxx │ ├── vil_stream_read.h │ ├── vil_stream_section.cxx │ ├── vil_stream_section.h │ ├── vil_stream_url.cxx │ ├── vil_stream_url.h │ ├── vil_stream_write.cxx │ ├── vil_stream_write.h │ ├── vil_transform.h │ ├── vil_transpose.cxx │ ├── vil_transpose.h │ ├── vil_view_as.h │ └── vil_warp.h ├── vil1 │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── FORMATS.txt │ ├── NOTES.txt │ ├── README.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vil1_clamp+vil1_rgb+double-.cxx │ │ ├── vil1_convolve+byte-.cxx │ │ ├── vil1_convolve_1d+double.byte.double.double-.cxx │ │ ├── vil1_convolve_1d+double.double.double.double-.cxx │ │ ├── vil1_convolve_1d+double.double.double.float-.cxx │ │ ├── vil1_convolve_1d+double.float.double.double-.cxx │ │ ├── vil1_convolve_1d+double.uint_16.double.double-.cxx │ │ ├── vil1_convolve_1d+double.uint_32.double.double-.cxx │ │ ├── vil1_convolve_1d+float.byte.double.double-.cxx │ │ ├── vil1_convolve_1d+float.double.double.float-.cxx │ │ ├── vil1_convolve_simple+byte.byte.int.int-.cxx │ │ ├── vil1_convolve_simple+byte.double.double.float-.cxx │ │ ├── vil1_convolve_simple+byte.float.byte.float-.cxx │ │ ├── vil1_convolve_simple+byte.float.float.byte-.cxx │ │ ├── vil1_interpolate+double.double-.cxx │ │ ├── vil1_interpolate+float.double-.cxx │ │ ├── vil1_interpolate+float.float-.cxx │ │ ├── vil1_interpolate+uchar.double-.cxx │ │ ├── vil1_interpolate+uchar.uchar-.cxx │ │ ├── vil1_interpolate+vil1_rgb+uchar-.vil1_rgb+double--.cxx │ │ ├── vil1_interpolate+vil1_rgb+uchar-.vil1_rgb+float--.cxx │ │ ├── vil1_interpolate+vil1_rgb+uchar-.vil1_rgb+uchar--.cxx │ │ ├── vil1_memory_image_of+bool-.cxx │ │ ├── vil1_memory_image_of+double-.cxx │ │ ├── vil1_memory_image_of+float-.cxx │ │ ├── vil1_memory_image_of+signed_char-.cxx │ │ ├── vil1_memory_image_of+signed_int-.cxx │ │ ├── vil1_memory_image_of+signed_short-.cxx │ │ ├── vil1_memory_image_of+uchar-.cxx │ │ ├── vil1_memory_image_of+uint-.cxx │ │ ├── vil1_memory_image_of+ushort-.cxx │ │ ├── vil1_memory_image_of+vcl_complex+double--.cxx │ │ ├── vil1_memory_image_of+vcl_complex+float--.cxx │ │ ├── vil1_memory_image_of+vil1_rgb+double--.cxx │ │ ├── vil1_memory_image_of+vil1_rgb+float--.cxx │ │ ├── vil1_memory_image_of+vil1_rgb+uchar--.cxx │ │ ├── vil1_memory_image_of+vil1_rgb+vxl_uint_16--.cxx │ │ ├── vil1_memory_image_of+vil1_rgba+float--.cxx │ │ ├── vil1_ncc+float.float.double-.cxx │ │ ├── vil1_ncc+uchar.uchar.double-.cxx │ │ ├── vil1_resample_image+byte.uint-.cxx │ │ ├── vil1_resample_image+vil1_rgb+byte-.vil1_rgb+int--.cxx │ │ ├── vil1_rgb+double-.cxx │ │ ├── vil1_rgb+float-.cxx │ │ ├── vil1_rgb+long-.cxx │ │ ├── vil1_rgb+uchar-.cxx │ │ ├── vil1_rgb+uint-.cxx │ │ ├── vil1_rgb+vxl_uint_16-.cxx │ │ ├── vil1_rgba+float-.cxx │ │ ├── vil1_rgba+uchar-.cxx │ │ ├── vil1_ssd+float.float.double-.cxx │ │ └── vil1_ssd+uchar.uchar.int-.cxx │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── vil1_clamp_example.cxx │ │ ├── vil1_convert.cxx │ │ ├── vil1_convolve.cxx │ │ ├── vil1_convolve_1d.cxx │ │ ├── vil1_crop.cxx │ │ ├── vil1_flipud.cxx │ │ ├── vil1_info.cxx │ │ ├── vil1_print_section.cxx │ │ ├── vil1_rgb_example.cxx │ │ ├── vil1_scale.cxx │ │ └── vil1_scale_intensities_example.cxx │ ├── file_formats │ │ ├── vil1_bmp.cxx │ │ ├── vil1_bmp.h │ │ ├── vil1_bmp.notes │ │ ├── vil1_bmp_core_header.cxx │ │ ├── vil1_bmp_core_header.h │ │ ├── vil1_bmp_file_header.cxx │ │ ├── vil1_bmp_file_header.h │ │ ├── vil1_bmp_info_header.cxx │ │ ├── vil1_bmp_info_header.h │ │ ├── vil1_gen.cxx │ │ ├── vil1_gen.h │ │ ├── vil1_gif.cxx │ │ ├── vil1_gif.h │ │ ├── vil1_gif.notes │ │ ├── vil1_iris.cxx │ │ ├── vil1_iris.h │ │ ├── vil1_jpeg.cxx │ │ ├── vil1_jpeg.h │ │ ├── vil1_jpeg_compressor.cxx │ │ ├── vil1_jpeg_compressor.h │ │ ├── vil1_jpeg_decompressor.cxx │ │ ├── vil1_jpeg_decompressor.h │ │ ├── vil1_jpeg_destination_mgr.cxx │ │ ├── vil1_jpeg_destination_mgr.h │ │ ├── vil1_jpeg_source_mgr.cxx │ │ ├── vil1_jpeg_source_mgr.h │ │ ├── vil1_mit.cxx │ │ ├── vil1_mit.h │ │ ├── vil1_png.cxx │ │ ├── vil1_png.h │ │ ├── vil1_pnm.cxx │ │ ├── vil1_pnm.h │ │ ├── vil1_ras.cxx │ │ ├── vil1_ras.h │ │ ├── vil1_tiff.cxx │ │ ├── vil1_tiff.h │ │ ├── vil1_viff.cxx │ │ ├── vil1_viff.h │ │ ├── vil1_viff_support.c │ │ ├── vil1_viff_support.h │ │ └── vil1_viffheader.h │ ├── introduction_doxy.txt │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── file_read_data │ │ │ ├── ff_grey16bit_ascii.pgm │ │ │ ├── ff_grey16bit_bigendian.viff │ │ │ ├── ff_grey16bit_littleendian.viff │ │ │ ├── ff_grey16bit_raw.pgm │ │ │ ├── ff_grey16bit_true.txt │ │ │ ├── ff_grey1bit_ascii.pbm │ │ │ ├── ff_grey1bit_raw.pbm │ │ │ ├── ff_grey1bit_true.txt │ │ │ ├── ff_grey1bit_uncompressed.tif │ │ │ ├── ff_grey24bit_ascii.pgm │ │ │ ├── ff_grey32bit_ascii.pgm │ │ │ ├── ff_grey32bit_bigendian.viff │ │ │ ├── ff_grey32bit_littleendian.viff │ │ │ ├── ff_grey32bit_true.txt │ │ │ ├── ff_grey8bit.bmp │ │ │ ├── ff_grey8bit_ascii.pgm │ │ │ ├── ff_grey8bit_bigendian.viff │ │ │ ├── ff_grey8bit_compressed.jpg │ │ │ ├── ff_grey8bit_littleendian.viff │ │ │ ├── ff_grey8bit_nocol.ras │ │ │ ├── ff_grey8bit_raw.pgm │ │ │ ├── ff_grey8bit_true.txt │ │ │ ├── ff_grey_double_bigendian.viff │ │ │ ├── ff_grey_double_littleendian.viff │ │ │ ├── ff_grey_float_bigendian.viff │ │ │ ├── ff_grey_float_littleendian.viff │ │ │ ├── ff_grey_float_true.txt │ │ │ ├── ff_planar16bit_true.txt │ │ │ ├── ff_planar8bit_true.txt │ │ │ ├── ff_rgb16bit_ascii.ppm │ │ │ ├── ff_rgb16bit_bigendian.viff │ │ │ ├── ff_rgb16bit_littleendian.viff │ │ │ ├── ff_rgb16bit_raw.ppm │ │ │ ├── ff_rgb16bit_true.txt │ │ │ ├── ff_rgb16bit_uncompressed.tif │ │ │ ├── ff_rgb8bit.iris │ │ │ ├── ff_rgb8bit_ascii.ppm │ │ │ ├── ff_rgb8bit_bigendian.viff │ │ │ ├── ff_rgb8bit_compressed.png │ │ │ ├── ff_rgb8bit_indexed.ras │ │ │ ├── ff_rgb8bit_littleendian.viff │ │ │ ├── ff_rgb8bit_packbits.tif │ │ │ ├── ff_rgb8bit_raw.ppm │ │ │ ├── ff_rgb8bit_raw.ras │ │ │ ├── ff_rgb8bit_true.txt │ │ │ ├── ff_rgb8bit_uncompressed.png │ │ │ ├── ff_rgb8bit_uncompressed.tif │ │ │ ├── ff_rgb8bit_xv.bmp │ │ │ ├── ff_rgb8biteasy_ascii.ppm │ │ │ ├── ff_rgb8biteasy_compressed.jpg │ │ │ └── ff_rgb8biteasy_true.txt │ │ ├── square.pgm │ │ ├── test_assign.cxx │ │ ├── test_colour_space.cxx │ │ ├── test_copy.cxx │ │ ├── test_driver.cxx │ │ ├── test_file_format_read.cxx │ │ ├── test_flipud.cxx │ │ ├── test_include.cxx │ │ ├── test_interpolate.cxx │ │ ├── test_load.cxx │ │ ├── test_load_gen.cxx │ │ ├── test_memory_image.cxx │ │ ├── test_memory_image_of.cxx │ │ ├── test_resample.cxx │ │ ├── test_save_load_image.cxx │ │ ├── test_template_include.cxx │ │ ├── test_vil.cxx │ │ ├── test_write_endian.cxx │ │ ├── vil_vil1_compare_access_timings.cxx │ │ └── vil_vil1_compare_function_timings.cxx │ ├── vil1_16bit.cxx │ ├── vil1_16bit.h │ ├── vil1_32bit.cxx │ ├── vil1_32bit.h │ ├── vil1_block_cache_image_impl.cxx │ ├── vil1_block_cache_image_impl.h │ ├── vil1_byte_swap.cxx │ ├── vil1_byte_swap.h │ ├── vil1_clamp.cxx │ ├── vil1_clamp.h │ ├── vil1_clamp_image.cxx │ ├── vil1_clamp_image.h │ ├── vil1_clamp_image_impl.cxx │ ├── vil1_clamp_image_impl.h │ ├── vil1_colour_space.cxx │ ├── vil1_colour_space.h │ ├── vil1_convolve.h │ ├── vil1_convolve.hxx │ ├── vil1_convolve_1d.hxx │ ├── vil1_convolve_1d_x.hxx │ ├── vil1_convolve_1d_y.hxx │ ├── vil1_convolve_simple.h │ ├── vil1_convolve_simple.hxx │ ├── vil1_copy.cxx │ ├── vil1_copy.h │ ├── vil1_crop.cxx │ ├── vil1_crop.h │ ├── vil1_crop_image_impl.cxx │ ├── vil1_crop_image_impl.h │ ├── vil1_file_format.cxx │ ├── vil1_file_format.h │ ├── vil1_file_image.cxx │ ├── vil1_file_image.h │ ├── vil1_flip_components.cxx │ ├── vil1_flip_components.h │ ├── vil1_flip_components_impl.cxx │ ├── vil1_flip_components_impl.h │ ├── vil1_flipud.cxx │ ├── vil1_flipud.h │ ├── vil1_flipud_impl.cxx │ ├── vil1_flipud_impl.h │ ├── vil1_fwd.h │ ├── vil1_image.cxx │ ├── vil1_image.h │ ├── vil1_image_as.cxx │ ├── vil1_image_as.h │ ├── vil1_image_impl.cxx │ ├── vil1_image_impl.h │ ├── vil1_image_proxy.cxx │ ├── vil1_image_proxy.h │ ├── vil1_interpolate.h │ ├── vil1_interpolate.hxx │ ├── vil1_ip_traits.h │ ├── vil1_jpeglib.h │ ├── vil1_load.cxx │ ├── vil1_load.h │ ├── vil1_memory_image.cxx │ ├── vil1_memory_image.h │ ├── vil1_memory_image_impl.cxx │ ├── vil1_memory_image_impl.h │ ├── vil1_memory_image_of.h │ ├── vil1_memory_image_of.hxx │ ├── vil1_memory_image_of_format.hxx │ ├── vil1_memory_image_window.cxx │ ├── vil1_memory_image_window.h │ ├── vil1_ncc.h │ ├── vil1_ncc.hxx │ ├── vil1_new.cxx │ ├── vil1_new.h │ ├── vil1_open.cxx │ ├── vil1_open.h │ ├── vil1_pixel.cxx │ ├── vil1_pixel.h │ ├── vil1_property.h │ ├── vil1_pyramid.cxx │ ├── vil1_pyramid.h │ ├── vil1_resample.cxx │ ├── vil1_resample.h │ ├── vil1_resample_image.h │ ├── vil1_resample_image.hxx │ ├── vil1_resample_image_impl.cxx │ ├── vil1_resample_image_impl.h │ ├── vil1_rgb.h │ ├── vil1_rgb.hxx │ ├── vil1_rgb_byte.h │ ├── vil1_rgba.h │ ├── vil1_rgba.hxx │ ├── vil1_save.cxx │ ├── vil1_save.h │ ├── vil1_scale_intensities.cxx │ ├── vil1_scale_intensities.h │ ├── vil1_scale_intensities_image.cxx │ ├── vil1_scale_intensities_image.h │ ├── vil1_scale_intensities_image_impl.cxx │ ├── vil1_scale_intensities_image_impl.h │ ├── vil1_skip.cxx │ ├── vil1_skip.h │ ├── vil1_skip_image_impl.cxx │ ├── vil1_skip_image_impl.h │ ├── vil1_smooth.cxx │ ├── vil1_smooth.h │ ├── vil1_ssd.h │ ├── vil1_ssd.hxx │ ├── vil1_stream.cxx │ ├── vil1_stream.h │ ├── vil1_stream_core.cxx │ ├── vil1_stream_core.h │ ├── vil1_stream_fstream.cxx │ ├── vil1_stream_fstream.h │ ├── vil1_stream_section.cxx │ ├── vil1_stream_section.h │ ├── vil1_stream_url.cxx │ ├── vil1_stream_url.h │ ├── vil1_vil.h │ ├── vil1_warp.cxx │ ├── vil1_warp.h │ └── vil1_warp.hxx ├── vnl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vnl_c_na_vector+double-.cxx │ │ ├── vnl_c_na_vector+float-.cxx │ │ ├── vnl_c_vector+double-.cxx │ │ ├── vnl_c_vector+double_complex-.cxx │ │ ├── vnl_c_vector+float-.cxx │ │ ├── vnl_c_vector+float_complex-.cxx │ │ ├── vnl_c_vector+int-.cxx │ │ ├── vnl_c_vector+long-.cxx │ │ ├── vnl_c_vector+long_double-.cxx │ │ ├── vnl_c_vector+long_double_complex-.cxx │ │ ├── vnl_c_vector+longlong-.cxx │ │ ├── vnl_c_vector+schar-.cxx │ │ ├── vnl_c_vector+uchar-.cxx │ │ ├── vnl_c_vector+uint-.cxx │ │ ├── vnl_c_vector+ulong-.cxx │ │ ├── vnl_c_vector+ulonglong-.cxx │ │ ├── vnl_c_vector+ushort-.cxx │ │ ├── vnl_c_vector+vnl_bignum-.cxx │ │ ├── vnl_c_vector+vnl_rational-.cxx │ │ ├── vnl_complex_ops+double-.cxx │ │ ├── vnl_complex_ops+float-.cxx │ │ ├── vnl_complex_ops+long_double-.cxx │ │ ├── vnl_det+double-.cxx │ │ ├── vnl_det+float-.cxx │ │ ├── vnl_det+long_double-.cxx │ │ ├── vnl_det+vcl_complex+double--.cxx │ │ ├── vnl_det+vcl_complex+float--.cxx │ │ ├── vnl_det+vcl_complex+long_double--.cxx │ │ ├── vnl_det+vnl_bignum-.cxx │ │ ├── vnl_det+vnl_rational-.cxx │ │ ├── vnl_diag_matrix+double-.cxx │ │ ├── vnl_diag_matrix+float-.cxx │ │ ├── vnl_diag_matrix+int-.cxx │ │ ├── vnl_diag_matrix+long_double-.cxx │ │ ├── vnl_diag_matrix+vcl_complex+double--.cxx │ │ ├── vnl_diag_matrix+vcl_complex+float--.cxx │ │ ├── vnl_diag_matrix+vnl_bignum-.cxx │ │ ├── vnl_diag_matrix+vnl_rational-.cxx │ │ ├── vnl_diag_matrix_fixed+double.3-.cxx │ │ ├── vnl_diag_matrix_fixed+double.4-.cxx │ │ ├── vnl_diag_matrix_fixed+float.3-.cxx │ │ ├── vnl_diag_matrix_fixed+float.4-.cxx │ │ ├── vnl_file_matrix+double-.cxx │ │ ├── vnl_file_matrix+float-.cxx │ │ ├── vnl_file_matrix+long_double-.cxx │ │ ├── vnl_file_matrix+vnl_rational-.cxx │ │ ├── vnl_file_vector+double-.cxx │ │ ├── vnl_fortran_copy+double-.cxx │ │ ├── vnl_fortran_copy+float-.cxx │ │ ├── vnl_fortran_copy+long_double-.cxx │ │ ├── vnl_fortran_copy+vcl_complex+double--.cxx │ │ ├── vnl_fortran_copy+vcl_complex+float--.cxx │ │ ├── vnl_fortran_copy+vcl_complex+long_double--.cxx │ │ ├── vnl_fortran_copy_fixed+double.3.3-.cxx │ │ ├── vnl_fortran_copy_fixed+double.3.4-.cxx │ │ ├── vnl_fortran_copy_fixed+float.3.3-.cxx │ │ ├── vnl_fortran_copy_fixed+float.3.4-.cxx │ │ ├── vnl_hungarian_algorithm+double-.cxx │ │ ├── vnl_hungarian_algorithm+int-.cxx │ │ ├── vnl_identity+int-.cxx │ │ ├── vnl_matlab_print+double-.cxx │ │ ├── vnl_matlab_print+float-.cxx │ │ ├── vnl_matlab_print+int-.cxx │ │ ├── vnl_matlab_print+long_double-.cxx │ │ ├── vnl_matlab_print+uint-.cxx │ │ ├── vnl_matlab_print+vcl_complex+double--.cxx │ │ ├── vnl_matlab_print+vcl_complex+float--.cxx │ │ ├── vnl_matlab_print+vcl_complex+long_double--.cxx │ │ ├── vnl_matlab_print2+vnl_matrix+double--.cxx │ │ ├── vnl_matlab_print2+vnl_matrix+float--.cxx │ │ ├── vnl_matlab_print2+vnl_matrix+vcl_complex+double---.cxx │ │ ├── vnl_matlab_print2+vnl_vector+double--.cxx │ │ ├── vnl_matlab_print2+vnl_vector+float--.cxx │ │ ├── vnl_matlab_print2+vnl_vector+vcl_complex+double---.cxx │ │ ├── vnl_matrix+double-.cxx │ │ ├── vnl_matrix+float-.cxx │ │ ├── vnl_matrix+int-.cxx │ │ ├── vnl_matrix+long-.cxx │ │ ├── vnl_matrix+long_double-.cxx │ │ ├── vnl_matrix+longlong-.cxx │ │ ├── vnl_matrix+schar-.cxx │ │ ├── vnl_matrix+uchar-.cxx │ │ ├── vnl_matrix+uint-.cxx │ │ ├── vnl_matrix+ulong-.cxx │ │ ├── vnl_matrix+ulonglong-.cxx │ │ ├── vnl_matrix+ushort-.cxx │ │ ├── vnl_matrix+vcl_complex+double--.cxx │ │ ├── vnl_matrix+vcl_complex+float--.cxx │ │ ├── vnl_matrix+vcl_complex+long_double--.cxx │ │ ├── vnl_matrix+vnl_bignum-.cxx │ │ ├── vnl_matrix+vnl_rational-.cxx │ │ ├── vnl_matrix_exp+vnl_matrix+double--.cxx │ │ ├── vnl_matrix_exp+vnl_matrix_fixed+double.1.1--.cxx │ │ ├── vnl_matrix_exp+vnl_matrix_fixed+double.2.2--.cxx │ │ ├── vnl_matrix_exp+vnl_matrix_fixed+double.3.3--.cxx │ │ ├── vnl_matrix_exp+vnl_matrix_fixed+double.4.4--.cxx │ │ ├── vnl_matrix_fixed+double.1.1-.cxx │ │ ├── vnl_matrix_fixed+double.1.2-.cxx │ │ ├── vnl_matrix_fixed+double.1.3-.cxx │ │ ├── vnl_matrix_fixed+double.1.6-.cxx │ │ ├── vnl_matrix_fixed+double.2.1-.cxx │ │ ├── vnl_matrix_fixed+double.2.11-.cxx │ │ ├── vnl_matrix_fixed+double.2.2-.cxx │ │ ├── vnl_matrix_fixed+double.2.3-.cxx │ │ ├── vnl_matrix_fixed+double.2.4-.cxx │ │ ├── vnl_matrix_fixed+double.2.6-.cxx │ │ ├── vnl_matrix_fixed+double.2.8-.cxx │ │ ├── vnl_matrix_fixed+double.2.9-.cxx │ │ ├── vnl_matrix_fixed+double.3.1-.cxx │ │ ├── vnl_matrix_fixed+double.3.2-.cxx │ │ ├── vnl_matrix_fixed+double.3.3-.cxx │ │ ├── vnl_matrix_fixed+double.3.4-.cxx │ │ ├── vnl_matrix_fixed+double.3.6-.cxx │ │ ├── vnl_matrix_fixed+double.3.9-.cxx │ │ ├── vnl_matrix_fixed+double.4.1-.cxx │ │ ├── vnl_matrix_fixed+double.4.2-.cxx │ │ ├── vnl_matrix_fixed+double.4.20-.cxx │ │ ├── vnl_matrix_fixed+double.4.3-.cxx │ │ ├── vnl_matrix_fixed+double.4.4-.cxx │ │ ├── vnl_matrix_fixed+double.6.1-.cxx │ │ ├── vnl_matrix_fixed+double.6.2-.cxx │ │ ├── vnl_matrix_fixed+double.6.3-.cxx │ │ ├── vnl_matrix_fixed+double.6.6-.cxx │ │ ├── vnl_matrix_fixed+float.1.1-.cxx │ │ ├── vnl_matrix_fixed+float.1.2-.cxx │ │ ├── vnl_matrix_fixed+float.1.3-.cxx │ │ ├── vnl_matrix_fixed+float.2.1-.cxx │ │ ├── vnl_matrix_fixed+float.2.2-.cxx │ │ ├── vnl_matrix_fixed+float.2.3-.cxx │ │ ├── vnl_matrix_fixed+float.2.4-.cxx │ │ ├── vnl_matrix_fixed+float.3.1-.cxx │ │ ├── vnl_matrix_fixed+float.3.3-.cxx │ │ ├── vnl_matrix_fixed+float.3.4-.cxx │ │ ├── vnl_matrix_fixed+float.3.5-.cxx │ │ ├── vnl_matrix_fixed+float.4.20-.cxx │ │ ├── vnl_matrix_fixed+float.4.3-.cxx │ │ ├── vnl_matrix_fixed+float.4.4-.cxx │ │ ├── vnl_matrix_fixed+float.5.5-.cxx │ │ ├── vnl_matrix_fixed+float.6.6-.cxx │ │ ├── vnl_matrix_fixed+int.1.1-.cxx │ │ ├── vnl_matrix_fixed+int.2.2-.cxx │ │ ├── vnl_matrix_fixed+int.3.4-.cxx │ │ ├── vnl_matrix_fixed+vnl_bignum.3.3-.cxx │ │ ├── vnl_matrix_fixed+vnl_rational.3.3-.cxx │ │ ├── vnl_matrix_fixed+vnl_rational.4.4-.cxx │ │ ├── vnl_matrix_fixed_ref+double.3.3-.cxx │ │ ├── vnl_matrix_fixed_ref+double.3.4-.cxx │ │ ├── vnl_matrix_fixed_ref+float.3.3-.cxx │ │ ├── vnl_matrix_fixed_ref+float.3.4-.cxx │ │ ├── vnl_matrix_ref+double-.cxx │ │ ├── vnl_matrix_ref+float-.cxx │ │ ├── vnl_matrix_ref+vnl_bignum-.cxx │ │ ├── vnl_matrix_ref+vnl_rational-.cxx │ │ ├── vnl_polynomial+double-.cxx │ │ ├── vnl_polynomial+long-.cxx │ │ ├── vnl_polynomial+vnl_decnum-.cxx │ │ ├── vnl_polynomial+vnl_rational-.cxx │ │ ├── vnl_quaternion+double-.cxx │ │ ├── vnl_quaternion+float-.cxx │ │ ├── vnl_quaternion+vnl_rational-.cxx │ │ ├── vnl_rank+double-.cxx │ │ ├── vnl_rank+int-.cxx │ │ ├── vnl_sparse_matrix+double-.cxx │ │ ├── vnl_sparse_matrix+float-.cxx │ │ ├── vnl_sparse_matrix+int-.cxx │ │ ├── vnl_sparse_matrix+vcl_complex+double--.cxx │ │ ├── vnl_sparse_matrix+vcl_complex+float--.cxx │ │ ├── vnl_sparse_matrix+vnl_bignum-.cxx │ │ ├── vnl_sparse_matrix+vnl_rational-.cxx │ │ ├── vnl_sym_matrix+double-.cxx │ │ ├── vnl_sym_matrix+float-.cxx │ │ ├── vnl_sym_matrix+int-.cxx │ │ ├── vnl_sym_matrix+vcl_complex+double--.cxx │ │ ├── vnl_sym_matrix+vcl_complex+float--.cxx │ │ ├── vnl_sym_matrix+vcl_complex+long_double--.cxx │ │ ├── vnl_unary_function+double.vnl_vector+double--.cxx │ │ ├── vnl_unary_function+int.int-.cxx │ │ ├── vnl_vector+double-.cxx │ │ ├── vnl_vector+float-.cxx │ │ ├── vnl_vector+int-.cxx │ │ ├── vnl_vector+long-.cxx │ │ ├── vnl_vector+long_double-.cxx │ │ ├── vnl_vector+longlong-.cxx │ │ ├── vnl_vector+schar-.cxx │ │ ├── vnl_vector+uchar-.cxx │ │ ├── vnl_vector+uint-.cxx │ │ ├── vnl_vector+ulong-.cxx │ │ ├── vnl_vector+ulonglong-.cxx │ │ ├── vnl_vector+ushort-.cxx │ │ ├── vnl_vector+vcl_complex+double--.cxx │ │ ├── vnl_vector+vcl_complex+float--.cxx │ │ ├── vnl_vector+vcl_complex+long_double--.cxx │ │ ├── vnl_vector+vnl_bignum-.cxx │ │ ├── vnl_vector+vnl_rational-.cxx │ │ ├── vnl_vector_fixed+double.1-.cxx │ │ ├── vnl_vector_fixed+double.10-.cxx │ │ ├── vnl_vector_fixed+double.2-.cxx │ │ ├── vnl_vector_fixed+double.20-.cxx │ │ ├── vnl_vector_fixed+double.3-.cxx │ │ ├── vnl_vector_fixed+double.4-.cxx │ │ ├── vnl_vector_fixed+double.5-.cxx │ │ ├── vnl_vector_fixed+double.6-.cxx │ │ ├── vnl_vector_fixed+double.9-.cxx │ │ ├── vnl_vector_fixed+float.1-.cxx │ │ ├── vnl_vector_fixed+float.10-.cxx │ │ ├── vnl_vector_fixed+float.16-.cxx │ │ ├── vnl_vector_fixed+float.2-.cxx │ │ ├── vnl_vector_fixed+float.3-.cxx │ │ ├── vnl_vector_fixed+float.4-.cxx │ │ ├── vnl_vector_fixed+float.5-.cxx │ │ ├── vnl_vector_fixed+float.9-.cxx │ │ ├── vnl_vector_fixed+int.1-.cxx │ │ ├── vnl_vector_fixed+int.2-.cxx │ │ ├── vnl_vector_fixed+int.3-.cxx │ │ ├── vnl_vector_fixed+int.4-.cxx │ │ ├── vnl_vector_fixed+uchar.16-.cxx │ │ ├── vnl_vector_fixed+ushort.2-.cxx │ │ ├── vnl_vector_fixed+vnl_bignum.1-.cxx │ │ ├── vnl_vector_fixed+vnl_bignum.2-.cxx │ │ ├── vnl_vector_fixed+vnl_bignum.3-.cxx │ │ ├── vnl_vector_fixed+vnl_rational.1-.cxx │ │ ├── vnl_vector_fixed+vnl_rational.2-.cxx │ │ ├── vnl_vector_fixed+vnl_rational.3-.cxx │ │ ├── vnl_vector_fixed+vnl_rational.4-.cxx │ │ ├── vnl_vector_fixed_ref+double.3-.cxx │ │ ├── vnl_vector_fixed_ref+double.4-.cxx │ │ └── vnl_vector_fixed_ref+float.3-.cxx │ ├── algo │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vnl_adjugate+double-.cxx │ │ │ ├── vnl_adjugate+float-.cxx │ │ │ ├── vnl_adjugate+int-.cxx │ │ │ ├── vnl_chi_squared+double-.cxx │ │ │ ├── vnl_chi_squared+float-.cxx │ │ │ ├── vnl_chi_squared+int-.cxx │ │ │ ├── vnl_convolve+double.double-.cxx │ │ │ ├── vnl_convolve+float.float-.cxx │ │ │ ├── vnl_convolve+int.double-.cxx │ │ │ ├── vnl_convolve+int.float-.cxx │ │ │ ├── vnl_convolve+int.int-.cxx │ │ │ ├── vnl_determinant+double-.cxx │ │ │ ├── vnl_determinant+float-.cxx │ │ │ ├── vnl_determinant+int-.cxx │ │ │ ├── vnl_determinant+vcl_complex+double--.cxx │ │ │ ├── vnl_determinant+vcl_complex+float--.cxx │ │ │ ├── vnl_fft_1d+double-.cxx │ │ │ ├── vnl_fft_1d+float-.cxx │ │ │ ├── vnl_fft_2d+double-.cxx │ │ │ ├── vnl_fft_2d+float-.cxx │ │ │ ├── vnl_fft_base+1.double-.cxx │ │ │ ├── vnl_fft_base+1.float-.cxx │ │ │ ├── vnl_fft_base+2.double-.cxx │ │ │ ├── vnl_fft_base+2.float-.cxx │ │ │ ├── vnl_fft_prime_factors+double-.cxx │ │ │ ├── vnl_fft_prime_factors+float-.cxx │ │ │ ├── vnl_matrix_inverse+double-.cxx │ │ │ ├── vnl_matrix_inverse+float-.cxx │ │ │ ├── vnl_orthogonal_complement+double-.cxx │ │ │ ├── vnl_orthogonal_complement+float-.cxx │ │ │ ├── vnl_orthogonal_complement+vcl_complex+double--.cxx │ │ │ ├── vnl_orthogonal_complement+vcl_complex+float--.cxx │ │ │ ├── vnl_qr+double-.cxx │ │ │ ├── vnl_qr+float-.cxx │ │ │ ├── vnl_qr+vcl_complex+double--.cxx │ │ │ ├── vnl_qr+vcl_complex+float--.cxx │ │ │ ├── vnl_scatter_3x3+double-.cxx │ │ │ ├── vnl_scatter_3x3+float-.cxx │ │ │ ├── vnl_svd+double-.cxx │ │ │ ├── vnl_svd+float-.cxx │ │ │ ├── vnl_svd+vcl_complex+double--.cxx │ │ │ ├── vnl_svd+vcl_complex+float--.cxx │ │ │ ├── vnl_svd_economy+double-.cxx │ │ │ ├── vnl_svd_economy+float-.cxx │ │ │ ├── vnl_svd_economy+vcl_complex+double--.cxx │ │ │ ├── vnl_svd_economy+vcl_complex+float--.cxx │ │ │ ├── vnl_svd_fixed+double.3.3-.cxx │ │ │ ├── vnl_svd_fixed+double.3.4-.cxx │ │ │ ├── vnl_svd_fixed+float.3.3-.cxx │ │ │ ├── vnl_svd_fixed+float.3.4-.cxx │ │ │ ├── vnl_symmetric_eigensystem+double-.cxx │ │ │ └── vnl_symmetric_eigensystem+float-.cxx │ │ ├── amoeba_algorithm.pdf │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_algo.cxx │ │ │ ├── test_amoeba.cxx │ │ │ ├── test_bracket_minimum.cxx │ │ │ ├── test_brent_minimizer.cxx │ │ │ ├── test_cholesky.cxx │ │ │ ├── test_complex_algo.cxx │ │ │ ├── test_complex_eigensystem.cxx │ │ │ ├── test_convolve.cxx │ │ │ ├── test_cpoly_roots.cxx │ │ │ ├── test_determinant.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_driver_with_core_utils.cxx │ │ │ ├── test_fft.cxx │ │ │ ├── test_fft1d.cxx │ │ │ ├── test_fft2d.cxx │ │ │ ├── test_functions.cxx │ │ │ ├── test_generalized_eigensystem.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_integral.cxx │ │ │ ├── test_ldl_cholesky.cxx │ │ │ ├── test_levenberg_marquardt.cxx │ │ │ ├── test_matrix_update.cxx │ │ │ ├── test_minimizers.cxx │ │ │ ├── test_powell.cxx │ │ │ ├── test_qr.cxx │ │ │ ├── test_qsvd.cxx │ │ │ ├── test_rank.cxx │ │ │ ├── test_real_eigensystem.cxx │ │ │ ├── test_rnpoly_roots.cxx │ │ │ ├── test_rpoly_roots.cxx │ │ │ ├── test_solve_qp.cxx │ │ │ ├── test_sparse_lm.cxx │ │ │ ├── test_sparse_lu.cxx │ │ │ ├── test_sparse_matrix.cxx │ │ │ ├── test_svd.cxx │ │ │ ├── test_svd_fixed.cxx │ │ │ ├── test_symmetric_eigensystem.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_util.cxx │ │ │ └── test_util.h │ │ ├── vnl_adaptsimpson_integral.cxx │ │ ├── vnl_adaptsimpson_integral.h │ │ ├── vnl_adjugate.h │ │ ├── vnl_adjugate.hxx │ │ ├── vnl_algo_fwd.h │ │ ├── vnl_amoeba.cxx │ │ ├── vnl_amoeba.h │ │ ├── vnl_bracket_minimum.cxx │ │ ├── vnl_bracket_minimum.h │ │ ├── vnl_brent.cxx │ │ ├── vnl_brent.h │ │ ├── vnl_brent_minimizer.cxx │ │ ├── vnl_brent_minimizer.h │ │ ├── vnl_chi_squared.h │ │ ├── vnl_chi_squared.hxx │ │ ├── vnl_cholesky.cxx │ │ ├── vnl_cholesky.h │ │ ├── vnl_complex_eigensystem.cxx │ │ ├── vnl_complex_eigensystem.h │ │ ├── vnl_complex_generalized_schur.cxx │ │ ├── vnl_complex_generalized_schur.h │ │ ├── vnl_conjugate_gradient.cxx │ │ ├── vnl_conjugate_gradient.h │ │ ├── vnl_convolve.h │ │ ├── vnl_convolve.hxx │ │ ├── vnl_cpoly_roots.cxx │ │ ├── vnl_cpoly_roots.h │ │ ├── vnl_determinant.cxx │ │ ├── vnl_determinant.h │ │ ├── vnl_determinant.hxx │ │ ├── vnl_discrete_diff.cxx │ │ ├── vnl_discrete_diff.h │ │ ├── vnl_fft.cxx │ │ ├── vnl_fft.h │ │ ├── vnl_fft_1d.h │ │ ├── vnl_fft_1d.hxx │ │ ├── vnl_fft_2d.h │ │ ├── vnl_fft_2d.hxx │ │ ├── vnl_fft_base.h │ │ ├── vnl_fft_base.hxx │ │ ├── vnl_fft_prime_factors.h │ │ ├── vnl_fft_prime_factors.hxx │ │ ├── vnl_fit_parabola.h │ │ ├── vnl_gaussian_kernel_1d.cxx │ │ ├── vnl_gaussian_kernel_1d.h │ │ ├── vnl_generalized_eigensystem.cxx │ │ ├── vnl_generalized_eigensystem.h │ │ ├── vnl_generalized_schur.cxx │ │ ├── vnl_generalized_schur.h │ │ ├── vnl_lbfgs.cxx │ │ ├── vnl_lbfgs.h │ │ ├── vnl_lbfgsb.cxx │ │ ├── vnl_lbfgsb.h │ │ ├── vnl_ldl_cholesky.cxx │ │ ├── vnl_ldl_cholesky.h │ │ ├── vnl_levenberg_marquardt.cxx │ │ ├── vnl_levenberg_marquardt.h │ │ ├── vnl_lsqr.cxx │ │ ├── vnl_lsqr.h │ │ ├── vnl_matrix_inverse.h │ │ ├── vnl_matrix_inverse.hxx │ │ ├── vnl_matrix_update.h │ │ ├── vnl_netlib.h │ │ ├── vnl_orthogonal_complement.h │ │ ├── vnl_orthogonal_complement.hxx │ │ ├── vnl_powell.cxx │ │ ├── vnl_powell.h │ │ ├── vnl_qr.h │ │ ├── vnl_qr.hxx │ │ ├── vnl_real_eigensystem.cxx │ │ ├── vnl_real_eigensystem.h │ │ ├── vnl_rnpoly_solve.cxx │ │ ├── vnl_rnpoly_solve.h │ │ ├── vnl_rpoly_roots.cxx │ │ ├── vnl_rpoly_roots.h │ │ ├── vnl_scatter_3x3.h │ │ ├── vnl_scatter_3x3.hxx │ │ ├── vnl_simpson_integral.cxx │ │ ├── vnl_simpson_integral.h │ │ ├── vnl_solve_qp.cxx │ │ ├── vnl_solve_qp.h │ │ ├── vnl_sparse_lm.cxx │ │ ├── vnl_sparse_lm.h │ │ ├── vnl_sparse_lu.cxx │ │ ├── vnl_sparse_lu.h │ │ ├── vnl_sparse_symmetric_eigensystem.cxx │ │ ├── vnl_sparse_symmetric_eigensystem.h │ │ ├── vnl_svd.h │ │ ├── vnl_svd.hxx │ │ ├── vnl_svd_economy.h │ │ ├── vnl_svd_economy.hxx │ │ ├── vnl_svd_fixed.h │ │ ├── vnl_svd_fixed.hxx │ │ ├── vnl_symmetric_eigensystem.h │ │ └── vnl_symmetric_eigensystem.hxx │ ├── dll.h │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── calculate.cxx │ │ ├── time_fastops.cxx │ │ ├── vnl_amoeba.cxx │ │ ├── vnl_complex_squareroot.cxx │ │ ├── vnl_complex_svd.cxx │ │ ├── vnl_lsqr_test.cxx │ │ ├── vnl_planefit.cxx │ │ ├── vnl_polynomial_RPN.cxx │ │ ├── vnl_polynomial_factoring.cxx │ │ ├── vnl_polyroots.cxx │ │ ├── vnl_rosenbrock.cxx │ │ ├── vnl_sample_beta.cxx │ │ ├── vnl_sparse_matrix_example.cxx │ │ ├── vnl_svd.cxx │ │ └── vnl_svd_economy.cxx │ ├── introduction_doxy.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── .NoDartCoverage │ │ │ ├── vnl_io_diag_matrix+double-.cxx │ │ │ ├── vnl_io_diag_matrix+float-.cxx │ │ │ ├── vnl_io_diag_matrix+int-.cxx │ │ │ ├── vnl_io_diag_matrix+vcl_complex+double--.cxx │ │ │ ├── vnl_io_diag_matrix+vcl_complex+float--.cxx │ │ │ ├── vnl_io_matrix+double-.cxx │ │ │ ├── vnl_io_matrix+float-.cxx │ │ │ ├── vnl_io_matrix+int-.cxx │ │ │ ├── vnl_io_matrix+long-.cxx │ │ │ ├── vnl_io_matrix+schar-.cxx │ │ │ ├── vnl_io_matrix+uchar-.cxx │ │ │ ├── vnl_io_matrix+uint-.cxx │ │ │ ├── vnl_io_matrix+ulong-.cxx │ │ │ ├── vnl_io_matrix+vcl_complex+double--.cxx │ │ │ ├── vnl_io_matrix+vcl_complex+float--.cxx │ │ │ ├── vnl_io_matrix_fixed+double.1.1-.cxx │ │ │ ├── vnl_io_matrix_fixed+double.2.2-.cxx │ │ │ ├── vnl_io_matrix_fixed+double.3.3-.cxx │ │ │ ├── vnl_io_matrix_fixed+double.3.4-.cxx │ │ │ ├── vnl_io_matrix_fixed+double.4.20-.cxx │ │ │ ├── vnl_io_matrix_fixed+double.4.4-.cxx │ │ │ ├── vnl_io_matrix_fixed+double.6.6-.cxx │ │ │ ├── vnl_io_matrix_fixed+float.3.3-.cxx │ │ │ ├── vnl_io_matrix_fixed+float.3.4-.cxx │ │ │ ├── vnl_io_matrix_fixed+float.4.20-.cxx │ │ │ ├── vnl_io_matrix_fixed+float.4.4-.cxx │ │ │ ├── vnl_io_sparse_matrix+double-.cxx │ │ │ ├── vnl_io_sparse_matrix+float-.cxx │ │ │ ├── vnl_io_sym_matrix+double-.cxx │ │ │ ├── vnl_io_sym_matrix+float-.cxx │ │ │ ├── vnl_io_sym_matrix+int-.cxx │ │ │ ├── vnl_io_vector+double-.cxx │ │ │ ├── vnl_io_vector+float-.cxx │ │ │ ├── vnl_io_vector+int-.cxx │ │ │ ├── vnl_io_vector+long-.cxx │ │ │ ├── vnl_io_vector+schar-.cxx │ │ │ ├── vnl_io_vector+uchar-.cxx │ │ │ ├── vnl_io_vector+uint-.cxx │ │ │ ├── vnl_io_vector+ulong-.cxx │ │ │ ├── vnl_io_vector+vcl_complex+double--.cxx │ │ │ ├── vnl_io_vector+vcl_complex+float--.cxx │ │ │ ├── vnl_io_vector_fixed+double.10-.cxx │ │ │ ├── vnl_io_vector_fixed+double.128-.cxx │ │ │ ├── vnl_io_vector_fixed+double.2-.cxx │ │ │ ├── vnl_io_vector_fixed+double.3-.cxx │ │ │ ├── vnl_io_vector_fixed+double.4-.cxx │ │ │ ├── vnl_io_vector_fixed+double.6-.cxx │ │ │ ├── vnl_io_vector_fixed+float.10-.cxx │ │ │ ├── vnl_io_vector_fixed+float.16-.cxx │ │ │ ├── vnl_io_vector_fixed+float.2-.cxx │ │ │ ├── vnl_io_vector_fixed+float.3-.cxx │ │ │ ├── vnl_io_vector_fixed+float.4-.cxx │ │ │ ├── vnl_io_vector_fixed+int.2-.cxx │ │ │ ├── vnl_io_vector_fixed+int.4-.cxx │ │ │ ├── vnl_io_vector_fixed+uchar.16-.cxx │ │ │ ├── vnl_io_vector_fixed+ushort.2-.cxx │ │ │ ├── vsl_map_io+uint.vnl_double_2-.cxx │ │ │ ├── vsl_map_io+vcl_string.vcl_vector+vnl_vector+double---.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vcl_vector+vnl_vector+double----.cxx │ │ │ ├── vsl_vector_io+vcl_vector+vnl_vector_fixed+ushort.2---.cxx │ │ │ ├── vsl_vector_io+vnl_matrix+double--.cxx │ │ │ ├── vsl_vector_io+vnl_matrix_fixed+double.3.3--.cxx │ │ │ ├── vsl_vector_io+vnl_vector+double--.cxx │ │ │ ├── vsl_vector_io+vnl_vector+float--.cxx │ │ │ └── vsl_vector_io+vnl_vector_fixed+float.3--.cxx │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── golden_test_vnl_io.bvl │ │ │ ├── golden_test_vnl_io.cxx │ │ │ ├── test_bignum_io.cxx │ │ │ ├── test_diag_matrix_io.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_matrix_fixed_io.cxx │ │ │ ├── test_matrix_io.cxx │ │ │ ├── test_nonlinear_minimizer_io.cxx │ │ │ ├── test_rational_io.cxx │ │ │ ├── test_real_npolynomial_io.cxx │ │ │ ├── test_real_polynomial_io.cxx │ │ │ ├── test_sparse_matrix_io.cxx │ │ │ ├── test_sym_matrix_io.cxx │ │ │ ├── test_template_include.cxx │ │ │ ├── test_vector_fixed_io.cxx │ │ │ └── test_vector_io.cxx │ │ ├── vnl_io_bignum.cxx │ │ ├── vnl_io_bignum.h │ │ ├── vnl_io_diag_matrix.h │ │ ├── vnl_io_diag_matrix.hxx │ │ ├── vnl_io_matrix.h │ │ ├── vnl_io_matrix.hxx │ │ ├── vnl_io_matrix_fixed.h │ │ ├── vnl_io_matrix_fixed.hxx │ │ ├── vnl_io_nonlinear_minimizer.cxx │ │ ├── vnl_io_nonlinear_minimizer.h │ │ ├── vnl_io_rational.cxx │ │ ├── vnl_io_rational.h │ │ ├── vnl_io_real_npolynomial.cxx │ │ ├── vnl_io_real_npolynomial.h │ │ ├── vnl_io_real_polynomial.cxx │ │ ├── vnl_io_real_polynomial.h │ │ ├── vnl_io_sparse_matrix.h │ │ ├── vnl_io_sparse_matrix.hxx │ │ ├── vnl_io_sym_matrix.h │ │ ├── vnl_io_sym_matrix.hxx │ │ ├── vnl_io_vector.h │ │ ├── vnl_io_vector.hxx │ │ ├── vnl_io_vector_fixed.h │ │ └── vnl_io_vector_fixed.hxx │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── basic_operation_timings.cxx │ │ ├── data_3x3_matrix │ │ ├── test_alignment.cxx │ │ ├── test_arithmetic.cxx │ │ ├── test_arithmetic_body.h │ │ ├── test_bessel.cxx │ │ ├── test_bignum.cxx │ │ ├── test_complex.cxx │ │ ├── test_complexify.cxx │ │ ├── test_crs_index.cxx │ │ ├── test_decnum.cxx │ │ ├── test_diag_matrix.cxx │ │ ├── test_diag_matrix_fixed.cxx │ │ ├── test_driver.cxx │ │ ├── test_driver_with_core_utils.cxx │ │ ├── test_fastops.cxx │ │ ├── test_file_matrix.cxx │ │ ├── test_finite.cxx │ │ ├── test_gamma.cxx │ │ ├── test_hungarian_algorithm.cxx │ │ ├── test_include.cxx │ │ ├── test_integrant.cxx │ │ ├── test_inverse.cxx │ │ ├── test_math.cxx │ │ ├── test_matlab.cxx │ │ ├── test_matrix.cxx │ │ ├── test_matrix_exp.cxx │ │ ├── test_matrix_fixed.cxx │ │ ├── test_matrix_fixed_ref.cxx │ │ ├── test_na.cxx │ │ ├── test_numeric_traits.cxx │ │ ├── test_polynomial.cxx │ │ ├── test_pow_log.cxx │ │ ├── test_power.cxx │ │ ├── test_quaternion.cxx │ │ ├── test_random.cxx │ │ ├── test_rational.cxx │ │ ├── test_real_npolynomial.cxx │ │ ├── test_real_polynomial.cxx │ │ ├── test_resize.cxx │ │ ├── test_rotation_matrix.cxx │ │ ├── test_sample.cxx │ │ ├── test_sparse_lst_sqr_function.cxx │ │ ├── test_sparse_matrix.cxx │ │ ├── test_sym_matrix.cxx │ │ ├── test_template_include.cxx │ │ ├── test_transpose.cxx │ │ ├── test_vector.cxx │ │ ├── test_vector_fixed_ref.cxx │ │ └── test_vnl_index_sort.cxx │ ├── vnl_T_n.h │ ├── vnl_alloc.cxx │ ├── vnl_alloc.h │ ├── vnl_analytic_integrant.h │ ├── vnl_bessel.cxx │ ├── vnl_bessel.h │ ├── vnl_beta.h │ ├── vnl_bignum.cxx │ ├── vnl_bignum.h │ ├── vnl_bignum_traits.cxx │ ├── vnl_bignum_traits.h │ ├── vnl_block.cxx │ ├── vnl_block.h │ ├── vnl_c_na_vector.h │ ├── vnl_c_na_vector.hxx │ ├── vnl_c_vector.h │ ├── vnl_c_vector.hxx │ ├── vnl_complex.h │ ├── vnl_complex_ops.hxx │ ├── vnl_complex_traits.h │ ├── vnl_complexify.h │ ├── vnl_config.h.in │ ├── vnl_copy.cxx │ ├── vnl_copy.h │ ├── vnl_cost_function.cxx │ ├── vnl_cost_function.h │ ├── vnl_cross.h │ ├── vnl_cross_product_matrix.h │ ├── vnl_crs_index.cxx │ ├── vnl_crs_index.h │ ├── vnl_decnum.cxx │ ├── vnl_decnum.h │ ├── vnl_decnum_traits.cxx │ ├── vnl_decnum_traits.h │ ├── vnl_definite_integral.cxx │ ├── vnl_definite_integral.h │ ├── vnl_det.h │ ├── vnl_det.hxx │ ├── vnl_diag_matrix.h │ ├── vnl_diag_matrix.hxx │ ├── vnl_diag_matrix_fixed.h │ ├── vnl_diag_matrix_fixed.hxx │ ├── vnl_double_1x1.h │ ├── vnl_double_1x2.h │ ├── vnl_double_1x3.h │ ├── vnl_double_2.h │ ├── vnl_double_2x1.h │ ├── vnl_double_2x2.h │ ├── vnl_double_2x3.h │ ├── vnl_double_3.h │ ├── vnl_double_3x1.h │ ├── vnl_double_3x2.h │ ├── vnl_double_3x3.h │ ├── vnl_double_3x4.h │ ├── vnl_double_4.h │ ├── vnl_double_4x3.h │ ├── vnl_double_4x4.h │ ├── vnl_erf.cxx │ ├── vnl_erf.h │ ├── vnl_error.cxx │ ├── vnl_error.h │ ├── vnl_fastops.cxx │ ├── vnl_fastops.h │ ├── vnl_file_matrix.h │ ├── vnl_file_matrix.hxx │ ├── vnl_file_vector.h │ ├── vnl_file_vector.hxx │ ├── vnl_finite.h │ ├── vnl_float_1x1.h │ ├── vnl_float_1x2.h │ ├── vnl_float_1x3.h │ ├── vnl_float_2.h │ ├── vnl_float_2x1.h │ ├── vnl_float_2x2.h │ ├── vnl_float_3.h │ ├── vnl_float_3x1.h │ ├── vnl_float_3x3.h │ ├── vnl_float_3x4.h │ ├── vnl_float_4.h │ ├── vnl_float_4x3.h │ ├── vnl_float_4x4.h │ ├── vnl_fortran_copy.h │ ├── vnl_fortran_copy.hxx │ ├── vnl_fortran_copy_fixed.h │ ├── vnl_fortran_copy_fixed.hxx │ ├── vnl_fwd.h │ ├── vnl_gamma.cxx │ ├── vnl_gamma.h │ ├── vnl_hungarian_algorithm.h │ ├── vnl_hungarian_algorithm.hxx │ ├── vnl_identity.h │ ├── vnl_identity_3x3.h │ ├── vnl_imag.h │ ├── vnl_index_sort.h │ ├── vnl_int_1x1.h │ ├── vnl_int_2.h │ ├── vnl_int_2x2.h │ ├── vnl_int_3.h │ ├── vnl_int_4.h │ ├── vnl_int_matrix.cxx │ ├── vnl_int_matrix.h │ ├── vnl_integrant_fnct.h │ ├── vnl_inverse.h │ ├── vnl_least_squares_cost_function.cxx │ ├── vnl_least_squares_cost_function.h │ ├── vnl_least_squares_function.cxx │ ├── vnl_least_squares_function.h │ ├── vnl_linear_operators_3.h │ ├── vnl_linear_system.cxx │ ├── vnl_linear_system.h │ ├── vnl_math.cxx │ ├── vnl_math.h │ ├── vnl_matlab_filewrite.cxx │ ├── vnl_matlab_filewrite.h │ ├── vnl_matlab_header.h │ ├── vnl_matlab_print.h │ ├── vnl_matlab_print.hxx │ ├── vnl_matlab_print2.h │ ├── vnl_matlab_print_format.cxx │ ├── vnl_matlab_print_format.h │ ├── vnl_matlab_print_scalar.cxx │ ├── vnl_matlab_print_scalar.h │ ├── vnl_matlab_read.cxx │ ├── vnl_matlab_read.h │ ├── vnl_matlab_write.cxx │ ├── vnl_matlab_write.h │ ├── vnl_matops.cxx │ ├── vnl_matops.h │ ├── vnl_matrix.h │ ├── vnl_matrix.hxx │ ├── vnl_matrix_exp.h │ ├── vnl_matrix_exp.hxx │ ├── vnl_matrix_fixed.h │ ├── vnl_matrix_fixed.hxx │ ├── vnl_matrix_fixed_ref.h │ ├── vnl_matrix_fixed_ref.hxx │ ├── vnl_matrix_ref.h │ ├── vnl_na.cxx │ ├── vnl_na.h │ ├── vnl_nonlinear_minimizer.cxx │ ├── vnl_nonlinear_minimizer.h │ ├── vnl_numeric_traits.cxx │ ├── vnl_numeric_traits.h │ ├── vnl_operators.h │ ├── vnl_polynomial.h │ ├── vnl_polynomial.hxx │ ├── vnl_power.h │ ├── vnl_quaternion.h │ ├── vnl_quaternion.hxx │ ├── vnl_random.cxx │ ├── vnl_random.h │ ├── vnl_rank.h │ ├── vnl_rank.hxx │ ├── vnl_rational.cxx │ ├── vnl_rational.h │ ├── vnl_rational_traits.cxx │ ├── vnl_rational_traits.h │ ├── vnl_real.h │ ├── vnl_real_npolynomial.cxx │ ├── vnl_real_npolynomial.h │ ├── vnl_real_polynomial.cxx │ ├── vnl_real_polynomial.h │ ├── vnl_rotation_matrix.cxx │ ├── vnl_rotation_matrix.h │ ├── vnl_sample.cxx │ ├── vnl_sample.h │ ├── vnl_scalar_join_iterator.h │ ├── vnl_scalar_join_iterator.hxx │ ├── vnl_sparse_lst_sqr_function.cxx │ ├── vnl_sparse_lst_sqr_function.h │ ├── vnl_sparse_matrix.h │ ├── vnl_sparse_matrix.hxx │ ├── vnl_sparse_matrix_linear_system.cxx │ ├── vnl_sparse_matrix_linear_system.h │ ├── vnl_sse.h │ ├── vnl_sym_matrix.h │ ├── vnl_sym_matrix.hxx │ ├── vnl_tag.h │ ├── vnl_trace.h │ ├── vnl_transpose.h │ ├── vnl_unary_function.h │ ├── vnl_unary_function.hxx │ ├── vnl_vector.h │ ├── vnl_vector.hxx │ ├── vnl_vector_fixed.h │ ├── vnl_vector_fixed.hxx │ ├── vnl_vector_fixed_ref.h │ ├── vnl_vector_fixed_ref.hxx │ ├── vnl_vector_ref.h │ └── xio │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ ├── vnl_xio_matrix+double-.cxx │ │ ├── vnl_xio_matrix_fixed+double.2.2-.cxx │ │ ├── vnl_xio_matrix_fixed+double.2.4-.cxx │ │ ├── vnl_xio_matrix_fixed+double.3.3-.cxx │ │ ├── vnl_xio_quaternion+double-.cxx │ │ ├── vnl_xio_quaternion+float-.cxx │ │ ├── vnl_xio_vector+double-.cxx │ │ ├── vnl_xio_vector+float-.cxx │ │ ├── vnl_xio_vector+int-.cxx │ │ ├── vnl_xio_vector_fixed+double.2-.cxx │ │ └── vnl_xio_vector_fixed+double.3-.cxx │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_template_include.cxx │ │ └── test_vnl_xio.cxx │ │ ├── vnl_xio_matrix.h │ │ ├── vnl_xio_matrix.hxx │ │ ├── vnl_xio_matrix_fixed.h │ │ ├── vnl_xio_matrix_fixed.hxx │ │ ├── vnl_xio_quaternion.h │ │ ├── vnl_xio_quaternion.hxx │ │ ├── vnl_xio_vector.h │ │ ├── vnl_xio_vector.hxx │ │ ├── vnl_xio_vector_fixed.h │ │ └── vnl_xio_vector_fixed.hxx ├── vpdl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── vpdl_distribution+double.0-.cxx │ │ ├── vpdl_distribution+double.1-.cxx │ │ ├── vpdl_distribution+double.2-.cxx │ │ ├── vpdl_distribution+double.3-.cxx │ │ ├── vpdl_distribution+float.0-.cxx │ │ ├── vpdl_distribution+float.1-.cxx │ │ ├── vpdl_distribution+float.2-.cxx │ │ └── vpdl_distribution+float.3-.cxx │ ├── introduction_doxy.txt │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ ├── test_eigen_sym_matrix.cxx │ │ ├── test_gaussian.cxx │ │ ├── test_gaussian_indep.cxx │ │ ├── test_gaussian_sphere.cxx │ │ ├── test_include.cxx │ │ ├── test_kernel_gaussian_sfbw.cxx │ │ ├── test_mixture.cxx │ │ ├── test_mixture_of.cxx │ │ ├── test_template_include.cxx │ │ ├── test_update_gaussian.cxx │ │ └── test_update_mog.cxx │ ├── vpdl_distribution.h │ ├── vpdl_distribution.hxx │ ├── vpdl_gaussian.h │ ├── vpdl_gaussian_base.h │ ├── vpdl_gaussian_indep.h │ ├── vpdl_gaussian_sphere.h │ ├── vpdl_kernel_base.h │ ├── vpdl_kernel_gaussian_sfbw.h │ ├── vpdl_mixture.h │ ├── vpdl_mixture_of.h │ ├── vpdl_multi_cmp_dist.h │ └── vpdt │ │ ├── vpdt_access.h │ │ ├── vpdt_dist_traits.h │ │ ├── vpdt_distribution_accessors.h │ │ ├── vpdt_eigen_sym_matrix.h │ │ ├── vpdt_enable_if.h │ │ ├── vpdt_field_default.h │ │ ├── vpdt_field_traits.h │ │ ├── vpdt_gaussian.h │ │ ├── vpdt_gaussian_detector.h │ │ ├── vpdt_log_probability.h │ │ ├── vpdt_mixture_accessors.h │ │ ├── vpdt_mixture_detector.h │ │ ├── vpdt_mixture_of.h │ │ ├── vpdt_mog_fitness.h │ │ ├── vpdt_norm_metric.h │ │ ├── vpdt_num_obs.h │ │ ├── vpdt_probability.h │ │ ├── vpdt_update_gaussian.h │ │ └── vpdt_update_mog.h ├── vpgl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── vbl_smart_ptr+vpgl_camera+double--.cxx │ │ ├── vbl_smart_ptr+vpgl_camera+float--.cxx │ │ ├── vbl_smart_ptr+vpgl_lvcs-.cxx │ │ ├── vpgl_affine_camera+double-.cxx │ │ ├── vpgl_affine_camera+float-.cxx │ │ ├── vpgl_affine_fundamental_matrix+double-.cxx │ │ ├── vpgl_calibration_matrix+double-.cxx │ │ ├── vpgl_calibration_matrix+float-.cxx │ │ ├── vpgl_essential_matrix+double-.cxx │ │ ├── vpgl_fundamental_matrix+double-.cxx │ │ ├── vpgl_fundamental_matrix+float-.cxx │ │ ├── vpgl_generic_camera+double-.cxx │ │ ├── vpgl_generic_camera+float-.cxx │ │ ├── vpgl_lens_distortion+double-.cxx │ │ ├── vpgl_lens_distortion+float-.cxx │ │ ├── vpgl_local_rational_camera+double-.cxx │ │ ├── vpgl_local_rational_camera+float-.cxx │ │ ├── vpgl_perspective_camera+double-.cxx │ │ ├── vpgl_perspective_camera+float-.cxx │ │ ├── vpgl_poly_radial_distortion+double.1-.cxx │ │ ├── vpgl_poly_radial_distortion+double.2-.cxx │ │ ├── vpgl_poly_radial_distortion+double.3-.cxx │ │ ├── vpgl_poly_radial_distortion+double.4-.cxx │ │ ├── vpgl_poly_radial_distortion+double.5-.cxx │ │ ├── vpgl_poly_radial_distortion+double.6-.cxx │ │ ├── vpgl_poly_radial_distortion+float.1-.cxx │ │ ├── vpgl_poly_radial_distortion+float.2-.cxx │ │ ├── vpgl_poly_radial_distortion+float.3-.cxx │ │ ├── vpgl_poly_radial_distortion+float.4-.cxx │ │ ├── vpgl_poly_radial_distortion+float.5-.cxx │ │ ├── vpgl_poly_radial_distortion+float.6-.cxx │ │ ├── vpgl_proj_camera+double-.cxx │ │ ├── vpgl_proj_camera+float-.cxx │ │ ├── vpgl_radial_distortion+double-.cxx │ │ ├── vpgl_radial_distortion+float-.cxx │ │ ├── vpgl_rational_camera+double-.cxx │ │ └── vpgl_rational_camera+float-.cxx │ ├── algo │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── vpgl_em_compute_5_point+double-.cxx │ │ │ ├── vpgl_ray_intersect+double-.cxx │ │ │ └── vpgl_ray_intersect+float-.cxx │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ └── vpgl_synth_bundle_adjust.cxx │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_affine_rectification.cxx │ │ │ ├── test_ba_fixed_k_lsqr.cxx │ │ │ ├── test_ba_shared_k_lsqr.cxx │ │ │ ├── test_backproject.cxx │ │ │ ├── test_bundle_adjust.cxx │ │ │ ├── test_camera_compute.cxx │ │ │ ├── test_camera_convert.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_em_compute_5_point.cxx │ │ │ ├── test_fm_compute.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_lens_warp_mapper.cxx │ │ │ ├── test_optimize_camera.cxx │ │ │ ├── test_ortho_procrustes.cxx │ │ │ ├── test_project.cxx │ │ │ ├── test_rational_adjust.cxx │ │ │ ├── test_rational_adjust_onept.cxx │ │ │ ├── test_ray.cxx │ │ │ ├── test_ray_intersect.cxx │ │ │ ├── test_template_include.cxx │ │ │ └── test_triangulate.cxx │ │ ├── vpgl_affine_rectification.cxx │ │ ├── vpgl_affine_rectification.h │ │ ├── vpgl_ba_fixed_k_lsqr.cxx │ │ ├── vpgl_ba_fixed_k_lsqr.h │ │ ├── vpgl_ba_shared_k_lsqr.cxx │ │ ├── vpgl_ba_shared_k_lsqr.h │ │ ├── vpgl_backproject.cxx │ │ ├── vpgl_backproject.h │ │ ├── vpgl_bundle_adjust.cxx │ │ ├── vpgl_bundle_adjust.h │ │ ├── vpgl_bundle_adjust_lsqr.cxx │ │ ├── vpgl_bundle_adjust_lsqr.h │ │ ├── vpgl_calibration_matrix_compute.cxx │ │ ├── vpgl_calibration_matrix_compute.h │ │ ├── vpgl_camera_compute.cxx │ │ ├── vpgl_camera_compute.h │ │ ├── vpgl_camera_convert.cxx │ │ ├── vpgl_camera_convert.h │ │ ├── vpgl_camera_homographies.cxx │ │ ├── vpgl_camera_homographies.h │ │ ├── vpgl_camera_transform.cxx │ │ ├── vpgl_camera_transform.h │ │ ├── vpgl_em_compute_5_point.h │ │ ├── vpgl_em_compute_5_point.hxx │ │ ├── vpgl_fm_compute_2_point.cxx │ │ ├── vpgl_fm_compute_2_point.h │ │ ├── vpgl_fm_compute_7_point.cxx │ │ ├── vpgl_fm_compute_7_point.h │ │ ├── vpgl_fm_compute_8_point.cxx │ │ ├── vpgl_fm_compute_8_point.h │ │ ├── vpgl_invmap_cost_function.cxx │ │ ├── vpgl_invmap_cost_function.h │ │ ├── vpgl_lens_warp_mapper.h │ │ ├── vpgl_optimize_camera.cxx │ │ ├── vpgl_optimize_camera.h │ │ ├── vpgl_ortho_procrustes.cxx │ │ ├── vpgl_ortho_procrustes.h │ │ ├── vpgl_rational_adjust.cxx │ │ ├── vpgl_rational_adjust.h │ │ ├── vpgl_rational_adjust_multipt.cxx │ │ ├── vpgl_rational_adjust_multipt.h │ │ ├── vpgl_rational_adjust_onept.cxx │ │ ├── vpgl_rational_adjust_onept.h │ │ ├── vpgl_ray.cxx │ │ ├── vpgl_ray.h │ │ ├── vpgl_ray_intersect.h │ │ ├── vpgl_ray_intersect.hxx │ │ ├── vpgl_triangulate_points.cxx │ │ └── vpgl_triangulate_points.h │ ├── file_formats │ │ ├── CMakeLists.txt │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ └── test_include.cxx │ │ ├── vpgl_geo_camera.cxx │ │ ├── vpgl_geo_camera.h │ │ ├── vpgl_nitf_rational_camera.cxx │ │ └── vpgl_nitf_rational_camera.h │ ├── introduction_doxy.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── Templates │ │ │ ├── vbl_io_smart_ptr+vpgl_camera+double--.cxx │ │ │ ├── vbl_io_smart_ptr+vpgl_camera+float--.cxx │ │ │ ├── vpgl_io_affine_camera+double-.cxx │ │ │ ├── vpgl_io_affine_camera+float-.cxx │ │ │ ├── vpgl_io_camera+double-.cxx │ │ │ ├── vpgl_io_camera+float-.cxx │ │ │ ├── vpgl_io_local_rational_camera+double-.cxx │ │ │ ├── vpgl_io_local_rational_camera+float-.cxx │ │ │ ├── vpgl_io_perspective_camera+double-.cxx │ │ │ ├── vpgl_io_perspective_camera+float-.cxx │ │ │ ├── vpgl_io_proj_camera+double-.cxx │ │ │ ├── vpgl_io_proj_camera+float-.cxx │ │ │ ├── vpgl_io_rational_camera+double-.cxx │ │ │ └── vpgl_io_rational_camera+float-.cxx │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── test_affine_camera_io.cxx │ │ │ ├── test_camera_io.cxx │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ ├── test_local_rational_camera_io.cxx │ │ │ ├── test_lvcs_io.cxx │ │ │ ├── test_perspective_camera_io.cxx │ │ │ ├── test_proj_camera_io.cxx │ │ │ ├── test_rational_camera_io.cxx │ │ │ └── test_template_include.cxx │ │ ├── vpgl_io_affine_camera.h │ │ ├── vpgl_io_affine_camera.hxx │ │ ├── vpgl_io_camera.cxx │ │ ├── vpgl_io_camera.h │ │ ├── vpgl_io_camera.hxx │ │ ├── vpgl_io_local_rational_camera.h │ │ ├── vpgl_io_local_rational_camera.hxx │ │ ├── vpgl_io_lvcs.cxx │ │ ├── vpgl_io_lvcs.h │ │ ├── vpgl_io_perspective_camera.h │ │ ├── vpgl_io_perspective_camera.hxx │ │ ├── vpgl_io_proj_camera.h │ │ ├── vpgl_io_proj_camera.hxx │ │ ├── vpgl_io_rational_camera.h │ │ └── vpgl_io_rational_camera.hxx │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_affine_camera.cxx │ │ ├── test_calibration_matrix.cxx │ │ ├── test_driver.cxx │ │ ├── test_essential_matrix.cxx │ │ ├── test_fundamental_matrix.cxx │ │ ├── test_generic_camera.cxx │ │ ├── test_include.cxx │ │ ├── test_local_rational_camera.cxx │ │ ├── test_lvcs.cxx │ │ ├── test_perspective_camera.cxx │ │ ├── test_perspective_camera_decomposition.cxx │ │ ├── test_poly_radial_distortion.cxx │ │ ├── test_proj_camera.cxx │ │ ├── test_rational_camera.cxx │ │ └── test_template_include.cxx │ ├── vpgl_affine_camera.h │ ├── vpgl_affine_camera.hxx │ ├── vpgl_affine_fundamental_matrix.h │ ├── vpgl_affine_fundamental_matrix.hxx │ ├── vpgl_calibration_matrix.h │ ├── vpgl_calibration_matrix.hxx │ ├── vpgl_camera.h │ ├── vpgl_camera_double_sptr.h │ ├── vpgl_camera_float_sptr.h │ ├── vpgl_datum_conversion.cxx │ ├── vpgl_datum_conversion.h │ ├── vpgl_dll.h │ ├── vpgl_earth_constants.h │ ├── vpgl_essential_matrix.h │ ├── vpgl_essential_matrix.hxx │ ├── vpgl_fundamental_matrix.h │ ├── vpgl_fundamental_matrix.hxx │ ├── vpgl_generic_camera.h │ ├── vpgl_generic_camera.hxx │ ├── vpgl_lens_distortion.h │ ├── vpgl_lens_distortion.hxx │ ├── vpgl_local_rational_camera.h │ ├── vpgl_local_rational_camera.hxx │ ├── vpgl_lvcs.cxx │ ├── vpgl_lvcs.h │ ├── vpgl_lvcs_sptr.h │ ├── vpgl_perspective_camera.h │ ├── vpgl_perspective_camera.hxx │ ├── vpgl_poly_radial_distortion.h │ ├── vpgl_poly_radial_distortion.hxx │ ├── vpgl_proj_camera.h │ ├── vpgl_proj_camera.hxx │ ├── vpgl_radial_distortion.h │ ├── vpgl_radial_distortion.hxx │ ├── vpgl_rational_camera.h │ ├── vpgl_rational_camera.hxx │ ├── vpgl_utm.cxx │ ├── vpgl_utm.h │ └── xio │ │ ├── CMakeLists.txt │ │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ └── test_include.cxx │ │ ├── vpgl_xio_lvcs.cxx │ │ └── vpgl_xio_lvcs.h ├── vpl │ ├── CMakeLists.txt │ ├── introduction_doxy.txt │ ├── os_unix │ │ └── vpl.cxx │ ├── os_win32 │ │ └── vpl.cxx │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ └── test_unistd.cxx │ ├── vpl.cxx │ ├── vpl.h │ ├── vpl_fdopen.cxx │ ├── vpl_fdopen.h │ ├── vpl_fileno.cxx │ ├── vpl_fileno.h │ └── vpl_mutex.h ├── vsl │ ├── CMakeLists.txt │ ├── Templates │ │ ├── .NoDartCoverage │ │ ├── vsl_complex_io+double-.cxx │ │ ├── vsl_complex_io+float-.cxx │ │ ├── vsl_deque_io+bool-.cxx │ │ ├── vsl_deque_io+int-.cxx │ │ ├── vsl_list_io+float-.cxx │ │ ├── vsl_list_io+int-.cxx │ │ ├── vsl_map_io+int.int-.cxx │ │ ├── vsl_map_io+int.vcl_string-.cxx │ │ ├── vsl_map_io+uint.bool-.cxx │ │ ├── vsl_map_io+uint.uint-.cxx │ │ ├── vsl_map_io+vcl_pair+int.int-.uint-.cxx │ │ ├── vsl_map_io+vcl_string.int-.cxx │ │ ├── vsl_map_io+vcl_string.vcl_vector+float--.cxx │ │ ├── vsl_map_io+vcl_string.vcl_vector+ulong--.cxx │ │ ├── vsl_pair_io+double.uint-.cxx │ │ ├── vsl_pair_io+int.double-.cxx │ │ ├── vsl_pair_io+int.float-.cxx │ │ ├── vsl_pair_io+int.int-.cxx │ │ ├── vsl_pair_io+int.uint-.cxx │ │ ├── vsl_pair_io+uint.double-.cxx │ │ ├── vsl_pair_io+uint.float-.cxx │ │ ├── vsl_pair_io+uint.int-.cxx │ │ ├── vsl_pair_io+uint.uint-.cxx │ │ ├── vsl_pair_io+vcl_pair+int.int-.uint-.cxx │ │ ├── vsl_pair_io+vcl_pair+uint.uint-.double-.cxx │ │ ├── vsl_pair_io+vcl_pair+uint.uint-.int-.cxx │ │ ├── vsl_set_io+int-.cxx │ │ ├── vsl_set_io+uint-.cxx │ │ ├── vsl_set_io+vcl_string-.cxx │ │ ├── vsl_stack_io+int-.cxx │ │ ├── vsl_vector_io+double-.cxx │ │ ├── vsl_vector_io+float-.cxx │ │ ├── vsl_vector_io+int-.cxx │ │ ├── vsl_vector_io+int_64-.cxx │ │ ├── vsl_vector_io+long-.cxx │ │ ├── vsl_vector_io+uchar-.cxx │ │ ├── vsl_vector_io+uint-.cxx │ │ ├── vsl_vector_io+uint_64-.cxx │ │ ├── vsl_vector_io+ulong-.cxx │ │ ├── vsl_vector_io+vcl_pair+int.double--.cxx │ │ ├── vsl_vector_io+vcl_pair+int.float--.cxx │ │ ├── vsl_vector_io+vcl_pair+int.int--.cxx │ │ ├── vsl_vector_io+vcl_pair+uint.uint--.cxx │ │ ├── vsl_vector_io+vcl_string-.cxx │ │ ├── vsl_vector_io+vcl_vector+bool--.cxx │ │ ├── vsl_vector_io+vcl_vector+double--.cxx │ │ ├── vsl_vector_io+vcl_vector+float--.cxx │ │ ├── vsl_vector_io+vcl_vector+int--.cxx │ │ ├── vsl_vector_io+vcl_vector+uchar--.cxx │ │ ├── vsl_vector_io+vcl_vector+uint--.cxx │ │ ├── vsl_vector_io+vcl_vector+vcl_pair+uint.float---.cxx │ │ └── vsl_vector_io+vcl_vector+vcl_pair+uint.uint---.cxx │ ├── introduction_doxy.txt │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── golden_block_rle_comp_test.bvl │ │ ├── golden_test_binary_io.bvl │ │ ├── golden_vector_io_test.bvl │ │ ├── test_arbitrary_length_int_conversion.cxx │ │ ├── test_binary_io.cxx │ │ ├── test_block_rle_io.cxx │ │ ├── test_clipon_polymorphic_io.cxx │ │ ├── test_complex_io.cxx │ │ ├── test_deque_io.cxx │ │ ├── test_driver.cxx │ │ ├── test_include.cxx │ │ ├── test_indent.cxx │ │ ├── test_list_io.cxx │ │ ├── test_map_io.cxx │ │ ├── test_polymorphic_io.cxx │ │ ├── test_set_io.cxx │ │ ├── test_stack_io.cxx │ │ ├── test_string_io.cxx │ │ ├── test_template_include.cxx │ │ ├── test_vector_io.cxx │ │ └── test_vlarge_block_io.cxx │ ├── vsl_b_read_block_old.h │ ├── vsl_basic_xml_element.cxx │ ├── vsl_basic_xml_element.h │ ├── vsl_binary_explicit_io.h │ ├── vsl_binary_io.cxx │ ├── vsl_binary_io.h │ ├── vsl_binary_loader.h │ ├── vsl_binary_loader.hxx │ ├── vsl_binary_loader_base.cxx │ ├── vsl_binary_loader_base.h │ ├── vsl_block_binary.cxx │ ├── vsl_block_binary.h │ ├── vsl_block_binary_rle.h │ ├── vsl_clipon_binary_loader.h │ ├── vsl_clipon_binary_loader.hxx │ ├── vsl_complex_io.h │ ├── vsl_complex_io.hxx │ ├── vsl_deque_io.h │ ├── vsl_deque_io.hxx │ ├── vsl_fwd.h │ ├── vsl_indent.cxx │ ├── vsl_indent.h │ ├── vsl_list_io.h │ ├── vsl_list_io.hxx │ ├── vsl_map_io.h │ ├── vsl_map_io.hxx │ ├── vsl_pair_io.h │ ├── vsl_pair_io.hxx │ ├── vsl_quick_file.h │ ├── vsl_set_io.h │ ├── vsl_set_io.hxx │ ├── vsl_stack_io.h │ ├── vsl_stack_io.hxx │ ├── vsl_stream.h │ ├── vsl_string_io.h │ ├── vsl_string_io.hxx │ ├── vsl_vector_io.h │ ├── vsl_vector_io.hxx │ ├── vsl_vector_io_bool.cxx │ └── vsl_vector_io_vector_bool.cxx ├── vul │ ├── CMakeLists.txt │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── expand_path.cxx │ │ ├── vul_psfile_example.cxx │ │ └── vul_sequence_filename_example.cxx │ ├── introduction_doxy.txt │ ├── io │ │ ├── CMakeLists.txt │ │ ├── tests │ │ │ ├── .NoDartCoverage │ │ │ ├── CMakeLists.txt │ │ │ ├── test_driver.cxx │ │ │ ├── test_include.cxx │ │ │ └── test_user_info_io.cxx │ │ ├── vul_io_user_info.cxx │ │ └── vul_io_user_info.h │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── test_arg.cxx │ │ ├── test_awk.cxx │ │ ├── test_checksum.cxx │ │ ├── test_debug.cxx │ │ ├── test_driver.cxx │ │ ├── test_expand_path.cxx │ │ ├── test_file_iterator.cxx │ │ ├── test_get_time_as_string.cxx │ │ ├── test_include.cxx │ │ ├── test_ios_state.cxx │ │ ├── test_psfile.cxx │ │ ├── test_regexp.cxx │ │ ├── test_sleep_timer.cxx │ │ ├── test_sprintf.cxx │ │ ├── test_string.cxx │ │ ├── test_temp_filename.cxx │ │ ├── test_url.cxx │ │ ├── test_vul_file.cxx │ │ └── try_reg_exp.cxx │ ├── vul_arg.cxx │ ├── vul_arg.h │ ├── vul_awk.cxx │ ├── vul_awk.h │ ├── vul_checksum.h │ ├── vul_debug.cxx │ ├── vul_debug.h │ ├── vul_expand_path.cxx │ ├── vul_expand_path.h │ ├── vul_file.cxx │ ├── vul_file.h │ ├── vul_file_iterator.cxx │ ├── vul_file_iterator.h │ ├── vul_fwd.h │ ├── vul_get_timestamp.cxx │ ├── vul_get_timestamp.h │ ├── vul_ios_state.h │ ├── vul_printf.cxx │ ├── vul_printf.h │ ├── vul_psfile.cxx │ ├── vul_psfile.h │ ├── vul_redirector.cxx │ ├── vul_redirector.h │ ├── vul_reg_exp.cxx │ ├── vul_reg_exp.h │ ├── vul_sequence_filename_map.cxx │ ├── vul_sequence_filename_map.h │ ├── vul_sprintf.cxx │ ├── vul_sprintf.h │ ├── vul_string.cxx │ ├── vul_string.h │ ├── vul_temp_filename.cxx │ ├── vul_temp_filename.h │ ├── vul_timer.cxx │ ├── vul_timer.h │ ├── vul_timestamp.cxx │ ├── vul_timestamp.h │ ├── vul_trace.cxx │ ├── vul_trace.h │ ├── vul_url.cxx │ ├── vul_url.h │ ├── vul_user_info.cxx │ ├── vul_user_info.h │ └── vul_whereami.h ├── vxl_config.h.in ├── vxl_copyright.h └── vxl_version.h ├── scripts ├── PutStdHeadersFirst.py ├── VCL_ModernizeNaming.py ├── convert_old_to_new.pl ├── doxy │ ├── Doxyfile.XXX │ ├── README │ ├── build_all_doc.pl │ ├── checkout_packages.pl │ ├── data │ │ └── library_list.txt │ ├── doxy_header.html │ ├── faq.txt │ ├── gen_all_doxy.pl │ ├── gen_books.pl │ ├── gen_doxy_index.pl │ ├── how_it_works.txt │ ├── ourdoxygen.css │ ├── rundoxy.pl │ └── update_webserver.pl └── setup-for-development.bash ├── teaser_img.png ├── v3p ├── CMakeLists.txt ├── Hermes.URL ├── bzlib.URL ├── bzlib │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── blocksort.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── huffman.c │ └── randtable.c ├── clipper │ ├── CMakeLists.txt │ ├── License.txt │ ├── README │ ├── UpstreamNotes.txt │ ├── clipper.cpp │ └── clipper.hxx ├── dcmtk.URL ├── dcmtk │ ├── .NoDartCoverage │ ├── CHANGES.352 │ ├── CMakeLists.txt │ ├── COPYRIGHT │ ├── FAQ │ ├── HISTORY │ ├── INSTALL │ ├── README │ ├── README.v3p │ ├── config │ │ └── include │ │ │ └── osconfig_cmake.h.in │ ├── dcmdata │ │ ├── include │ │ │ ├── cmdlnarg.h │ │ │ ├── dcbytstr.h │ │ │ ├── dcchrstr.h │ │ │ ├── dccodec.h │ │ │ ├── dcdatset.h │ │ │ ├── dcdebug.h │ │ │ ├── dcdefine.h │ │ │ ├── dcdeftag.h │ │ │ ├── dcdicdir.h │ │ │ ├── dcdicent.h │ │ │ ├── dcdict.h │ │ │ ├── dcdirrec.h │ │ │ ├── dcelem.h │ │ │ ├── dcerror.h │ │ │ ├── dcfilefo.h │ │ │ ├── dchashdi.h │ │ │ ├── dcistrma.h │ │ │ ├── dcistrmf.h │ │ │ ├── dcistrmz.h │ │ │ ├── dcitem.h │ │ │ ├── dclist.h │ │ │ ├── dcmetinf.h │ │ │ ├── dcobject.h │ │ │ ├── dcofsetl.h │ │ │ ├── dcostrma.h │ │ │ ├── dcostrmf.h │ │ │ ├── dcostrmz.h │ │ │ ├── dcovlay.h │ │ │ ├── dcpcache.h │ │ │ ├── dcpixel.h │ │ │ ├── dcpixseq.h │ │ │ ├── dcpxitem.h │ │ │ ├── dcsequen.h │ │ │ ├── dcstack.h │ │ │ ├── dcswap.h │ │ │ ├── dctag.h │ │ │ ├── dctagkey.h │ │ │ ├── dctk.h │ │ │ ├── dctypes.h │ │ │ ├── dcuid.h │ │ │ ├── dcvm.h │ │ │ ├── dcvr.h │ │ │ ├── dcvrae.h │ │ │ ├── dcvras.h │ │ │ ├── dcvrat.h │ │ │ ├── dcvrcs.h │ │ │ ├── dcvrda.h │ │ │ ├── dcvrds.h │ │ │ ├── dcvrdt.h │ │ │ ├── dcvrfd.h │ │ │ ├── dcvrfl.h │ │ │ ├── dcvris.h │ │ │ ├── dcvrlo.h │ │ │ ├── dcvrlt.h │ │ │ ├── dcvrobow.h │ │ │ ├── dcvrof.h │ │ │ ├── dcvrpn.h │ │ │ ├── dcvrpobw.h │ │ │ ├── dcvrsh.h │ │ │ ├── dcvrsl.h │ │ │ ├── dcvrss.h │ │ │ ├── dcvrst.h │ │ │ ├── dcvrtm.h │ │ │ ├── dcvrui.h │ │ │ ├── dcvrul.h │ │ │ ├── dcvrulup.h │ │ │ ├── dcvrus.h │ │ │ ├── dcvrut.h │ │ │ └── dcxfer.h │ │ └── libsrc │ │ │ ├── dcbytstr.cxx │ │ │ ├── dcchrstr.cxx │ │ │ ├── dccodec.cxx │ │ │ ├── dcdatset.cxx │ │ │ ├── dcdebug.cxx │ │ │ ├── dcdicent.cxx │ │ │ ├── dcdict.cxx │ │ │ ├── dcdictzz.cxx │ │ │ ├── dcdirrec.cxx │ │ │ ├── dcelem.cxx │ │ │ ├── dcerror.cxx │ │ │ ├── dcfilefo.cxx │ │ │ ├── dchashdi.cxx │ │ │ ├── dcistrma.cxx │ │ │ ├── dcistrmf.cxx │ │ │ ├── dcistrmz.cxx │ │ │ ├── dcitem.cxx │ │ │ ├── dclist.cxx │ │ │ ├── dcmetinf.cxx │ │ │ ├── dcobject.cxx │ │ │ ├── dcostrma.cxx │ │ │ ├── dcostrmf.cxx │ │ │ ├── dcostrmz.cxx │ │ │ ├── dcpcache.cxx │ │ │ ├── dcpixel.cxx │ │ │ ├── dcpixseq.cxx │ │ │ ├── dcpxitem.cxx │ │ │ ├── dcsequen.cxx │ │ │ ├── dcstack.cxx │ │ │ ├── dcswap.cxx │ │ │ ├── dctag.cxx │ │ │ ├── dctagkey.cxx │ │ │ ├── dctypes.cxx │ │ │ ├── dcuid.cxx │ │ │ ├── dcvm.cxx │ │ │ ├── dcvr.cxx │ │ │ ├── dcvrae.cxx │ │ │ ├── dcvras.cxx │ │ │ ├── dcvrat.cxx │ │ │ ├── dcvrcs.cxx │ │ │ ├── dcvrda.cxx │ │ │ ├── dcvrds.cxx │ │ │ ├── dcvrdt.cxx │ │ │ ├── dcvrfd.cxx │ │ │ ├── dcvrfl.cxx │ │ │ ├── dcvris.cxx │ │ │ ├── dcvrlo.cxx │ │ │ ├── dcvrlt.cxx │ │ │ ├── dcvrobow.cxx │ │ │ ├── dcvrof.cxx │ │ │ ├── dcvrpn.cxx │ │ │ ├── dcvrpobw.cxx │ │ │ ├── dcvrsh.cxx │ │ │ ├── dcvrsl.cxx │ │ │ ├── dcvrss.cxx │ │ │ ├── dcvrst.cxx │ │ │ ├── dcvrtm.cxx │ │ │ ├── dcvrui.cxx │ │ │ ├── dcvrul.cxx │ │ │ ├── dcvrulup.cxx │ │ │ ├── dcvrus.cxx │ │ │ ├── dcvrut.cxx │ │ │ ├── dcxfer.cxx │ │ │ └── dicom.dic │ ├── dcmimgle │ │ ├── include │ │ │ ├── dcmimage.h │ │ │ ├── dibaslut.h │ │ │ ├── dicrvfit.h │ │ │ ├── didislut.h │ │ │ ├── didispfn.h │ │ │ ├── didocu.h │ │ │ ├── diflipt.h │ │ │ ├── digsdfn.h │ │ │ ├── digsdlut.h │ │ │ ├── diimage.h │ │ │ ├── diinpx.h │ │ │ ├── diinpxt.h │ │ │ ├── diluptab.h │ │ │ ├── dimo1img.h │ │ │ ├── dimo2img.h │ │ │ ├── dimocpt.h │ │ │ ├── dimoflt.h │ │ │ ├── dimoimg.h │ │ │ ├── dimoipxt.h │ │ │ ├── dimomod.h │ │ │ ├── dimoopx.h │ │ │ ├── dimoopxt.h │ │ │ ├── dimopx.h │ │ │ ├── dimopxt.h │ │ │ ├── dimorot.h │ │ │ ├── dimosct.h │ │ │ ├── diobjcou.h │ │ │ ├── diovdat.h │ │ │ ├── diovlay.h │ │ │ ├── diovlimg.h │ │ │ ├── diovpln.h │ │ │ ├── dipixel.h │ │ │ ├── diplugin.h │ │ │ ├── dipxrept.h │ │ │ ├── diregbas.h │ │ │ ├── dirotat.h │ │ │ ├── discalet.h │ │ │ ├── displint.h │ │ │ ├── ditranst.h │ │ │ └── diutils.h │ │ └── libsrc │ │ │ ├── dcmimage.cxx │ │ │ ├── dibaslut.cxx │ │ │ ├── didislut.cxx │ │ │ ├── didispfn.cxx │ │ │ ├── didocu.cxx │ │ │ ├── digsdfn.cxx │ │ │ ├── digsdlut.cxx │ │ │ ├── diimage.cxx │ │ │ ├── diinpx.cxx │ │ │ ├── diluptab.cxx │ │ │ ├── dimo1img.cxx │ │ │ ├── dimo2img.cxx │ │ │ ├── dimoimg.cxx │ │ │ ├── dimoimg3.cxx │ │ │ ├── dimoimg4.cxx │ │ │ ├── dimoimg5.cxx │ │ │ ├── dimomod.cxx │ │ │ ├── dimoopx.cxx │ │ │ ├── dimopx.cxx │ │ │ ├── diovdat.cxx │ │ │ ├── diovlay.cxx │ │ │ ├── diovlimg.cxx │ │ │ ├── diovpln.cxx │ │ │ └── diutils.cxx │ ├── ofstd │ │ ├── include │ │ │ ├── ofalgo.h │ │ │ ├── ofbmanip.h │ │ │ ├── ofcond.h │ │ │ ├── ofconsol.h │ │ │ ├── ofcrc32.h │ │ │ ├── ofdate.h │ │ │ ├── ofdatime.h │ │ │ ├── ofglobal.h │ │ │ ├── oflist.h │ │ │ ├── ofstack.h │ │ │ ├── ofstd.h │ │ │ ├── ofstdinc.h │ │ │ ├── ofstream.h │ │ │ ├── ofstring.h │ │ │ ├── ofthread.h │ │ │ ├── oftime.h │ │ │ └── oftypes.h │ │ └── libsrc │ │ │ ├── ofcond.cxx │ │ │ ├── ofconsol.cxx │ │ │ ├── ofcrc32.cxx │ │ │ ├── ofdate.cxx │ │ │ ├── ofdatime.cxx │ │ │ ├── oflist.cxx │ │ │ ├── ofstd.cxx │ │ │ ├── ofstring.cxx │ │ │ ├── ofthread.cxx │ │ │ └── oftime.cxx │ └── tests │ │ ├── CMakeLists.txt │ │ └── test_include.cxx ├── geotiff │ ├── CMakeLists.txt │ ├── README │ ├── bin │ │ ├── csv2html.c │ │ ├── geotifcp.c │ │ ├── getopt.c │ │ ├── listgeo.c │ │ └── makegeo.c │ ├── cpl_csv.c │ ├── cpl_serv.c │ ├── cpl_serv.h │ ├── defs.h │ ├── docs │ │ ├── geotifcp.html │ │ ├── index.dox │ │ ├── listgeo.html │ │ └── manual.txt │ ├── epsg_datum.inc │ ├── epsg_ellipse.inc │ ├── epsg_gcs.inc │ ├── epsg_pcs.inc │ ├── epsg_pm.inc │ ├── epsg_proj.inc │ ├── epsg_units.inc │ ├── epsg_vertcs.inc │ ├── geo_config.h │ ├── geo_ctrans.inc │ ├── geo_extra.c │ ├── geo_free.c │ ├── geo_get.c │ ├── geo_keyp.h │ ├── geo_names.c │ ├── geo_new.c │ ├── geo_normalize.c │ ├── geo_normalize.h │ ├── geo_print.c │ ├── geo_set.c │ ├── geo_tiffp.c │ ├── geo_tiffp.h │ ├── geo_trans.c │ ├── geo_write.c │ ├── geokeys.h │ ├── geokeys.inc │ ├── geonames.h │ ├── geotiff.h │ ├── geotiff_proj4.c │ ├── geotiffio.h │ ├── geovalues.h │ ├── xtiff.c │ └── xtiffio.h ├── j2k │ ├── CMakeLists.txt │ └── README.txt ├── jpeg │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemmgr.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ └── jversion.h ├── netlib.URL ├── netlib │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── README.md │ ├── arpack │ │ ├── dgetv0.P │ │ ├── dgetv0.c │ │ ├── dgetv0.f │ │ ├── dgetv0.h │ │ ├── dsaitr.P │ │ ├── dsaitr.c │ │ ├── dsaitr.f │ │ ├── dsaitr.h │ │ ├── dsapps.P │ │ ├── dsapps.c │ │ ├── dsapps.f │ │ ├── dsapps.h │ │ ├── dsaup2.P │ │ ├── dsaup2.c │ │ ├── dsaup2.f │ │ ├── dsaup2.h │ │ ├── dsaupd.P │ │ ├── dsaupd.c │ │ ├── dsaupd.f │ │ ├── dsaupd.h │ │ ├── dsconv.P │ │ ├── dsconv.c │ │ ├── dsconv.f │ │ ├── dsconv.h │ │ ├── dseigt.P │ │ ├── dseigt.c │ │ ├── dseigt.f │ │ ├── dseigt.h │ │ ├── dsesrt.P │ │ ├── dsesrt.c │ │ ├── dsesrt.f │ │ ├── dsesrt.h │ │ ├── dseupd.P │ │ ├── dseupd.c │ │ ├── dseupd.f │ │ ├── dseupd.h │ │ ├── dsgets.P │ │ ├── dsgets.c │ │ ├── dsgets.f │ │ ├── dsgets.h │ │ ├── dsortr.P │ │ ├── dsortr.c │ │ ├── dsortr.f │ │ ├── dsortr.h │ │ ├── dstqrb.P │ │ ├── dstqrb.c │ │ ├── dstqrb.f │ │ └── dstqrb.h │ ├── blas │ │ ├── caxpy.P │ │ ├── caxpy.c │ │ ├── caxpy.f │ │ ├── caxpy.h │ │ ├── ccopy.P │ │ ├── ccopy.c │ │ ├── ccopy.f │ │ ├── ccopy.h │ │ ├── cdotc.P │ │ ├── cdotc.c │ │ ├── cdotc.f │ │ ├── cdotc.h │ │ ├── cscal.P │ │ ├── cscal.c │ │ ├── cscal.f │ │ ├── cscal.h │ │ ├── csrot.P │ │ ├── csrot.c │ │ ├── csrot.f │ │ ├── csrot.h │ │ ├── cswap.P │ │ ├── cswap.c │ │ ├── cswap.f │ │ ├── cswap.h │ │ ├── dasum.P │ │ ├── dasum.c │ │ ├── dasum.f │ │ ├── dasum.h │ │ ├── daxpy.P │ │ ├── daxpy.c │ │ ├── daxpy.f │ │ ├── daxpy.h │ │ ├── dcabs1.P │ │ ├── dcabs1.c │ │ ├── dcabs1.f │ │ ├── dcabs1.h │ │ ├── dcopy.P │ │ ├── dcopy.c │ │ ├── dcopy.f │ │ ├── dcopy.h │ │ ├── ddot.P │ │ ├── ddot.c │ │ ├── ddot.f │ │ ├── ddot.h │ │ ├── dgemm.P │ │ ├── dgemm.c │ │ ├── dgemm.f │ │ ├── dgemm.h │ │ ├── dgemv.P │ │ ├── dgemv.c │ │ ├── dgemv.f │ │ ├── dgemv.h │ │ ├── dger.P │ │ ├── dger.c │ │ ├── dger.f │ │ ├── dger.h │ │ ├── dlamch.P │ │ ├── dlamch.c │ │ ├── dlamch.f │ │ ├── dlamch.h │ │ ├── dnrm2.P │ │ ├── dnrm2.c │ │ ├── dnrm2.f │ │ ├── dnrm2.h │ │ ├── drot.P │ │ ├── drot.c │ │ ├── drot.f │ │ ├── drot.h │ │ ├── drotg.P │ │ ├── drotg.c │ │ ├── drotg.f │ │ ├── drotg.h │ │ ├── dscal.P │ │ ├── dscal.c │ │ ├── dscal.f │ │ ├── dscal.h │ │ ├── dswap.P │ │ ├── dswap.c │ │ ├── dswap.f │ │ ├── dswap.h │ │ ├── dtrmm.P │ │ ├── dtrmm.c │ │ ├── dtrmm.f │ │ ├── dtrmm.h │ │ ├── dtrmv.P │ │ ├── dtrmv.c │ │ ├── dtrmv.f │ │ ├── dtrmv.h │ │ ├── dtrsv.P │ │ ├── dtrsv.c │ │ ├── dtrsv.f │ │ ├── dtrsv.h │ │ ├── dzasum.P │ │ ├── dzasum.c │ │ ├── dzasum.f │ │ ├── dzasum.h │ │ ├── dznrm2.P │ │ ├── dznrm2.c │ │ ├── dznrm2.f │ │ ├── dznrm2.h │ │ ├── idamax.P │ │ ├── idamax.c │ │ ├── idamax.f │ │ ├── idamax.h │ │ ├── isamax.P │ │ ├── isamax.c │ │ ├── isamax.f │ │ ├── isamax.h │ │ ├── izamax.P │ │ ├── izamax.c │ │ ├── izamax.f │ │ ├── izamax.h │ │ ├── saxpy.P │ │ ├── saxpy.c │ │ ├── saxpy.f │ │ ├── saxpy.h │ │ ├── scnrm2.P │ │ ├── scnrm2.c │ │ ├── scnrm2.f │ │ ├── scnrm2.h │ │ ├── scopy.P │ │ ├── scopy.c │ │ ├── scopy.f │ │ ├── scopy.h │ │ ├── sdot.P │ │ ├── sdot.c │ │ ├── sdot.f │ │ ├── sdot.h │ │ ├── sgemv.P │ │ ├── sgemv.c │ │ ├── sgemv.f │ │ ├── sgemv.h │ │ ├── sger.P │ │ ├── sger.c │ │ ├── sger.f │ │ ├── sger.h │ │ ├── slamch.P │ │ ├── slamch.c │ │ ├── slamch.f │ │ ├── slamch.h │ │ ├── snrm2.P │ │ ├── snrm2.c │ │ ├── snrm2.f │ │ ├── snrm2.h │ │ ├── srot.P │ │ ├── srot.c │ │ ├── srot.f │ │ ├── srot.h │ │ ├── srotg.P │ │ ├── srotg.c │ │ ├── srotg.f │ │ ├── srotg.h │ │ ├── sscal.P │ │ ├── sscal.c │ │ ├── sscal.f │ │ ├── sscal.h │ │ ├── sswap.P │ │ ├── sswap.c │ │ ├── sswap.f │ │ ├── sswap.h │ │ ├── xerbla.P │ │ ├── xerbla.c │ │ ├── xerbla.f │ │ ├── xerbla.h │ │ ├── zaxpy.P │ │ ├── zaxpy.c │ │ ├── zaxpy.f │ │ ├── zaxpy.h │ │ ├── zcopy.P │ │ ├── zcopy.c │ │ ├── zcopy.f │ │ ├── zcopy.h │ │ ├── zdotc.P │ │ ├── zdotc.c │ │ ├── zdotc.f │ │ ├── zdotc.h │ │ ├── zdotu.P │ │ ├── zdotu.c │ │ ├── zdotu.f │ │ ├── zdotu.h │ │ ├── zdrot.P │ │ ├── zdrot.c │ │ ├── zdrot.f │ │ ├── zdrot.h │ │ ├── zdscal.P │ │ ├── zdscal.c │ │ ├── zdscal.f │ │ ├── zdscal.h │ │ ├── zgemm.P │ │ ├── zgemm.c │ │ ├── zgemm.f │ │ ├── zgemm.h │ │ ├── zgemv.P │ │ ├── zgemv.c │ │ ├── zgemv.f │ │ ├── zgemv.h │ │ ├── zgerc.P │ │ ├── zgerc.c │ │ ├── zgerc.f │ │ ├── zgerc.h │ │ ├── zgeru.P │ │ ├── zgeru.c │ │ ├── zgeru.f │ │ ├── zgeru.h │ │ ├── zscal.P │ │ ├── zscal.c │ │ ├── zscal.f │ │ ├── zscal.h │ │ ├── zswap.P │ │ ├── zswap.c │ │ ├── zswap.f │ │ ├── zswap.h │ │ ├── ztrmm.P │ │ ├── ztrmm.c │ │ ├── ztrmm.f │ │ ├── ztrmm.h │ │ ├── ztrmv.P │ │ ├── ztrmv.c │ │ ├── ztrmv.f │ │ ├── ztrmv.h │ │ ├── ztrsv.P │ │ ├── ztrsv.c │ │ ├── ztrsv.f │ │ └── ztrsv.h │ ├── datapac │ │ ├── camsun.P │ │ ├── camsun.c │ │ ├── camsun.f │ │ └── camsun.h │ ├── eispack │ │ ├── balanc.P │ │ ├── balanc.c │ │ ├── balanc.f │ │ ├── balanc.h │ │ ├── balbak.P │ │ ├── balbak.c │ │ ├── balbak.f │ │ ├── balbak.h │ │ ├── cdiv.P │ │ ├── cdiv.c │ │ ├── cdiv.f │ │ ├── cdiv.h │ │ ├── elmhes.P │ │ ├── elmhes.c │ │ ├── elmhes.f │ │ ├── elmhes.h │ │ ├── eltran.P │ │ ├── eltran.c │ │ ├── eltran.f │ │ ├── eltran.h │ │ ├── epslon.P │ │ ├── epslon.c │ │ ├── epslon.f │ │ ├── epslon.h │ │ ├── hqr.P │ │ ├── hqr.c │ │ ├── hqr.f │ │ ├── hqr.h │ │ ├── hqr2.P │ │ ├── hqr2.c │ │ ├── hqr2.f │ │ ├── hqr2.h │ │ ├── otqlrat.P │ │ ├── otqlrat.c │ │ ├── otqlrat.f │ │ ├── otqlrat.h │ │ ├── pythag.P │ │ ├── pythag.c │ │ ├── pythag.f │ │ ├── pythag.h │ │ ├── rebak.P │ │ ├── rebak.c │ │ ├── rebak.f │ │ ├── rebak.h │ │ ├── reduc.P │ │ ├── reduc.c │ │ ├── reduc.f │ │ ├── reduc.h │ │ ├── rg.P │ │ ├── rg.c │ │ ├── rg.f │ │ ├── rg.h │ │ ├── rs.P │ │ ├── rs.c │ │ ├── rs.f │ │ ├── rs.h │ │ ├── rsg.P │ │ ├── rsg.c │ │ ├── rsg.f │ │ ├── rsg.h │ │ ├── tql1.P │ │ ├── tql1.c │ │ ├── tql1.f │ │ ├── tql1.h │ │ ├── tql2.P │ │ ├── tql2.c │ │ ├── tql2.f │ │ ├── tql2.h │ │ ├── tred1.P │ │ ├── tred1.c │ │ ├── tred1.f │ │ ├── tred1.h │ │ ├── tred2.P │ │ ├── tred2.c │ │ ├── tred2.f │ │ └── tred2.h │ ├── examples │ │ ├── .NoDartCoverage │ │ ├── A.poly │ │ ├── CMakeLists.txt │ │ └── showme.c │ ├── lapack │ │ ├── complex16 │ │ │ ├── zdrscl.P │ │ │ ├── zdrscl.c │ │ │ ├── zdrscl.f │ │ │ ├── zdrscl.h │ │ │ ├── zgebak.P │ │ │ ├── zgebak.c │ │ │ ├── zgebak.f │ │ │ ├── zgebak.h │ │ │ ├── zgebal.P │ │ │ ├── zgebal.c │ │ │ ├── zgebal.f │ │ │ ├── zgebal.h │ │ │ ├── zgecon.P │ │ │ ├── zgecon.c │ │ │ ├── zgecon.f │ │ │ ├── zgecon.h │ │ │ ├── zgees.P │ │ │ ├── zgees.c │ │ │ ├── zgees.f │ │ │ ├── zgees.h │ │ │ ├── zgeev.P │ │ │ ├── zgeev.c │ │ │ ├── zgeev.f │ │ │ ├── zgeev.h │ │ │ ├── zgehd2.P │ │ │ ├── zgehd2.c │ │ │ ├── zgehd2.f │ │ │ ├── zgehd2.h │ │ │ ├── zgehrd.P │ │ │ ├── zgehrd.c │ │ │ ├── zgehrd.f │ │ │ ├── zgehrd.h │ │ │ ├── zgeqr2.P │ │ │ ├── zgeqr2.c │ │ │ ├── zgeqr2.f │ │ │ ├── zgeqr2.h │ │ │ ├── zgeqrf.P │ │ │ ├── zgeqrf.c │ │ │ ├── zgeqrf.f │ │ │ ├── zgeqrf.h │ │ │ ├── zgesc2.P │ │ │ ├── zgesc2.c │ │ │ ├── zgesc2.f │ │ │ ├── zgesc2.h │ │ │ ├── zgetc2.P │ │ │ ├── zgetc2.c │ │ │ ├── zgetc2.f │ │ │ ├── zgetc2.h │ │ │ ├── zggbak.P │ │ │ ├── zggbak.c │ │ │ ├── zggbak.f │ │ │ ├── zggbak.h │ │ │ ├── zggbal.P │ │ │ ├── zggbal.c │ │ │ ├── zggbal.f │ │ │ ├── zggbal.h │ │ │ ├── zgges.P │ │ │ ├── zgges.c │ │ │ ├── zgges.f │ │ │ ├── zgges.h │ │ │ ├── zgghrd.P │ │ │ ├── zgghrd.c │ │ │ ├── zgghrd.f │ │ │ ├── zgghrd.h │ │ │ ├── zhgeqz.P │ │ │ ├── zhgeqz.c │ │ │ ├── zhgeqz.f │ │ │ ├── zhgeqz.h │ │ │ ├── zhseqr.P │ │ │ ├── zhseqr.c │ │ │ ├── zhseqr.f │ │ │ ├── zhseqr.h │ │ │ ├── zlacgv.P │ │ │ ├── zlacgv.c │ │ │ ├── zlacgv.f │ │ │ ├── zlacgv.h │ │ │ ├── zlacn2.P │ │ │ ├── zlacn2.c │ │ │ ├── zlacn2.f │ │ │ ├── zlacn2.h │ │ │ ├── zlacpy.P │ │ │ ├── zlacpy.c │ │ │ ├── zlacpy.f │ │ │ ├── zlacpy.h │ │ │ ├── zladiv.P │ │ │ ├── zladiv.c │ │ │ ├── zladiv.f │ │ │ ├── zladiv.h │ │ │ ├── zlahqr.P │ │ │ ├── zlahqr.c │ │ │ ├── zlahqr.f │ │ │ ├── zlahqr.h │ │ │ ├── zlahrd.P │ │ │ ├── zlahrd.c │ │ │ ├── zlahrd.f │ │ │ ├── zlahrd.h │ │ │ ├── zlange.P │ │ │ ├── zlange.c │ │ │ ├── zlange.f │ │ │ ├── zlange.h │ │ │ ├── zlanhs.P │ │ │ ├── zlanhs.c │ │ │ ├── zlanhs.f │ │ │ ├── zlanhs.h │ │ │ ├── zlarf.P │ │ │ ├── zlarf.c │ │ │ ├── zlarf.f │ │ │ ├── zlarf.h │ │ │ ├── zlarfb.P │ │ │ ├── zlarfb.c │ │ │ ├── zlarfb.f │ │ │ ├── zlarfb.h │ │ │ ├── zlarfg.P │ │ │ ├── zlarfg.c │ │ │ ├── zlarfg.f │ │ │ ├── zlarfg.h │ │ │ ├── zlarft.P │ │ │ ├── zlarft.c │ │ │ ├── zlarft.f │ │ │ ├── zlarft.h │ │ │ ├── zlarfx.P │ │ │ ├── zlarfx.c │ │ │ ├── zlarfx.f │ │ │ ├── zlarfx.h │ │ │ ├── zlartg.P │ │ │ ├── zlartg.c │ │ │ ├── zlartg.f │ │ │ ├── zlartg.h │ │ │ ├── zlascl.P │ │ │ ├── zlascl.c │ │ │ ├── zlascl.f │ │ │ ├── zlascl.h │ │ │ ├── zlaset.P │ │ │ ├── zlaset.c │ │ │ ├── zlaset.f │ │ │ ├── zlaset.h │ │ │ ├── zlassq.P │ │ │ ├── zlassq.c │ │ │ ├── zlassq.f │ │ │ ├── zlassq.h │ │ │ ├── zlaswp.P │ │ │ ├── zlaswp.c │ │ │ ├── zlaswp.f │ │ │ ├── zlaswp.h │ │ │ ├── zlatdf.P │ │ │ ├── zlatdf.c │ │ │ ├── zlatdf.f │ │ │ ├── zlatdf.h │ │ │ ├── zlatrs.P │ │ │ ├── zlatrs.c │ │ │ ├── zlatrs.f │ │ │ ├── zlatrs.h │ │ │ ├── zrot.P │ │ │ ├── zrot.c │ │ │ ├── zrot.f │ │ │ ├── zrot.h │ │ │ ├── ztgex2.P │ │ │ ├── ztgex2.c │ │ │ ├── ztgex2.f │ │ │ ├── ztgex2.h │ │ │ ├── ztgexc.P │ │ │ ├── ztgexc.c │ │ │ ├── ztgexc.f │ │ │ ├── ztgexc.h │ │ │ ├── ztgsen.P │ │ │ ├── ztgsen.c │ │ │ ├── ztgsen.f │ │ │ ├── ztgsen.h │ │ │ ├── ztgsy2.P │ │ │ ├── ztgsy2.c │ │ │ ├── ztgsy2.f │ │ │ ├── ztgsy2.h │ │ │ ├── ztgsyl.P │ │ │ ├── ztgsyl.c │ │ │ ├── ztgsyl.f │ │ │ ├── ztgsyl.h │ │ │ ├── ztrevc.P │ │ │ ├── ztrevc.c │ │ │ ├── ztrevc.f │ │ │ ├── ztrevc.h │ │ │ ├── ztrexc.P │ │ │ ├── ztrexc.c │ │ │ ├── ztrexc.f │ │ │ ├── ztrexc.h │ │ │ ├── ztrsen.P │ │ │ ├── ztrsen.c │ │ │ ├── ztrsen.f │ │ │ ├── ztrsen.h │ │ │ ├── ztrsyl.P │ │ │ ├── ztrsyl.c │ │ │ ├── ztrsyl.f │ │ │ ├── ztrsyl.h │ │ │ ├── zung2r.P │ │ │ ├── zung2r.c │ │ │ ├── zung2r.f │ │ │ ├── zung2r.h │ │ │ ├── zunghr.P │ │ │ ├── zunghr.c │ │ │ ├── zunghr.f │ │ │ ├── zunghr.h │ │ │ ├── zungqr.P │ │ │ ├── zungqr.c │ │ │ ├── zungqr.f │ │ │ ├── zungqr.h │ │ │ ├── zunm2r.P │ │ │ ├── zunm2r.c │ │ │ ├── zunm2r.f │ │ │ ├── zunm2r.h │ │ │ ├── zunmqr.P │ │ │ ├── zunmqr.c │ │ │ ├── zunmqr.f │ │ │ └── zunmqr.h │ │ ├── double │ │ │ ├── dgecon.P │ │ │ ├── dgecon.c │ │ │ ├── dgecon.f │ │ │ ├── dgecon.h │ │ │ ├── dgeqr2.P │ │ │ ├── dgeqr2.c │ │ │ ├── dgeqr2.f │ │ │ ├── dgeqr2.h │ │ │ ├── dgeqrf.P │ │ │ ├── dgeqrf.c │ │ │ ├── dgeqrf.f │ │ │ ├── dgeqrf.h │ │ │ ├── dgerq2.P │ │ │ ├── dgerq2.c │ │ │ ├── dgerq2.f │ │ │ ├── dgerq2.h │ │ │ ├── dgesc2.P │ │ │ ├── dgesc2.c │ │ │ ├── dgesc2.f │ │ │ ├── dgesc2.h │ │ │ ├── dgetc2.P │ │ │ ├── dgetc2.c │ │ │ ├── dgetc2.f │ │ │ ├── dgetc2.h │ │ │ ├── dggbak.P │ │ │ ├── dggbak.c │ │ │ ├── dggbak.f │ │ │ ├── dggbak.h │ │ │ ├── dggbal.P │ │ │ ├── dggbal.c │ │ │ ├── dggbal.f │ │ │ ├── dggbal.h │ │ │ ├── dgges.P │ │ │ ├── dgges.c │ │ │ ├── dgges.f │ │ │ ├── dgges.h │ │ │ ├── dgghrd.P │ │ │ ├── dgghrd.c │ │ │ ├── dgghrd.f │ │ │ ├── dgghrd.h │ │ │ ├── dhgeqz.P │ │ │ ├── dhgeqz.c │ │ │ ├── dhgeqz.f │ │ │ ├── dhgeqz.h │ │ │ ├── dlabad.P │ │ │ ├── dlabad.c │ │ │ ├── dlabad.f │ │ │ ├── dlabad.h │ │ │ ├── dlacon.P │ │ │ ├── dlacon.c │ │ │ ├── dlacon.f │ │ │ ├── dlacon.h │ │ │ ├── dlacpy.P │ │ │ ├── dlacpy.c │ │ │ ├── dlacpy.f │ │ │ ├── dlacpy.h │ │ │ ├── dladiv.P │ │ │ ├── dladiv.c │ │ │ ├── dladiv.f │ │ │ ├── dladiv.h │ │ │ ├── dlae2.P │ │ │ ├── dlae2.c │ │ │ ├── dlae2.f │ │ │ ├── dlae2.h │ │ │ ├── dlaev2.P │ │ │ ├── dlaev2.c │ │ │ ├── dlaev2.f │ │ │ ├── dlaev2.h │ │ │ ├── dlag2.P │ │ │ ├── dlag2.c │ │ │ ├── dlag2.f │ │ │ ├── dlag2.h │ │ │ ├── dlagv2.P │ │ │ ├── dlagv2.c │ │ │ ├── dlagv2.f │ │ │ ├── dlagv2.h │ │ │ ├── dlange.P │ │ │ ├── dlange.c │ │ │ ├── dlange.f │ │ │ ├── dlange.h │ │ │ ├── dlanhs.P │ │ │ ├── dlanhs.c │ │ │ ├── dlanhs.f │ │ │ ├── dlanhs.h │ │ │ ├── dlanst.P │ │ │ ├── dlanst.c │ │ │ ├── dlanst.f │ │ │ ├── dlanst.h │ │ │ ├── dlapy2.P │ │ │ ├── dlapy2.c │ │ │ ├── dlapy2.f │ │ │ ├── dlapy2.h │ │ │ ├── dlapy3.P │ │ │ ├── dlapy3.c │ │ │ ├── dlapy3.f │ │ │ ├── dlapy3.h │ │ │ ├── dlarf.P │ │ │ ├── dlarf.c │ │ │ ├── dlarf.f │ │ │ ├── dlarf.h │ │ │ ├── dlarfb.P │ │ │ ├── dlarfb.c │ │ │ ├── dlarfb.f │ │ │ ├── dlarfb.h │ │ │ ├── dlarfg.P │ │ │ ├── dlarfg.c │ │ │ ├── dlarfg.f │ │ │ ├── dlarfg.h │ │ │ ├── dlarft.P │ │ │ ├── dlarft.c │ │ │ ├── dlarft.f │ │ │ ├── dlarft.h │ │ │ ├── dlarnv.P │ │ │ ├── dlarnv.c │ │ │ ├── dlarnv.f │ │ │ ├── dlarnv.h │ │ │ ├── dlartg.P │ │ │ ├── dlartg.c │ │ │ ├── dlartg.f │ │ │ ├── dlartg.h │ │ │ ├── dlaruv.P │ │ │ ├── dlaruv.c │ │ │ ├── dlaruv.f │ │ │ ├── dlaruv.h │ │ │ ├── dlascl.P │ │ │ ├── dlascl.c │ │ │ ├── dlascl.f │ │ │ ├── dlascl.h │ │ │ ├── dlaset.P │ │ │ ├── dlaset.c │ │ │ ├── dlaset.f │ │ │ ├── dlaset.h │ │ │ ├── dlasr.P │ │ │ ├── dlasr.c │ │ │ ├── dlasr.f │ │ │ ├── dlasr.h │ │ │ ├── dlasrt.P │ │ │ ├── dlasrt.c │ │ │ ├── dlasrt.f │ │ │ ├── dlasrt.h │ │ │ ├── dlassq.P │ │ │ ├── dlassq.c │ │ │ ├── dlassq.f │ │ │ ├── dlassq.h │ │ │ ├── dlasv2.P │ │ │ ├── dlasv2.c │ │ │ ├── dlasv2.f │ │ │ ├── dlasv2.h │ │ │ ├── dlaswp.P │ │ │ ├── dlaswp.c │ │ │ ├── dlaswp.f │ │ │ ├── dlaswp.h │ │ │ ├── dlatdf.P │ │ │ ├── dlatdf.c │ │ │ ├── dlatdf.f │ │ │ ├── dlatdf.h │ │ │ ├── dlatrs.P │ │ │ ├── dlatrs.c │ │ │ ├── dlatrs.f │ │ │ ├── dlatrs.h │ │ │ ├── dorg2r.P │ │ │ ├── dorg2r.c │ │ │ ├── dorg2r.f │ │ │ ├── dorg2r.h │ │ │ ├── dorgqr.P │ │ │ ├── dorgqr.c │ │ │ ├── dorgqr.f │ │ │ ├── dorgqr.h │ │ │ ├── dorgr2.P │ │ │ ├── dorgr2.c │ │ │ ├── dorgr2.f │ │ │ ├── dorgr2.h │ │ │ ├── dorm2r.P │ │ │ ├── dorm2r.c │ │ │ ├── dorm2r.f │ │ │ ├── dorm2r.h │ │ │ ├── dormqr.P │ │ │ ├── dormqr.c │ │ │ ├── dormqr.f │ │ │ ├── dormqr.h │ │ │ ├── dormr2.P │ │ │ ├── dormr2.c │ │ │ ├── dormr2.f │ │ │ ├── dormr2.h │ │ │ ├── drscl.P │ │ │ ├── drscl.c │ │ │ ├── drscl.f │ │ │ ├── drscl.h │ │ │ ├── dspr.P │ │ │ ├── dspr.c │ │ │ ├── dspr.f │ │ │ ├── dspr.h │ │ │ ├── dsptrf.P │ │ │ ├── dsptrf.c │ │ │ ├── dsptrf.f │ │ │ ├── dsptrf.h │ │ │ ├── dsptrs.P │ │ │ ├── dsptrs.c │ │ │ ├── dsptrs.f │ │ │ ├── dsptrs.h │ │ │ ├── dsteqr.P │ │ │ ├── dsteqr.c │ │ │ ├── dsteqr.f │ │ │ ├── dsteqr.h │ │ │ ├── dtgex2.P │ │ │ ├── dtgex2.c │ │ │ ├── dtgex2.f │ │ │ ├── dtgex2.h │ │ │ ├── dtgexc.P │ │ │ ├── dtgexc.c │ │ │ ├── dtgexc.f │ │ │ ├── dtgexc.h │ │ │ ├── dtgsen.P │ │ │ ├── dtgsen.c │ │ │ ├── dtgsen.f │ │ │ ├── dtgsen.h │ │ │ ├── dtgsy2.P │ │ │ ├── dtgsy2.c │ │ │ ├── dtgsy2.f │ │ │ ├── dtgsy2.h │ │ │ ├── dtgsyl.P │ │ │ ├── dtgsyl.c │ │ │ ├── dtgsyl.f │ │ │ ├── dtgsyl.h │ │ │ ├── dzsum1.P │ │ │ ├── dzsum1.c │ │ │ ├── dzsum1.f │ │ │ └── dzsum1.h │ │ ├── single │ │ │ ├── sgeqpf.P │ │ │ ├── sgeqpf.c │ │ │ ├── sgeqpf.f │ │ │ ├── sgeqpf.h │ │ │ ├── sgeqr2.P │ │ │ ├── sgeqr2.c │ │ │ ├── sgeqr2.f │ │ │ ├── sgeqr2.h │ │ │ ├── sgerq2.P │ │ │ ├── sgerq2.c │ │ │ ├── sgerq2.f │ │ │ ├── sgerq2.h │ │ │ ├── sggsvd.P │ │ │ ├── sggsvd.c │ │ │ ├── sggsvd.f │ │ │ ├── sggsvd.h │ │ │ ├── sggsvp.P │ │ │ ├── sggsvp.c │ │ │ ├── sggsvp.f │ │ │ ├── sggsvp.h │ │ │ ├── slacpy.P │ │ │ ├── slacpy.c │ │ │ ├── slacpy.f │ │ │ ├── slacpy.h │ │ │ ├── slags2.P │ │ │ ├── slags2.c │ │ │ ├── slags2.f │ │ │ ├── slags2.h │ │ │ ├── slange.P │ │ │ ├── slange.c │ │ │ ├── slange.f │ │ │ ├── slange.h │ │ │ ├── slapll.P │ │ │ ├── slapll.c │ │ │ ├── slapll.f │ │ │ ├── slapll.h │ │ │ ├── slapmt.P │ │ │ ├── slapmt.c │ │ │ ├── slapmt.f │ │ │ ├── slapmt.h │ │ │ ├── slapy2.P │ │ │ ├── slapy2.c │ │ │ ├── slapy2.f │ │ │ ├── slapy2.h │ │ │ ├── slarf.P │ │ │ ├── slarf.c │ │ │ ├── slarf.f │ │ │ ├── slarf.h │ │ │ ├── slarfg.P │ │ │ ├── slarfg.c │ │ │ ├── slarfg.f │ │ │ ├── slarfg.h │ │ │ ├── slartg.P │ │ │ ├── slartg.c │ │ │ ├── slartg.f │ │ │ ├── slartg.h │ │ │ ├── slas2.P │ │ │ ├── slas2.c │ │ │ ├── slas2.f │ │ │ ├── slas2.h │ │ │ ├── slaset.P │ │ │ ├── slaset.c │ │ │ ├── slaset.f │ │ │ ├── slaset.h │ │ │ ├── slassq.P │ │ │ ├── slassq.c │ │ │ ├── slassq.f │ │ │ ├── slassq.h │ │ │ ├── slasv2.P │ │ │ ├── slasv2.c │ │ │ ├── slasv2.f │ │ │ ├── slasv2.h │ │ │ ├── sorg2r.P │ │ │ ├── sorg2r.c │ │ │ ├── sorg2r.f │ │ │ ├── sorg2r.h │ │ │ ├── sorm2r.P │ │ │ ├── sorm2r.c │ │ │ ├── sorm2r.f │ │ │ ├── sorm2r.h │ │ │ ├── sormr2.P │ │ │ ├── sormr2.c │ │ │ ├── sormr2.f │ │ │ ├── sormr2.h │ │ │ ├── stgsja.P │ │ │ ├── stgsja.c │ │ │ ├── stgsja.f │ │ │ └── stgsja.h │ │ └── util │ │ │ ├── ieeeck.P │ │ │ ├── ieeeck.c │ │ │ ├── ieeeck.f │ │ │ ├── ieeeck.h │ │ │ ├── ilaenv.P │ │ │ ├── ilaenv.c │ │ │ ├── ilaenv.f │ │ │ ├── ilaenv.h │ │ │ ├── izmax1.P │ │ │ ├── izmax1.c │ │ │ ├── izmax1.f │ │ │ ├── izmax1.h │ │ │ ├── lsame.P │ │ │ ├── lsame.c │ │ │ ├── lsame.f │ │ │ └── lsame.h │ ├── laso │ │ ├── dlabax.P │ │ ├── dlabax.c │ │ ├── dlabax.f │ │ ├── dlabax.h │ │ ├── dlabcm.P │ │ ├── dlabcm.c │ │ ├── dlabcm.f │ │ ├── dlabcm.h │ │ ├── dlabfc.P │ │ ├── dlabfc.c │ │ ├── dlabfc.f │ │ ├── dlabfc.h │ │ ├── dlaeig.P │ │ ├── dlaeig.c │ │ ├── dlaeig.f │ │ ├── dlaeig.h │ │ ├── dlager.P │ │ ├── dlager.c │ │ ├── dlager.f │ │ ├── dlager.h │ │ ├── dlaran.P │ │ ├── dlaran.c │ │ ├── dlaran.f │ │ ├── dlaran.h │ │ ├── dmvpc.P │ │ ├── dmvpc.c │ │ ├── dmvpc.f │ │ ├── dmvpc.h │ │ ├── dnlaso.P │ │ ├── dnlaso.c │ │ ├── dnlaso.f │ │ ├── dnlaso.h │ │ ├── dnppla.P │ │ ├── dnppla.c │ │ ├── dnppla.f │ │ ├── dnppla.h │ │ ├── dortqr.P │ │ ├── dortqr.c │ │ ├── dortqr.f │ │ ├── dortqr.h │ │ ├── dvsort.P │ │ ├── dvsort.c │ │ ├── dvsort.f │ │ ├── dvsort.h │ │ ├── urand.P │ │ ├── urand.c │ │ ├── urand.f │ │ └── urand.h │ ├── libf2c │ │ ├── Notice │ │ ├── README │ │ ├── abort_.c │ │ ├── arithchk.c │ │ ├── backspac.c │ │ ├── c_abs.c │ │ ├── c_cos.c │ │ ├── c_div.c │ │ ├── c_exp.c │ │ ├── c_log.c │ │ ├── c_sin.c │ │ ├── c_sqrt.c │ │ ├── cabs.c │ │ ├── comptry.bat │ │ ├── d_abs.c │ │ ├── d_acos.c │ │ ├── d_asin.c │ │ ├── d_atan.c │ │ ├── d_atn2.c │ │ ├── d_cnjg.c │ │ ├── d_cos.c │ │ ├── d_cosh.c │ │ ├── d_dim.c │ │ ├── d_exp.c │ │ ├── d_imag.c │ │ ├── d_int.c │ │ ├── d_lg10.c │ │ ├── d_log.c │ │ ├── d_mod.c │ │ ├── d_nint.c │ │ ├── d_prod.c │ │ ├── d_sign.c │ │ ├── d_sin.c │ │ ├── d_sinh.c │ │ ├── d_sqrt.c │ │ ├── d_tan.c │ │ ├── d_tanh.c │ │ ├── derf_.c │ │ ├── derfc_.c │ │ ├── dfe.c │ │ ├── dolio.c │ │ ├── due.c │ │ ├── ef1asc_.c │ │ ├── ef1cmc_.c │ │ ├── endfile.c │ │ ├── erf_.c │ │ ├── erfc_.c │ │ ├── err.c │ │ ├── etime_.c │ │ ├── exit_.c │ │ ├── f2c.h0 │ │ ├── f2ch.add │ │ ├── f77_aloc.c │ │ ├── f77vers.c │ │ ├── fio.h │ │ ├── fmt.c │ │ ├── fmt.h │ │ ├── fp.h │ │ ├── getarg_.c │ │ ├── getenv_.c │ │ ├── h_abs.c │ │ ├── h_dim.c │ │ ├── h_dnnt.c │ │ ├── h_indx.c │ │ ├── h_len.c │ │ ├── h_mod.c │ │ ├── h_nint.c │ │ ├── h_sign.c │ │ ├── hl_ge.c │ │ ├── hl_gt.c │ │ ├── hl_le.c │ │ ├── hl_lt.c │ │ ├── i77vers.c │ │ ├── i_abs.c │ │ ├── i_dim.c │ │ ├── i_dnnt.c │ │ ├── i_indx.c │ │ ├── i_len.c │ │ ├── i_mod.c │ │ ├── i_nint.c │ │ ├── i_sign.c │ │ ├── iargc_.c │ │ ├── iio.c │ │ ├── ilnw.c │ │ ├── inquire.c │ │ ├── l_ge.c │ │ ├── l_gt.c │ │ ├── l_le.c │ │ ├── l_lt.c │ │ ├── lbitbits.c │ │ ├── lbitshft.c │ │ ├── libf2c.lbc │ │ ├── libf2c.sy │ │ ├── lio.h │ │ ├── lwrite.c │ │ ├── main.c │ │ ├── makefile.sy │ │ ├── makefile.u │ │ ├── makefile.vc │ │ ├── makefile.wat │ │ ├── math.hvc │ │ ├── mkfile.plan9 │ │ ├── open.c │ │ ├── pow_ci.c │ │ ├── pow_dd.c │ │ ├── pow_di.c │ │ ├── pow_hh.c │ │ ├── pow_ii.c │ │ ├── pow_qq.c │ │ ├── pow_ri.c │ │ ├── pow_zi.c │ │ ├── pow_zz.c │ │ ├── qbitbits.c │ │ ├── qbitshft.c │ │ ├── r_abs.c │ │ ├── r_acos.c │ │ ├── r_asin.c │ │ ├── r_atan.c │ │ ├── r_atn2.c │ │ ├── r_cnjg.c │ │ ├── r_cos.c │ │ ├── r_cosh.c │ │ ├── r_dim.c │ │ ├── r_exp.c │ │ ├── r_imag.c │ │ ├── r_int.c │ │ ├── r_lg10.c │ │ ├── r_log.c │ │ ├── r_mod.c │ │ ├── r_nint.c │ │ ├── r_sign.c │ │ ├── r_sin.c │ │ ├── r_sinh.c │ │ ├── r_sqrt.c │ │ ├── r_tan.c │ │ ├── r_tanh.c │ │ ├── rawio.h │ │ ├── rewind.c │ │ ├── rsfe.c │ │ ├── rsli.c │ │ ├── s_cat.c │ │ ├── s_cmp.c │ │ ├── s_copy.c │ │ ├── s_paus.c │ │ ├── s_rnge.c │ │ ├── s_stop.c │ │ ├── scomptry.bat │ │ ├── sfe.c │ │ ├── sig_die.c │ │ ├── signal1.h0 │ │ ├── signal_.c │ │ ├── signbit.c │ │ ├── sue.c │ │ ├── sysdep1.h0 │ │ ├── system_.c │ │ ├── typesize.c │ │ ├── uio.c │ │ ├── util.c │ │ ├── wref.c │ │ ├── wsfe.c │ │ ├── wsle.c │ │ ├── wsne.c │ │ ├── xsum0.out │ │ ├── xwsne.c │ │ ├── z_abs.c │ │ ├── z_cos.c │ │ ├── z_div.c │ │ ├── z_exp.c │ │ ├── z_log.c │ │ ├── z_sin.c │ │ └── z_sqrt.c │ ├── linalg │ │ ├── lsqr.P │ │ ├── lsqr.c │ │ ├── lsqr.f │ │ └── lsqr.h │ ├── linpack │ │ ├── cqrdc.P │ │ ├── cqrdc.c │ │ ├── cqrdc.f │ │ ├── cqrdc.h │ │ ├── cqrsl.P │ │ ├── cqrsl.c │ │ ├── cqrsl.f │ │ ├── cqrsl.h │ │ ├── csvdc.P │ │ ├── csvdc.c │ │ ├── csvdc.f │ │ ├── csvdc.h │ │ ├── dpoco.P │ │ ├── dpoco.c │ │ ├── dpoco.f │ │ ├── dpoco.h │ │ ├── dpodi.P │ │ ├── dpodi.c │ │ ├── dpodi.f │ │ ├── dpodi.h │ │ ├── dpofa.P │ │ ├── dpofa.c │ │ ├── dpofa.f │ │ ├── dpofa.h │ │ ├── dposl.P │ │ ├── dposl.c │ │ ├── dposl.f │ │ ├── dposl.h │ │ ├── dqrdc.P │ │ ├── dqrdc.c │ │ ├── dqrdc.f │ │ ├── dqrdc.h │ │ ├── dqrsl.P │ │ ├── dqrsl.c │ │ ├── dqrsl.f │ │ ├── dqrsl.h │ │ ├── dsvdc.P │ │ ├── dsvdc.c │ │ ├── dsvdc.f │ │ ├── dsvdc.h │ │ ├── sqrdc.P │ │ ├── sqrdc.c │ │ ├── sqrdc.f │ │ ├── sqrdc.h │ │ ├── sqrsl.P │ │ ├── sqrsl.c │ │ ├── sqrsl.f │ │ ├── sqrsl.h │ │ ├── ssvdc.P │ │ ├── ssvdc.c │ │ ├── ssvdc.f │ │ ├── ssvdc.h │ │ ├── zqrdc.P │ │ ├── zqrdc.c │ │ ├── zqrdc.f │ │ ├── zqrdc.h │ │ ├── zqrsl.P │ │ ├── zqrsl.c │ │ ├── zqrsl.f │ │ ├── zqrsl.h │ │ ├── zsvdc.P │ │ ├── zsvdc.c │ │ ├── zsvdc.f │ │ └── zsvdc.h │ ├── mathews │ │ ├── adaquad.P │ │ ├── adaquad.c │ │ ├── adaquad.f │ │ ├── adaquad.h │ │ ├── simpson.P │ │ ├── simpson.c │ │ ├── simpson.f │ │ ├── simpson.h │ │ ├── trapezod.P │ │ ├── trapezod.c │ │ ├── trapezod.f │ │ └── trapezod.h │ ├── minpack │ │ ├── dpmpar.P │ │ ├── dpmpar.c │ │ ├── dpmpar.f │ │ ├── dpmpar.h │ │ ├── enorm.P │ │ ├── enorm.c │ │ ├── enorm.f │ │ ├── enorm.h │ │ ├── fdjac2.P │ │ ├── fdjac2.c │ │ ├── fdjac2.f │ │ ├── fdjac2.h │ │ ├── lmder.P │ │ ├── lmder.c │ │ ├── lmder.f │ │ ├── lmder.h │ │ ├── lmder1.P │ │ ├── lmder1.c │ │ ├── lmder1.f │ │ ├── lmder1.h │ │ ├── lmdif.P │ │ ├── lmdif.c │ │ ├── lmdif.f │ │ ├── lmdif.h │ │ ├── lmpar.P │ │ ├── lmpar.c │ │ ├── lmpar.f │ │ ├── lmpar.h │ │ ├── qrfac.P │ │ ├── qrfac.c │ │ ├── qrfac.f │ │ ├── qrfac.h │ │ ├── qrsolv.P │ │ ├── qrsolv.c │ │ ├── qrsolv.f │ │ └── qrsolv.h │ ├── napack │ │ ├── cg.P │ │ ├── cg.c │ │ ├── cg.f │ │ └── cg.h │ ├── opt │ │ ├── lbfgs.P │ │ ├── lbfgs.c │ │ ├── lbfgs.f │ │ ├── lbfgs.h │ │ ├── lbfgsb.P │ │ ├── lbfgsb.c │ │ ├── lbfgsb.f │ │ └── lbfgsb.h │ ├── sparse │ │ ├── documentation.txt │ │ ├── readme.txt │ │ ├── spAllocate.c │ │ ├── spBuild.c │ │ ├── spConfig.h │ │ ├── spDefs.h │ │ ├── spFactor.c │ │ ├── spMatrix.h │ │ ├── spOutput.c │ │ ├── spSolve.c │ │ └── spUtils.c │ ├── temperton │ │ ├── dgpfa.P │ │ ├── dgpfa.c │ │ ├── dgpfa.f │ │ ├── dgpfa.h │ │ ├── dgpfa2f.P │ │ ├── dgpfa2f.c │ │ ├── dgpfa2f.f │ │ ├── dgpfa2f.h │ │ ├── dgpfa3f.P │ │ ├── dgpfa3f.c │ │ ├── dgpfa3f.f │ │ ├── dgpfa3f.h │ │ ├── dgpfa5f.P │ │ ├── dgpfa5f.c │ │ ├── dgpfa5f.f │ │ ├── dgpfa5f.h │ │ ├── gpfa.P │ │ ├── gpfa.c │ │ ├── gpfa.f │ │ ├── gpfa.h │ │ ├── gpfa2f.P │ │ ├── gpfa2f.c │ │ ├── gpfa2f.f │ │ ├── gpfa2f.h │ │ ├── gpfa3f.P │ │ ├── gpfa3f.c │ │ ├── gpfa3f.f │ │ ├── gpfa3f.h │ │ ├── gpfa5f.P │ │ ├── gpfa5f.c │ │ ├── gpfa5f.f │ │ ├── gpfa5f.h │ │ ├── setdgpfa.P │ │ ├── setdgpfa.c │ │ ├── setdgpfa.f │ │ ├── setdgpfa.h │ │ ├── setgpfa.P │ │ ├── setgpfa.c │ │ ├── setgpfa.f │ │ └── setgpfa.h │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── integral-test.c │ │ ├── lbfgs-example.c │ │ ├── lbfgs-example.f │ │ ├── lbfgsb-example1.c │ │ ├── lbfgsb-example1.f │ │ ├── lsqr-test.c │ │ ├── lsqr-test.f │ │ ├── slamch-test.c │ │ └── tricall.c │ ├── toms │ │ ├── rpoly.P │ │ ├── rpoly.c │ │ ├── rpoly.f │ │ └── rpoly.h │ ├── triangle.README │ ├── triangle.c │ ├── triangle.h │ ├── v3p_f2c.h │ ├── v3p_f2c_mangle.h │ ├── v3p_f2c_original.h │ ├── v3p_f2c_unmangle.h │ ├── v3p_netlib.h │ ├── v3p_netlib_init.c │ ├── v3p_netlib_mangle.h │ ├── v3p_netlib_prototypes.h │ └── v3p_netlib_unmangle.h ├── openjpeg2 │ ├── CMakeLists.txt │ ├── bio.c │ ├── bio.h │ ├── cio.c │ ├── cio.h │ ├── dwt.c │ ├── dwt.h │ ├── event.c │ ├── event.h │ ├── fix.h │ ├── function_list.c │ ├── function_list.h │ ├── image.c │ ├── image.h │ ├── int.h │ ├── invert.c │ ├── invert.h │ ├── j2k.c │ ├── j2k.h │ ├── j2k_lib.c │ ├── j2k_lib.h │ ├── jp2.c │ ├── jp2.h │ ├── jpt.c │ ├── jpt.h │ ├── license.txt │ ├── mct.c │ ├── mct.h │ ├── mqc.c │ ├── mqc.h │ ├── openjpeg.c │ ├── openjpeg.h │ ├── opj_configure.h │ ├── opj_includes.h │ ├── opj_malloc.h │ ├── pi.c │ ├── pi.h │ ├── profile.c │ ├── profile.h │ ├── raw.c │ ├── raw.h │ ├── t1.c │ ├── t1.h │ ├── t1_luts.h │ ├── t2.c │ ├── t2.h │ ├── tcd.c │ ├── tcd.h │ ├── tgt.c │ └── tgt.h ├── png.URL ├── png │ ├── .NoDartCoverage │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── TODO │ ├── example.c │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── tests │ │ ├── .NoDartCoverage │ │ ├── CMakeLists.txt │ │ ├── pngtest.c │ │ ├── pngtest.png │ │ └── pngvalid.c │ └── visupng │ │ └── cexcept.h ├── rply │ ├── CMakeLists.txt │ ├── LICENSE │ ├── etc │ │ ├── convert.c │ │ ├── dump.c │ │ ├── input.ply │ │ └── sconvert.c │ ├── manual │ │ ├── manual.html │ │ ├── reference.css │ │ └── rply.png │ ├── readme.txt │ ├── rply.c │ └── rply.h ├── tiff.URL ├── tiff │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.lcc │ ├── SConstruct │ ├── doc │ │ ├── COPYRIGHT │ │ ├── ChangeLog │ │ ├── HOWTO-RELEASE │ │ ├── README │ │ ├── TODO │ │ └── VERSION │ ├── fax3sm_winnt.c │ ├── libtiff.def │ ├── libtiff.map │ ├── libtiffxx.map │ ├── makefile.vc │ ├── mkg3states.c │ ├── mkspans.c │ ├── mkversion.c │ ├── port.h │ ├── t4.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ascii_tag.c │ │ ├── bmp2tiff_palette.sh │ │ ├── bmp2tiff_rgb.sh │ │ ├── check_tag.c │ │ ├── common.sh │ │ ├── custom_dir.c │ │ ├── gif2tiff.sh │ │ ├── images │ │ │ ├── README.txt │ │ │ ├── logluv-3c-16b.tiff │ │ │ ├── minisblack-1c-16b.tiff │ │ │ ├── minisblack-1c-8b.pgm │ │ │ ├── minisblack-1c-8b.tiff │ │ │ ├── minisblack-2c-8b-alpha.tiff │ │ │ ├── miniswhite-1c-1b.pbm │ │ │ ├── miniswhite-1c-1b.tiff │ │ │ ├── palette-1c-1b.tiff │ │ │ ├── palette-1c-4b.tiff │ │ │ ├── palette-1c-8b.bmp │ │ │ ├── palette-1c-8b.gif │ │ │ ├── palette-1c-8b.tiff │ │ │ ├── quad-tile.jpg.tiff │ │ │ ├── rgb-3c-16b.tiff │ │ │ ├── rgb-3c-8b.bmp │ │ │ ├── rgb-3c-8b.ppm │ │ │ └── rgb-3c-8b.tiff │ │ ├── long_tag.c │ │ ├── ppm2tiff_pbm.sh │ │ ├── ppm2tiff_pgm.sh │ │ ├── ppm2tiff_ppm.sh │ │ ├── raw_decode.c │ │ ├── rewrite_tag.c │ │ ├── short_tag.c │ │ ├── strip.c │ │ ├── strip_rw.c │ │ ├── test_arrays.c │ │ ├── test_arrays.h │ │ ├── tiff2pdf.sh │ │ ├── tiff2ps-EPS1.sh │ │ ├── tiff2ps-PS1.sh │ │ ├── tiff2ps-PS2.sh │ │ ├── tiff2ps-PS3.sh │ │ ├── tiff2rgba-logluv-3c-16b.sh │ │ ├── tiff2rgba-minisblack-1c-16b.sh │ │ ├── tiff2rgba-minisblack-1c-8b.sh │ │ ├── tiff2rgba-minisblack-2c-8b-alpha.sh │ │ ├── tiff2rgba-miniswhite-1c-1b.sh │ │ ├── tiff2rgba-palette-1c-1b.sh │ │ ├── tiff2rgba-palette-1c-4b.sh │ │ ├── tiff2rgba-palette-1c-8b.sh │ │ ├── tiff2rgba-quad-tile.jpg.sh │ │ ├── tiff2rgba-rgb-3c-16b.sh │ │ ├── tiff2rgba-rgb-3c-8b.sh │ │ ├── tiffcp-g3-1d-fill.sh │ │ ├── tiffcp-g3-1d.sh │ │ ├── tiffcp-g3-2d-fill.sh │ │ ├── tiffcp-g3-2d.sh │ │ ├── tiffcp-g3.sh │ │ ├── tiffcp-g4.sh │ │ ├── tiffcp-logluv.sh │ │ ├── tiffcp-split-join.sh │ │ ├── tiffcp-split.sh │ │ ├── tiffcp-thumbnail.sh │ │ ├── tiffcrop-R90-logluv-3c-16b.sh │ │ ├── tiffcrop-R90-minisblack-1c-16b.sh │ │ ├── tiffcrop-R90-minisblack-1c-8b.sh │ │ ├── tiffcrop-R90-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-R90-miniswhite-1c-1b.sh │ │ ├── tiffcrop-R90-palette-1c-1b.sh │ │ ├── tiffcrop-R90-palette-1c-4b.sh │ │ ├── tiffcrop-R90-palette-1c-8b.sh │ │ ├── tiffcrop-R90-rgb-3c-16b.sh │ │ ├── tiffcrop-R90-rgb-3c-8b.sh │ │ ├── tiffcrop-doubleflip-logluv-3c-16b.sh │ │ ├── tiffcrop-doubleflip-minisblack-1c-16b.sh │ │ ├── tiffcrop-doubleflip-minisblack-1c-8b.sh │ │ ├── tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-doubleflip-miniswhite-1c-1b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-1b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-4b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-8b.sh │ │ ├── tiffcrop-doubleflip-rgb-3c-16b.sh │ │ ├── tiffcrop-doubleflip-rgb-3c-8b.sh │ │ ├── tiffcrop-extract-logluv-3c-16b.sh │ │ ├── tiffcrop-extract-minisblack-1c-16b.sh │ │ ├── tiffcrop-extract-minisblack-1c-8b.sh │ │ ├── tiffcrop-extract-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-extract-miniswhite-1c-1b.sh │ │ ├── tiffcrop-extract-palette-1c-1b.sh │ │ ├── tiffcrop-extract-palette-1c-4b.sh │ │ ├── tiffcrop-extract-palette-1c-8b.sh │ │ ├── tiffcrop-extract-rgb-3c-16b.sh │ │ ├── tiffcrop-extract-rgb-3c-8b.sh │ │ ├── tiffcrop-extractz14-logluv-3c-16b.sh │ │ ├── tiffcrop-extractz14-minisblack-1c-16b.sh │ │ ├── tiffcrop-extractz14-minisblack-1c-8b.sh │ │ ├── tiffcrop-extractz14-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-extractz14-miniswhite-1c-1b.sh │ │ ├── tiffcrop-extractz14-palette-1c-1b.sh │ │ ├── tiffcrop-extractz14-palette-1c-4b.sh │ │ ├── tiffcrop-extractz14-palette-1c-8b.sh │ │ ├── tiffcrop-extractz14-rgb-3c-16b.sh │ │ ├── tiffcrop-extractz14-rgb-3c-8b.sh │ │ ├── tiffdump.sh │ │ ├── tiffinfo.sh │ │ └── tifftest.h │ ├── tif_acorn.c │ ├── tif_apple.c │ ├── tif_atari.c │ ├── tif_aux.c │ ├── tif_close.c │ ├── tif_codec.c │ ├── tif_color.c │ ├── tif_compress.c │ ├── tif_config.h-vms │ ├── tif_config.h.in │ ├── tif_config.vc.h │ ├── tif_config.wince.h │ ├── tif_dir.c │ ├── tif_dir.h │ ├── tif_dirinfo.c │ ├── tif_dirread.c │ ├── tif_dirwrite.c │ ├── tif_dumpmode.c │ ├── tif_error.c │ ├── tif_extension.c │ ├── tif_fax3.c │ ├── tif_fax3.h │ ├── tif_fax3sm.c │ ├── tif_flush.c │ ├── tif_getimage.c │ ├── tif_jbig.c │ ├── tif_jpeg.c │ ├── tif_jpeg_12.c │ ├── tif_luv.c │ ├── tif_lzma.c │ ├── tif_lzw.c │ ├── tif_msdos.c │ ├── tif_next.c │ ├── tif_ojpeg.c │ ├── tif_open.c │ ├── tif_packbits.c │ ├── tif_pixarlog.c │ ├── tif_predict.c │ ├── tif_predict.h │ ├── tif_print.c │ ├── tif_read.c │ ├── tif_stream.cxx │ ├── tif_strip.c │ ├── tif_swab.c │ ├── tif_thunder.c │ ├── tif_tile.c │ ├── tif_unix.c │ ├── tif_version.c │ ├── tif_vms.c │ ├── tif_warning.c │ ├── tif_win3.c │ ├── tif_win32.c │ ├── tif_write.c │ ├── tif_zip.c │ ├── tiff.h │ ├── tiffcomp.h │ ├── tiffconf.h.in │ ├── tiffconf.vc.h │ ├── tiffconf.wince.h │ ├── tiffio.h │ ├── tiffio.hxx │ ├── tiffiop.h │ ├── tiffvers.h │ └── uvcode.h ├── tiff_install.pl ├── v3p_tag ├── zlib.URL └── zlib │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── FAQ │ ├── README │ ├── adler32.c │ ├── algorithm.txt │ ├── compress.c │ ├── crc32.c │ ├── deflate.c │ ├── deflate.h │ ├── gzio.c │ ├── infblock.c │ ├── infblock.h │ ├── infcodes.c │ ├── infcodes.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inftrees.c │ ├── inftrees.h │ ├── infutil.c │ ├── infutil.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.3 │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── vcl ├── .NoDartCoverage ├── CMakeLists.txt ├── ERRORS.txt ├── README ├── config.README ├── doc │ ├── algorithm.txt │ └── conversions.txt ├── headers.iso ├── internal │ ├── vcl_atomic_count_gcc.h │ ├── vcl_atomic_count_gcc_x86.h │ ├── vcl_atomic_count_pthreads.h │ ├── vcl_atomic_count_solaris.h │ ├── vcl_atomic_count_sync.h │ ├── vcl_atomic_count_win32.h │ └── vcl_interlocked.h ├── introduction_doxy.txt ├── tests │ ├── .NoDartCoverage │ ├── CMakeLists.txt │ ├── test_algorithm.cxx │ ├── test_atomic_count.cxx │ ├── test_cctype.cxx │ ├── test_cmath.cxx │ ├── test_compiler.cxx │ ├── test_complex.cxx │ ├── test_cstdio.cxx │ ├── test_cstdio.txt │ ├── test_deque.cxx │ ├── test_driver.cxx │ ├── test_exception.cxx │ ├── test_fstream.cxx │ ├── test_include.cxx │ ├── test_iostream.cxx │ ├── test_iterator.cxx │ ├── test_limits.cxx │ ├── test_list.cxx │ ├── test_map.cxx │ ├── test_memory.cxx │ ├── test_multimap.cxx │ ├── test_new.cxx │ ├── test_preprocessor.cxx │ ├── test_rel_ops.cxx │ ├── test_set.cxx │ ├── test_sstream.cxx │ ├── test_stlfwd.cxx │ ├── test_string.cxx │ ├── test_typename.cxx │ └── test_vector.cxx ├── vcl_algorithm.h ├── vcl_atomic_count.h ├── vcl_bitset.h ├── vcl_cassert.h ├── vcl_cctype.h ├── vcl_cerrno.h ├── vcl_cfloat.h ├── vcl_ciso646.h ├── vcl_climits.h ├── vcl_clocale.h ├── vcl_cmath.h ├── vcl_compiler.h ├── vcl_complex.h ├── vcl_complex.hxx ├── vcl_config_compiler.h.in ├── vcl_config_headers.h.in ├── vcl_config_manual.h.in ├── vcl_csetjmp.h ├── vcl_csignal.h ├── vcl_cstdarg.h ├── vcl_cstddef.h ├── vcl_cstdio.h ├── vcl_cstdlib.h ├── vcl_cstring.h ├── vcl_ctime.h ├── vcl_cwchar.h ├── vcl_cwctype.h ├── vcl_deprecated.cxx ├── vcl_deprecated.h ├── vcl_deprecated_header.h ├── vcl_deque.h ├── vcl_exception.h ├── vcl_fstream.h ├── vcl_functional.h ├── vcl_iomanip.h ├── vcl_ios.h ├── vcl_iosfwd.h ├── vcl_iostream.h ├── vcl_istream.h ├── vcl_iterator.h ├── vcl_iterator.hxx ├── vcl_limits.h ├── vcl_list.h ├── vcl_locale.h ├── vcl_map.h ├── vcl_memory.h ├── vcl_new.h ├── vcl_numeric.h ├── vcl_ostream.h ├── vcl_queue.h ├── vcl_rel_ops.not ├── vcl_set.h ├── vcl_sstream.h ├── vcl_stack.h ├── vcl_stdexcept.h ├── vcl_stlfwd.h ├── vcl_streambuf.h ├── vcl_string.h ├── vcl_sys │ ├── time.h │ └── types.h ├── vcl_typeinfo.h ├── vcl_utility.h ├── vcl_valarray.h ├── vcl_vector.h └── vcl_where_root_dir.h.in └── youtube_img.png /#CMakeLists.txt#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/#CMakeLists.txt# -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/README.md -------------------------------------------------------------------------------- /Testing/Temporary/CTestCostData.txt: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /cloud_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/cloud_compare.png -------------------------------------------------------------------------------- /config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/config/CMakeLists.txt -------------------------------------------------------------------------------- /config/cmake/config/vxl_shared_link_test/static_src.cxx: -------------------------------------------------------------------------------- 1 | 2 | void vxl_static_test_function(int i) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /config/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/config/valgrind.supp -------------------------------------------------------------------------------- /contrib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/CMakeLists.txt -------------------------------------------------------------------------------- /contrib/brl/bbas/bdgl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bgrl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bgrl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bgui/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bil/tests/test_template_include.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { return 0; } 4 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsl/bsl_opinion.cxx: -------------------------------------------------------------------------------- 1 | #include "bsl_opinion.h" 2 | 3 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsl/tests/test_include.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { return 0; } 4 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsol/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsol/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsta/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsta/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bsta/vis/bsta_svg_tools.cxx: -------------------------------------------------------------------------------- 1 | #include "bsta_svg_tools.h" 2 | //: 3 | // \file 4 | -------------------------------------------------------------------------------- /contrib/brl/bbas/btol/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bugl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bugl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bvgl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bvgl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bwm/bwm_observable_point.cxx: -------------------------------------------------------------------------------- 1 | #include "bwm_observable_point.h" 2 | 3 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bwm/bwm_observable_polyline.cxx: -------------------------------------------------------------------------------- 1 | #include "bwm_observable_polyline.h" 2 | 3 | -------------------------------------------------------------------------------- /contrib/brl/bbas/bwm/wxWidgets/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/boxm/algo/rt/dummy.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/boxm/algo/sp/dummy.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/boxm/sample/dummy.cxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/boxm2/cpp/tests/test_include.cxx: -------------------------------------------------------------------------------- 1 | // no include files (yet) 2 | int main() { return 0; } 3 | -------------------------------------------------------------------------------- /contrib/brl/bseg/boxm2/pyscripts/change/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/brip/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/brip/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/sbin/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/sdet/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/sdet/sdet_edgemap.cxx: -------------------------------------------------------------------------------- 1 | #include "sdet_edgemap.h" 2 | 3 | -------------------------------------------------------------------------------- /contrib/brl/bseg/sdet/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/bseg/segv/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/brl/cvg/tests/test_include.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { return 0; } 4 | -------------------------------------------------------------------------------- /contrib/conversions/container/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/conversions/geometry/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/conversions/image/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/conversions/math/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/conversions/misc/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/conversions/misc/tests/test_include.cxx: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /contrib/cul/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/cul/readme.txt -------------------------------------------------------------------------------- /contrib/gel/gevd/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/gmvl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/gmvl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/gst/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/gtrl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/gtrl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/mrc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | # CARMEN 3 | add_subdirectory(carmen_interface) 4 | -------------------------------------------------------------------------------- /contrib/gel/mrc/carmen_interface/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/mrc/carmen_interface/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/octree/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/octree/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/pop/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/pop/pop.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/gel/pop/pop.cd -------------------------------------------------------------------------------- /contrib/gel/vdgl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vdgl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vifa/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vifa/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vmal/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vsol/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vsol/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vsol/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vtol/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vtol/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/gel/vtol/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/clsfy/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/clsfy/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/ipts/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/ipts/tools/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/mbl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/mbl/Templates/mbl_ar_process+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | MBL_AR_PROCESS_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /contrib/mul/mbl/Templates/mbl_data_wrapper+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | MBL_DATA_WRAPPER_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /contrib/mul/mbl/Templates/mbl_data_wrapper+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | MBL_DATA_WRAPPER_INSTANTIATE(unsigned); 3 | -------------------------------------------------------------------------------- /contrib/mul/mbl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/mvl2/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/pdf1d/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/pdf1d/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/pdf1d/tools/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/mul/readme.txt -------------------------------------------------------------------------------- /contrib/mul/tools/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vil3d/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vil3d/algo/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vil3d/io/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vil3d/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vil3d/tests/file_read_data/analyze/ff_byte.img: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,23456789:;<=>?@ABCDE -------------------------------------------------------------------------------- /contrib/mul/vil3d/tests/file_read_data/analyze/ff_byte_le.img: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,23456789:;<=>?@ABCDE -------------------------------------------------------------------------------- /contrib/mul/vimt/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vimt/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vimt/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vimt3d/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vimt3d/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vpdfl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/mul/vpdfl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oul/ouel/tests/test_include.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { return 0; } 4 | -------------------------------------------------------------------------------- /contrib/oul/oufgl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/oul/oufgl/TODO -------------------------------------------------------------------------------- /contrib/oul/oufgl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oul/ouml/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/oul/ouml/io.h -------------------------------------------------------------------------------- /contrib/oul/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/oul/readme.txt -------------------------------------------------------------------------------- /contrib/oxl/mvl/Homg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/contrib/oxl/mvl/Homg.h -------------------------------------------------------------------------------- /contrib/oxl/mvl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oxl/mvl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oxl/osl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oxl/osl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oxl/osl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oxl/xcv/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/oxl/xcv/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/prip/vdtop/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/prip/vmap/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/prip/vpyr/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/prip/vpyr/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rgrl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rgrl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rgrl/examples/init_xform_flipped_y.txt: -------------------------------------------------------------------------------- 1 | 1 0 2 | 0 -1 3 | 0 631 4 | -------------------------------------------------------------------------------- /contrib/rpl/rgrl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rrel/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rrel/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rrel/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rsdl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/rpl/rsdl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vepl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vepl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vepl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vipl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vipl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vipl/vipl_with_section/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vipl/vipl_with_vbl_array_2d/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/tbl/vipl/vipl_with_vnl_matrix/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/bin/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bin/FrostAPI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/FrostAPI.pm -------------------------------------------------------------------------------- /core/bin/check_dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/check_dsp -------------------------------------------------------------------------------- /core/bin/fix-builds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/fix-builds -------------------------------------------------------------------------------- /core/bin/makein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/makein -------------------------------------------------------------------------------- /core/bin/sync_co.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/sync_co.sh -------------------------------------------------------------------------------- /core/bin/vxl_demangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/vxl_demangle -------------------------------------------------------------------------------- /core/bin/vxl_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/vxl_env -------------------------------------------------------------------------------- /core/bin/vxl_filter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/bin/vxl_filter.pl -------------------------------------------------------------------------------- /core/doc/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/doc/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/CHANGES.txt -------------------------------------------------------------------------------- /core/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/README -------------------------------------------------------------------------------- /core/doc/book/book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/book/book.css -------------------------------------------------------------------------------- /core/doc/book/lena.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/book/lena.eps -------------------------------------------------------------------------------- /core/doc/book/lena.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/book/lena.pdf -------------------------------------------------------------------------------- /core/doc/book/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/book/lena.png -------------------------------------------------------------------------------- /core/doc/book/lvcs.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/book/lvcs.eps -------------------------------------------------------------------------------- /core/doc/book/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/book/makefile -------------------------------------------------------------------------------- /core/doc/vxl_doxy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/doc/vxl_doxy.pl -------------------------------------------------------------------------------- /core/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/testlib/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/testlib/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_1d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_1D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_1d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_1D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_1d+ushort-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_1D_INSTANTIATE(unsigned short); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+bool-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(bool); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+short-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(short); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+uchar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(unsigned char); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_2d+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_2D_INSTANTIATE(unsigned); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_3d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_3D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_3d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_3D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_3d+uchar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_3D_INSTANTIATE(unsigned char); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_3d+ushort-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_3D_INSTANTIATE(unsigned short); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_array_3d+void~-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ARRAY_3D_INSTANTIATE(void*); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_attributes+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ATTRIBUTES_INSTANTIATE(double); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_attributes+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ATTRIBUTES_INSTANTIATE(float); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_attributes+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_ATTRIBUTES_INSTANTIATE(unsigned); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_local_minima+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_LOCAL_MINIMA_INSTANTIATE(double); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_local_minima+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_LOCAL_MINIMA_INSTANTIATE(float); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_local_minima+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_LOCAL_MINIMA_INSTANTIATE(unsigned); 3 | 4 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_sparse_array_1d+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_SPARSE_ARRAY_1D_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_sparse_array_2d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_SPARSE_ARRAY_2D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_sparse_array_2d+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_SPARSE_ARRAY_2D_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_sparse_array_3d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_SPARSE_ARRAY_3D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/Templates/vbl_sparse_array_3d+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_SPARSE_ARRAY_3D_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vbl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/examples/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_1d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_1D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_1d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_1D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_2d+bool-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_2D_INSTANTIATE(bool); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_2d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_2D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_2d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_2D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_2d+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_2D_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_2d+uchar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_2D_INSTANTIATE(unsigned char); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_2d+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_2D_INSTANTIATE(unsigned); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_3d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_3D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_3d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_3D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vbl/io/Templates/vbl_io_array_3d+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VBL_IO_ARRAY_3D_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vbl/io/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vbl/vbl_edge.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_edge.cxx -------------------------------------------------------------------------------- /core/vbl/vbl_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_edge.h -------------------------------------------------------------------------------- /core/vbl/vbl_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_fwd.h -------------------------------------------------------------------------------- /core/vbl/vbl_qsort.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_qsort.cxx -------------------------------------------------------------------------------- /core/vbl/vbl_qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_qsort.h -------------------------------------------------------------------------------- /core/vbl/vbl_sort.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_sort.cxx -------------------------------------------------------------------------------- /core/vbl/vbl_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_sort.h -------------------------------------------------------------------------------- /core/vbl/vbl_sort.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_sort.hxx -------------------------------------------------------------------------------- /core/vbl/vbl_triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vbl/vbl_triple.h -------------------------------------------------------------------------------- /core/vcsl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vcsl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vcsl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vcsl/vcsl_angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_angle.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_axis.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_graph.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_meter.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_polar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_polar.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_scale.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_unit.h -------------------------------------------------------------------------------- /core/vcsl/vcsl_utm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_utm.cxx -------------------------------------------------------------------------------- /core/vcsl/vcsl_utm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vcsl/vcsl_utm.h -------------------------------------------------------------------------------- /core/vgl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/algo/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/algo/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/io/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/io/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgl/vgl_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_area.h -------------------------------------------------------------------------------- /core/vgl/vgl_area.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_area.hxx -------------------------------------------------------------------------------- /core/vgl/vgl_box_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_box_2d.h -------------------------------------------------------------------------------- /core/vgl/vgl_box_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_box_3d.h -------------------------------------------------------------------------------- /core/vgl/vgl_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_clip.h -------------------------------------------------------------------------------- /core/vgl/vgl_clip.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_clip.hxx -------------------------------------------------------------------------------- /core/vgl/vgl_conic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_conic.h -------------------------------------------------------------------------------- /core/vgl/vgl_conic.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_conic.hxx -------------------------------------------------------------------------------- /core/vgl/vgl_convex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_convex.h -------------------------------------------------------------------------------- /core/vgl/vgl_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_fwd.h -------------------------------------------------------------------------------- /core/vgl/vgl_homg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_homg.cxx -------------------------------------------------------------------------------- /core/vgl/vgl_homg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_homg.h -------------------------------------------------------------------------------- /core/vgl/vgl_line_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_line_2d.h -------------------------------------------------------------------------------- /core/vgl/vgl_polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_polygon.h -------------------------------------------------------------------------------- /core/vgl/vgl_ray_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgl/vgl_ray_3d.h -------------------------------------------------------------------------------- /core/vgui/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgui/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgui/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/dll.h -------------------------------------------------------------------------------- /core/vgui/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/doc/README -------------------------------------------------------------------------------- /core/vgui/doc/overlays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/doc/overlays -------------------------------------------------------------------------------- /core/vgui/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgui/internals/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgui/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vgui/vgui.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui.cxx -------------------------------------------------------------------------------- /core/vgui/vgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui.h -------------------------------------------------------------------------------- /core/vgui/vgui_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_color.h -------------------------------------------------------------------------------- /core/vgui/vgui_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_event.h -------------------------------------------------------------------------------- /core/vgui/vgui_find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_find.h -------------------------------------------------------------------------------- /core/vgui/vgui_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_font.h -------------------------------------------------------------------------------- /core/vgui/vgui_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_fwd.h -------------------------------------------------------------------------------- /core/vgui/vgui_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_gl.h -------------------------------------------------------------------------------- /core/vgui/vgui_glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_glu.h -------------------------------------------------------------------------------- /core/vgui/vgui_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_glut.h -------------------------------------------------------------------------------- /core/vgui/vgui_glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_glx.h -------------------------------------------------------------------------------- /core/vgui/vgui_key.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_key.cxx -------------------------------------------------------------------------------- /core/vgui/vgui_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_key.h -------------------------------------------------------------------------------- /core/vgui/vgui_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_macro.h -------------------------------------------------------------------------------- /core/vgui/vgui_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_menu.h -------------------------------------------------------------------------------- /core/vgui/vgui_pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_pixel.h -------------------------------------------------------------------------------- /core/vgui/vgui_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_style.h -------------------------------------------------------------------------------- /core/vgui/vgui_tag.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_tag.cxx -------------------------------------------------------------------------------- /core/vgui/vgui_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_tag.h -------------------------------------------------------------------------------- /core/vgui/vgui_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/vgui_utils.h -------------------------------------------------------------------------------- /core/vgui/wx/vgui_wx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vgui/wx/vgui_wx.h -------------------------------------------------------------------------------- /core/vidl/vidl_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vidl/vidl_color.h -------------------------------------------------------------------------------- /core/vidl/vidl_dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vidl/vidl_dshow.h -------------------------------------------------------------------------------- /core/vidl/vidl_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vidl/vidl_frame.h -------------------------------------------------------------------------------- /core/vil/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_copy+bool-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_COPY_INSTANTIATE(bool ); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_copy+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_COPY_INSTANTIATE(double ); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_copy+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_COPY_INSTANTIATE(float ); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_image_view+bool-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_IMAGE_VIEW_INSTANTIATE(bool); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_image_view+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_IMAGE_VIEW_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_image_view+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_IMAGE_VIEW_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_rgb+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_RGB_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_rgb+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_RGB_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_rgba+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_RGBA_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vil/Templates/vil_rgba+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_RGBA_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_fft+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_FFT_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_fft+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_FFT_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_gauss_reduce+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_GAUSS_REDUCE_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_median+bool-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_MEDIAN_INSTANTIATE(bool ); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_median+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_MEDIAN_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_median+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_MEDIAN_INSTANTIATE(float ); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_median+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_MEDIAN_INSTANTIATE(int ); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_threshold+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_THRESHOLD_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_threshold+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_THRESHOLD_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vil/algo/Templates/vil_threshold+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VIL_THRESHOLD_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vil/algo/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/algo/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/io/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/io/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/io/tests/test_template_include.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { return 0; } 4 | -------------------------------------------------------------------------------- /core/vil/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/notes.html -------------------------------------------------------------------------------- /core/vil/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil/tests/file_read_data/ff_grey1bit_raw.pbm: -------------------------------------------------------------------------------- 1 | P4 2 | # Created by IrfanView 3 | 5 3 4 | XШ -------------------------------------------------------------------------------- /core/vil/tests/file_read_data/ff_nitf_16bit_true.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 2 2 4 | 0 8191 5 | 3231 1 -------------------------------------------------------------------------------- /core/vil/tests/file_read_data/ff_nitf_float_true.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 2 2 4 | 0 1e-006 5 | 1e6 65 -------------------------------------------------------------------------------- /core/vil/vil_border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_border.h -------------------------------------------------------------------------------- /core/vil/vil_chord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_chord.h -------------------------------------------------------------------------------- /core/vil/vil_clamp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_clamp.cxx -------------------------------------------------------------------------------- /core/vil/vil_clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_clamp.h -------------------------------------------------------------------------------- /core/vil/vil_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_convert.h -------------------------------------------------------------------------------- /core/vil/vil_copy.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_copy.cxx -------------------------------------------------------------------------------- /core/vil/vil_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_copy.h -------------------------------------------------------------------------------- /core/vil/vil_copy.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_copy.hxx -------------------------------------------------------------------------------- /core/vil/vil_crop.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_crop.cxx -------------------------------------------------------------------------------- /core/vil/vil_crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_crop.h -------------------------------------------------------------------------------- /core/vil/vil_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_fill.h -------------------------------------------------------------------------------- /core/vil/vil_flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_flatten.h -------------------------------------------------------------------------------- /core/vil/vil_flip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_flip.cxx -------------------------------------------------------------------------------- /core/vil/vil_flip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_flip.h -------------------------------------------------------------------------------- /core/vil/vil_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_fwd.h -------------------------------------------------------------------------------- /core/vil/vil_load.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_load.cxx -------------------------------------------------------------------------------- /core/vil/vil_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_load.h -------------------------------------------------------------------------------- /core/vil/vil_math.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_math.cxx -------------------------------------------------------------------------------- /core/vil/vil_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_math.h -------------------------------------------------------------------------------- /core/vil/vil_na.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_na.cxx -------------------------------------------------------------------------------- /core/vil/vil_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_na.h -------------------------------------------------------------------------------- /core/vil/vil_new.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_new.cxx -------------------------------------------------------------------------------- /core/vil/vil_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_new.h -------------------------------------------------------------------------------- /core/vil/vil_open.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_open.cxx -------------------------------------------------------------------------------- /core/vil/vil_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_open.h -------------------------------------------------------------------------------- /core/vil/vil_plane.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_plane.cxx -------------------------------------------------------------------------------- /core/vil/vil_plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_plane.h -------------------------------------------------------------------------------- /core/vil/vil_print.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_print.cxx -------------------------------------------------------------------------------- /core/vil/vil_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_print.h -------------------------------------------------------------------------------- /core/vil/vil_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_rgb.h -------------------------------------------------------------------------------- /core/vil/vil_rgb.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_rgb.hxx -------------------------------------------------------------------------------- /core/vil/vil_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_rgba.h -------------------------------------------------------------------------------- /core/vil/vil_rgba.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_rgba.hxx -------------------------------------------------------------------------------- /core/vil/vil_rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_rotate.h -------------------------------------------------------------------------------- /core/vil/vil_round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_round.h -------------------------------------------------------------------------------- /core/vil/vil_save.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_save.cxx -------------------------------------------------------------------------------- /core/vil/vil_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_save.h -------------------------------------------------------------------------------- /core/vil/vil_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_stream.h -------------------------------------------------------------------------------- /core/vil/vil_view_as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_view_as.h -------------------------------------------------------------------------------- /core/vil/vil_warp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil/vil_warp.h -------------------------------------------------------------------------------- /core/vil1/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil1/FORMATS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/FORMATS.txt -------------------------------------------------------------------------------- /core/vil1/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/NOTES.txt -------------------------------------------------------------------------------- /core/vil1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/README.txt -------------------------------------------------------------------------------- /core/vil1/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil1/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil1/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vil1/tests/file_read_data/ff_grey1bit_raw.pbm: -------------------------------------------------------------------------------- 1 | P4 2 | 5 3 3 | XШ -------------------------------------------------------------------------------- /core/vil1/vil1_16bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_16bit.h -------------------------------------------------------------------------------- /core/vil1/vil1_32bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_32bit.h -------------------------------------------------------------------------------- /core/vil1/vil1_clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_clamp.h -------------------------------------------------------------------------------- /core/vil1/vil1_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_copy.h -------------------------------------------------------------------------------- /core/vil1/vil1_crop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_crop.h -------------------------------------------------------------------------------- /core/vil1/vil1_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_fwd.h -------------------------------------------------------------------------------- /core/vil1/vil1_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_image.h -------------------------------------------------------------------------------- /core/vil1/vil1_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_load.h -------------------------------------------------------------------------------- /core/vil1/vil1_ncc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_ncc.h -------------------------------------------------------------------------------- /core/vil1/vil1_ncc.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_ncc.hxx -------------------------------------------------------------------------------- /core/vil1/vil1_new.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_new.cxx -------------------------------------------------------------------------------- /core/vil1/vil1_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_new.h -------------------------------------------------------------------------------- /core/vil1/vil1_open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_open.h -------------------------------------------------------------------------------- /core/vil1/vil1_pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_pixel.h -------------------------------------------------------------------------------- /core/vil1/vil1_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_rgb.h -------------------------------------------------------------------------------- /core/vil1/vil1_rgb.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_rgb.hxx -------------------------------------------------------------------------------- /core/vil1/vil1_rgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_rgba.h -------------------------------------------------------------------------------- /core/vil1/vil1_save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_save.h -------------------------------------------------------------------------------- /core/vil1/vil1_skip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_skip.h -------------------------------------------------------------------------------- /core/vil1/vil1_ssd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_ssd.h -------------------------------------------------------------------------------- /core/vil1/vil1_ssd.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_ssd.hxx -------------------------------------------------------------------------------- /core/vil1/vil1_vil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_vil.h -------------------------------------------------------------------------------- /core/vil1/vil1_warp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vil1/vil1_warp.h -------------------------------------------------------------------------------- /core/vnl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_c_na_vector+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_C_NA_VECTOR_INSTANTIATE_ordered(float); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_c_vector+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_C_VECTOR_INSTANTIATE_ordered(double); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_complex_ops+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_COMPLEX_OPS_INSTANTIATE(double); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_complex_ops+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_COMPLEX_OPS_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_det+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_DET_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_det+long_double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_DET_INSTANTIATE(long double); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_diag_matrix+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_DIAG_MATRIX_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_diag_matrix+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_DIAG_MATRIX_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_diag_matrix+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_DIAG_MATRIX_INSTANTIATE(int); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_diag_matrix+long_double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_DIAG_MATRIX_INSTANTIATE(long double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_fortran_copy+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_FORTRAN_COPY_INSTANTIATE(double); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_fortran_copy+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_FORTRAN_COPY_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matlab_print+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATLAB_PRINT_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matlab_print+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATLAB_PRINT_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+long-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_INSTANTIATE(long); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+long_double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_INSTANTIATE(long double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+schar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_INSTANTIATE(signed char); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix+ushort-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_MATRIX_INSTANTIATE(unsigned short); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.1.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,1,1); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.1.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,1,2); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.1.3-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,1,3); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.1.6-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,1,6); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,1); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,2); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.3-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,3); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.4-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,4); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.6-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,6); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.8-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,8); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.2.9-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,2,9); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.3.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,3,1); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.3.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,3,2); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.3.3-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,3,3); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.3.4-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,3,4); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.3.6-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,3,6); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.3.9-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,3,9); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.4.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,4,1); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.4.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,4,2); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.4.3-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,4,3); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.4.4-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,4,4); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.6.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,6,1); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.6.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,6,2); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.6.3-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,6,3); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+double.6.6-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(double,6,6); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+int.1.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(int,1,1); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+int.2.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(int,2,2); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_matrix_fixed+int.3.4-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_MATRIX_FIXED_INSTANTIATE(int,3,4); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_polynomial+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_POLYNOMIAL_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_polynomial+long-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_POLYNOMIAL_INSTANTIATE(long); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_rank+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_RANK_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_rank+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_RANK_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_sym_matrix+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_SYM_MATRIX_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_sym_matrix+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_SYM_MATRIX_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_sym_matrix+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_SYM_MATRIX_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_INSTANTIATE(int); 3 | 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+long-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_INSTANTIATE(long); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+long_double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_VECTOR_INSTANTIATE(long double); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+schar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_INSTANTIATE(signed char); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector+ushort-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_VECTOR_INSTANTIATE(unsigned short); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+float.10-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_FIXED_INSTANTIATE(float,10); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+float.16-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_FIXED_INSTANTIATE(float,16); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+float.5-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_FIXED_INSTANTIATE(float,5); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+float.9-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_VECTOR_FIXED_INSTANTIATE(float,9); 3 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+int.1-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_VECTOR_FIXED_INSTANTIATE(int,1); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+int.2-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_VECTOR_FIXED_INSTANTIATE(int,2); 4 | -------------------------------------------------------------------------------- /core/vnl/Templates/vnl_vector_fixed+int.4-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_VECTOR_FIXED_INSTANTIATE(int,4); 4 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_chi_squared+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_CHI_SQUARED_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_1d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_1D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_1d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_1D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_2d+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_2D_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_2d+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_2D_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_base+1.double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_BASE_INSTANTIATE(1, double); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_base+1.float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_BASE_INSTANTIATE(1, float); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_base+2.double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_BASE_INSTANTIATE(2, double); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_fft_base+2.float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_FFT_BASE_INSTANTIATE(2, float); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_qr+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_QR_INSTANTIATE(double); 4 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_qr+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_QR_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_svd+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_SVD_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/algo/Templates/vnl_svd+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VNL_SVD_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vnl/algo/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/dll.h -------------------------------------------------------------------------------- /core/vnl/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+long-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(long); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+schar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(signed char); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+uchar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(unsigned char); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(unsigned int); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_matrix+ulong-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_MATRIX_INSTANTIATE(unsigned long); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_sym_matrix+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_SYM_MATRIX_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+long-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(long); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+schar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(signed char); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+uchar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(unsigned char); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(unsigned int); 3 | -------------------------------------------------------------------------------- /core/vnl/io/Templates/vnl_io_vector+ulong-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VNL_IO_VECTOR_INSTANTIATE(unsigned long); 3 | -------------------------------------------------------------------------------- /core/vnl/io/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vnl/vnl_T_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_T_n.h -------------------------------------------------------------------------------- /core/vnl/vnl_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_alloc.h -------------------------------------------------------------------------------- /core/vnl/vnl_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_beta.h -------------------------------------------------------------------------------- /core/vnl/vnl_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_block.h -------------------------------------------------------------------------------- /core/vnl/vnl_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_copy.h -------------------------------------------------------------------------------- /core/vnl/vnl_cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_cross.h -------------------------------------------------------------------------------- /core/vnl/vnl_det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_det.h -------------------------------------------------------------------------------- /core/vnl/vnl_det.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_det.hxx -------------------------------------------------------------------------------- /core/vnl/vnl_erf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_erf.cxx -------------------------------------------------------------------------------- /core/vnl/vnl_erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_erf.h -------------------------------------------------------------------------------- /core/vnl/vnl_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_error.h -------------------------------------------------------------------------------- /core/vnl/vnl_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_fwd.h -------------------------------------------------------------------------------- /core/vnl/vnl_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_gamma.h -------------------------------------------------------------------------------- /core/vnl/vnl_imag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_imag.h -------------------------------------------------------------------------------- /core/vnl/vnl_int_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_int_2.h -------------------------------------------------------------------------------- /core/vnl/vnl_int_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_int_3.h -------------------------------------------------------------------------------- /core/vnl/vnl_int_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_int_4.h -------------------------------------------------------------------------------- /core/vnl/vnl_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_math.h -------------------------------------------------------------------------------- /core/vnl/vnl_na.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_na.cxx -------------------------------------------------------------------------------- /core/vnl/vnl_na.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_na.h -------------------------------------------------------------------------------- /core/vnl/vnl_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_power.h -------------------------------------------------------------------------------- /core/vnl/vnl_rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_rank.h -------------------------------------------------------------------------------- /core/vnl/vnl_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_real.h -------------------------------------------------------------------------------- /core/vnl/vnl_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_sse.h -------------------------------------------------------------------------------- /core/vnl/vnl_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_tag.h -------------------------------------------------------------------------------- /core/vnl/vnl_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vnl/vnl_trace.h -------------------------------------------------------------------------------- /core/vpgl/io/Templates/vpgl_io_camera+float-.cxx: -------------------------------------------------------------------------------- 1 | #include "../vpgl_io_camera.hxx" 2 | 3 | VPGL_IO_CAMERA_INSTANTIATE(float); 4 | -------------------------------------------------------------------------------- /core/vpgl/vpgl_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vpgl/vpgl_dll.h -------------------------------------------------------------------------------- /core/vpgl/vpgl_utm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vpgl/vpgl_utm.h -------------------------------------------------------------------------------- /core/vpl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vpl/vpl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vpl/vpl.cxx -------------------------------------------------------------------------------- /core/vpl/vpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vpl/vpl.h -------------------------------------------------------------------------------- /core/vpl/vpl_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vpl/vpl_mutex.h -------------------------------------------------------------------------------- /core/vsl/Templates/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_deque_io+bool-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_DEQUE_IO_INSTANTIATE(bool); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_pair_io+double.uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_PAIR_IO_INSTANTIATE(double, unsigned int); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_pair_io+int.double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_PAIR_IO_INSTANTIATE(int, double); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_pair_io+int.float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_PAIR_IO_INSTANTIATE(int, float); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_pair_io+uint.double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_PAIR_IO_INSTANTIATE(unsigned int, double); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_pair_io+uint.float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_PAIR_IO_INSTANTIATE(unsigned int, float); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_set_io+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_SET_IO_INSTANTIATE(unsigned); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+double-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(double); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+float-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(float); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+int-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(int); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+long-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(long); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+uchar-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(unsigned char ); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+uint-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(unsigned int); 3 | -------------------------------------------------------------------------------- /core/vsl/Templates/vsl_vector_io+ulong-.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | VSL_VECTOR_IO_INSTANTIATE(unsigned long); 3 | -------------------------------------------------------------------------------- /core/vsl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vsl/vsl_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vsl/vsl_fwd.h -------------------------------------------------------------------------------- /core/vul/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vul/io/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vul/io/tests/test_include.cxx: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { return 0; } 4 | -------------------------------------------------------------------------------- /core/vul/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/vul/vul_arg.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_arg.cxx -------------------------------------------------------------------------------- /core/vul/vul_arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_arg.h -------------------------------------------------------------------------------- /core/vul/vul_awk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_awk.cxx -------------------------------------------------------------------------------- /core/vul/vul_awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_awk.h -------------------------------------------------------------------------------- /core/vul/vul_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_debug.h -------------------------------------------------------------------------------- /core/vul/vul_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_file.h -------------------------------------------------------------------------------- /core/vul/vul_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_fwd.h -------------------------------------------------------------------------------- /core/vul/vul_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_timer.h -------------------------------------------------------------------------------- /core/vul/vul_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_trace.h -------------------------------------------------------------------------------- /core/vul/vul_url.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_url.cxx -------------------------------------------------------------------------------- /core/vul/vul_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vul/vul_url.h -------------------------------------------------------------------------------- /core/vxl_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vxl_config.h.in -------------------------------------------------------------------------------- /core/vxl_copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vxl_copyright.h -------------------------------------------------------------------------------- /core/vxl_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/core/vxl_version.h -------------------------------------------------------------------------------- /scripts/doxy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/scripts/doxy/README -------------------------------------------------------------------------------- /scripts/doxy/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/scripts/doxy/faq.txt -------------------------------------------------------------------------------- /teaser_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/teaser_img.png -------------------------------------------------------------------------------- /v3p/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/CMakeLists.txt -------------------------------------------------------------------------------- /v3p/Hermes.URL: -------------------------------------------------------------------------------- 1 | http://clanlib.org/hermes/ 2 | -------------------------------------------------------------------------------- /v3p/bzlib.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib.URL -------------------------------------------------------------------------------- /v3p/bzlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/LICENSE -------------------------------------------------------------------------------- /v3p/bzlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/README -------------------------------------------------------------------------------- /v3p/bzlib/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/bzlib.c -------------------------------------------------------------------------------- /v3p/bzlib/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/bzlib.h -------------------------------------------------------------------------------- /v3p/bzlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/compress.c -------------------------------------------------------------------------------- /v3p/bzlib/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/crctable.c -------------------------------------------------------------------------------- /v3p/bzlib/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/bzlib/huffman.c -------------------------------------------------------------------------------- /v3p/clipper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/clipper/README -------------------------------------------------------------------------------- /v3p/dcmtk.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk.URL -------------------------------------------------------------------------------- /v3p/dcmtk/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/dcmtk/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk/COPYRIGHT -------------------------------------------------------------------------------- /v3p/dcmtk/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk/FAQ -------------------------------------------------------------------------------- /v3p/dcmtk/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk/HISTORY -------------------------------------------------------------------------------- /v3p/dcmtk/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk/INSTALL -------------------------------------------------------------------------------- /v3p/dcmtk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk/README -------------------------------------------------------------------------------- /v3p/dcmtk/README.v3p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/dcmtk/README.v3p -------------------------------------------------------------------------------- /v3p/geotiff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/geotiff/README -------------------------------------------------------------------------------- /v3p/geotiff/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/geotiff/defs.h -------------------------------------------------------------------------------- /v3p/geotiff/xtiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/geotiff/xtiff.c -------------------------------------------------------------------------------- /v3p/j2k/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Empty by purpose -------------------------------------------------------------------------------- /v3p/j2k/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/j2k/README.txt -------------------------------------------------------------------------------- /v3p/jpeg/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcapimin.c -------------------------------------------------------------------------------- /v3p/jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcapistd.c -------------------------------------------------------------------------------- /v3p/jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jccoefct.c -------------------------------------------------------------------------------- /v3p/jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jccolor.c -------------------------------------------------------------------------------- /v3p/jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /v3p/jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jchuff.c -------------------------------------------------------------------------------- /v3p/jpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jchuff.h -------------------------------------------------------------------------------- /v3p/jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcinit.c -------------------------------------------------------------------------------- /v3p/jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcmainct.c -------------------------------------------------------------------------------- /v3p/jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcmarker.c -------------------------------------------------------------------------------- /v3p/jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcmaster.c -------------------------------------------------------------------------------- /v3p/jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcomapi.c -------------------------------------------------------------------------------- /v3p/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jconfig.h -------------------------------------------------------------------------------- /v3p/jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcparam.c -------------------------------------------------------------------------------- /v3p/jpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcphuff.c -------------------------------------------------------------------------------- /v3p/jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcprepct.c -------------------------------------------------------------------------------- /v3p/jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jcsample.c -------------------------------------------------------------------------------- /v3p/jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jctrans.c -------------------------------------------------------------------------------- /v3p/jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdapimin.c -------------------------------------------------------------------------------- /v3p/jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdapistd.c -------------------------------------------------------------------------------- /v3p/jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdatadst.c -------------------------------------------------------------------------------- /v3p/jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /v3p/jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /v3p/jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdcolor.c -------------------------------------------------------------------------------- /v3p/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdct.h -------------------------------------------------------------------------------- /v3p/jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /v3p/jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdhuff.c -------------------------------------------------------------------------------- /v3p/jpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdhuff.h -------------------------------------------------------------------------------- /v3p/jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdinput.c -------------------------------------------------------------------------------- /v3p/jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdmainct.c -------------------------------------------------------------------------------- /v3p/jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdmarker.c -------------------------------------------------------------------------------- /v3p/jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdmaster.c -------------------------------------------------------------------------------- /v3p/jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdmerge.c -------------------------------------------------------------------------------- /v3p/jpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdphuff.c -------------------------------------------------------------------------------- /v3p/jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdpostct.c -------------------------------------------------------------------------------- /v3p/jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdsample.c -------------------------------------------------------------------------------- /v3p/jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jdtrans.c -------------------------------------------------------------------------------- /v3p/jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jerror.c -------------------------------------------------------------------------------- /v3p/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jerror.h -------------------------------------------------------------------------------- /v3p/jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /v3p/jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /v3p/jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jfdctint.c -------------------------------------------------------------------------------- /v3p/jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jidctflt.c -------------------------------------------------------------------------------- /v3p/jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jidctfst.c -------------------------------------------------------------------------------- /v3p/jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jidctint.c -------------------------------------------------------------------------------- /v3p/jpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jidctred.c -------------------------------------------------------------------------------- /v3p/jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jinclude.h -------------------------------------------------------------------------------- /v3p/jpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jmemansi.c -------------------------------------------------------------------------------- /v3p/jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /v3p/jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jmemsys.h -------------------------------------------------------------------------------- /v3p/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /v3p/jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jpegint.h -------------------------------------------------------------------------------- /v3p/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jpeglib.h -------------------------------------------------------------------------------- /v3p/jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jquant1.c -------------------------------------------------------------------------------- /v3p/jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jquant2.c -------------------------------------------------------------------------------- /v3p/jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jutils.c -------------------------------------------------------------------------------- /v3p/jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/jpeg/jversion.h -------------------------------------------------------------------------------- /v3p/netlib.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/netlib.URL -------------------------------------------------------------------------------- /v3p/netlib/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/netlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/netlib/README.md -------------------------------------------------------------------------------- /v3p/netlib/examples/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/netlib/laso/urand.P: -------------------------------------------------------------------------------- 1 | extern E_f urand_(integer *iy); 2 | -------------------------------------------------------------------------------- /v3p/netlib/libf2c/math.hvc: -------------------------------------------------------------------------------- 1 | /* for VC 4.2 */ 2 | #include 3 | #undef complex 4 | -------------------------------------------------------------------------------- /v3p/netlib/minpack/dpmpar.P: -------------------------------------------------------------------------------- 1 | extern doublereal dpmpar_(integer *i__); 2 | -------------------------------------------------------------------------------- /v3p/netlib/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/netlib/v3p_f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/netlib/v3p_f2c.h -------------------------------------------------------------------------------- /v3p/openjpeg2/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/bio.c -------------------------------------------------------------------------------- /v3p/openjpeg2/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/bio.h -------------------------------------------------------------------------------- /v3p/openjpeg2/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/cio.c -------------------------------------------------------------------------------- /v3p/openjpeg2/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/cio.h -------------------------------------------------------------------------------- /v3p/openjpeg2/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/dwt.c -------------------------------------------------------------------------------- /v3p/openjpeg2/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/dwt.h -------------------------------------------------------------------------------- /v3p/openjpeg2/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/fix.h -------------------------------------------------------------------------------- /v3p/openjpeg2/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/int.h -------------------------------------------------------------------------------- /v3p/openjpeg2/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/j2k.c -------------------------------------------------------------------------------- /v3p/openjpeg2/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/j2k.h -------------------------------------------------------------------------------- /v3p/openjpeg2/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/jp2.c -------------------------------------------------------------------------------- /v3p/openjpeg2/jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/jp2.h -------------------------------------------------------------------------------- /v3p/openjpeg2/jpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/jpt.c -------------------------------------------------------------------------------- /v3p/openjpeg2/jpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/jpt.h -------------------------------------------------------------------------------- /v3p/openjpeg2/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/mct.c -------------------------------------------------------------------------------- /v3p/openjpeg2/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/mct.h -------------------------------------------------------------------------------- /v3p/openjpeg2/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/mqc.c -------------------------------------------------------------------------------- /v3p/openjpeg2/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/mqc.h -------------------------------------------------------------------------------- /v3p/openjpeg2/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/pi.c -------------------------------------------------------------------------------- /v3p/openjpeg2/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/pi.h -------------------------------------------------------------------------------- /v3p/openjpeg2/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/raw.c -------------------------------------------------------------------------------- /v3p/openjpeg2/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/raw.h -------------------------------------------------------------------------------- /v3p/openjpeg2/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/t1.c -------------------------------------------------------------------------------- /v3p/openjpeg2/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/t1.h -------------------------------------------------------------------------------- /v3p/openjpeg2/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/t2.c -------------------------------------------------------------------------------- /v3p/openjpeg2/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/t2.h -------------------------------------------------------------------------------- /v3p/openjpeg2/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/tcd.c -------------------------------------------------------------------------------- /v3p/openjpeg2/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/tcd.h -------------------------------------------------------------------------------- /v3p/openjpeg2/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/tgt.c -------------------------------------------------------------------------------- /v3p/openjpeg2/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/openjpeg2/tgt.h -------------------------------------------------------------------------------- /v3p/png.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png.URL -------------------------------------------------------------------------------- /v3p/png/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/png/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/ANNOUNCE -------------------------------------------------------------------------------- /v3p/png/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/CHANGES -------------------------------------------------------------------------------- /v3p/png/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/INSTALL -------------------------------------------------------------------------------- /v3p/png/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/LICENSE -------------------------------------------------------------------------------- /v3p/png/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/README -------------------------------------------------------------------------------- /v3p/png/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/TODO -------------------------------------------------------------------------------- /v3p/png/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/example.c -------------------------------------------------------------------------------- /v3p/png/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/libpng.3 -------------------------------------------------------------------------------- /v3p/png/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/libpng.pc.in -------------------------------------------------------------------------------- /v3p/png/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/libpngpf.3 -------------------------------------------------------------------------------- /v3p/png/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/png.5 -------------------------------------------------------------------------------- /v3p/png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/png.c -------------------------------------------------------------------------------- /v3p/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/png.h -------------------------------------------------------------------------------- /v3p/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngconf.h -------------------------------------------------------------------------------- /v3p/png/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngdebug.h -------------------------------------------------------------------------------- /v3p/png/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngerror.c -------------------------------------------------------------------------------- /v3p/png/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngget.c -------------------------------------------------------------------------------- /v3p/png/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pnginfo.h -------------------------------------------------------------------------------- /v3p/png/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pnglibconf.h -------------------------------------------------------------------------------- /v3p/png/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngmem.c -------------------------------------------------------------------------------- /v3p/png/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngpread.c -------------------------------------------------------------------------------- /v3p/png/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngpriv.h -------------------------------------------------------------------------------- /v3p/png/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngread.c -------------------------------------------------------------------------------- /v3p/png/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngrio.c -------------------------------------------------------------------------------- /v3p/png/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngrtran.c -------------------------------------------------------------------------------- /v3p/png/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngrutil.c -------------------------------------------------------------------------------- /v3p/png/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngset.c -------------------------------------------------------------------------------- /v3p/png/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngstruct.h -------------------------------------------------------------------------------- /v3p/png/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngtrans.c -------------------------------------------------------------------------------- /v3p/png/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngwio.c -------------------------------------------------------------------------------- /v3p/png/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngwrite.c -------------------------------------------------------------------------------- /v3p/png/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngwtran.c -------------------------------------------------------------------------------- /v3p/png/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/png/pngwutil.c -------------------------------------------------------------------------------- /v3p/png/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/rply/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/rply/LICENSE -------------------------------------------------------------------------------- /v3p/rply/etc/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/rply/etc/dump.c -------------------------------------------------------------------------------- /v3p/rply/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/rply/readme.txt -------------------------------------------------------------------------------- /v3p/rply/rply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/rply/rply.c -------------------------------------------------------------------------------- /v3p/rply/rply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/rply/rply.h -------------------------------------------------------------------------------- /v3p/tiff.URL: -------------------------------------------------------------------------------- 1 | http://www.libtiff.org/ 2 | -------------------------------------------------------------------------------- /v3p/tiff/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/tiff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/Makefile.am -------------------------------------------------------------------------------- /v3p/tiff/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/Makefile.in -------------------------------------------------------------------------------- /v3p/tiff/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/SConstruct -------------------------------------------------------------------------------- /v3p/tiff/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/doc/README -------------------------------------------------------------------------------- /v3p/tiff/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/doc/TODO -------------------------------------------------------------------------------- /v3p/tiff/doc/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.3 2 | -------------------------------------------------------------------------------- /v3p/tiff/libtiff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/libtiff.def -------------------------------------------------------------------------------- /v3p/tiff/libtiff.map: -------------------------------------------------------------------------------- 1 | LIBTIFF_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /v3p/tiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /v3p/tiff/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/makefile.vc -------------------------------------------------------------------------------- /v3p/tiff/mkspans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/mkspans.c -------------------------------------------------------------------------------- /v3p/tiff/mkversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/mkversion.c -------------------------------------------------------------------------------- /v3p/tiff/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/port.h -------------------------------------------------------------------------------- /v3p/tiff/t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/t4.h -------------------------------------------------------------------------------- /v3p/tiff/tif_acorn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_acorn.c -------------------------------------------------------------------------------- /v3p/tiff/tif_apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_apple.c -------------------------------------------------------------------------------- /v3p/tiff/tif_atari.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_atari.c -------------------------------------------------------------------------------- /v3p/tiff/tif_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_aux.c -------------------------------------------------------------------------------- /v3p/tiff/tif_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_close.c -------------------------------------------------------------------------------- /v3p/tiff/tif_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_codec.c -------------------------------------------------------------------------------- /v3p/tiff/tif_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_color.c -------------------------------------------------------------------------------- /v3p/tiff/tif_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_dir.c -------------------------------------------------------------------------------- /v3p/tiff/tif_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_dir.h -------------------------------------------------------------------------------- /v3p/tiff/tif_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_error.c -------------------------------------------------------------------------------- /v3p/tiff/tif_fax3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_fax3.c -------------------------------------------------------------------------------- /v3p/tiff/tif_fax3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_fax3.h -------------------------------------------------------------------------------- /v3p/tiff/tif_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_flush.c -------------------------------------------------------------------------------- /v3p/tiff/tif_jbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_jbig.c -------------------------------------------------------------------------------- /v3p/tiff/tif_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_jpeg.c -------------------------------------------------------------------------------- /v3p/tiff/tif_luv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_luv.c -------------------------------------------------------------------------------- /v3p/tiff/tif_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_lzma.c -------------------------------------------------------------------------------- /v3p/tiff/tif_lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_lzw.c -------------------------------------------------------------------------------- /v3p/tiff/tif_msdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_msdos.c -------------------------------------------------------------------------------- /v3p/tiff/tif_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_next.c -------------------------------------------------------------------------------- /v3p/tiff/tif_ojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_ojpeg.c -------------------------------------------------------------------------------- /v3p/tiff/tif_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_open.c -------------------------------------------------------------------------------- /v3p/tiff/tif_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_print.c -------------------------------------------------------------------------------- /v3p/tiff/tif_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_read.c -------------------------------------------------------------------------------- /v3p/tiff/tif_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_strip.c -------------------------------------------------------------------------------- /v3p/tiff/tif_swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_swab.c -------------------------------------------------------------------------------- /v3p/tiff/tif_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_tile.c -------------------------------------------------------------------------------- /v3p/tiff/tif_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_unix.c -------------------------------------------------------------------------------- /v3p/tiff/tif_vms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_vms.c -------------------------------------------------------------------------------- /v3p/tiff/tif_win3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_win3.c -------------------------------------------------------------------------------- /v3p/tiff/tif_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_win32.c -------------------------------------------------------------------------------- /v3p/tiff/tif_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_write.c -------------------------------------------------------------------------------- /v3p/tiff/tif_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tif_zip.c -------------------------------------------------------------------------------- /v3p/tiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tiff.h -------------------------------------------------------------------------------- /v3p/tiff/tiffcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tiffcomp.h -------------------------------------------------------------------------------- /v3p/tiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tiffio.h -------------------------------------------------------------------------------- /v3p/tiff/tiffio.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tiffio.hxx -------------------------------------------------------------------------------- /v3p/tiff/tiffiop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tiffiop.h -------------------------------------------------------------------------------- /v3p/tiff/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/tiffvers.h -------------------------------------------------------------------------------- /v3p/tiff/uvcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff/uvcode.h -------------------------------------------------------------------------------- /v3p/tiff_install.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/tiff_install.pl -------------------------------------------------------------------------------- /v3p/v3p_tag: -------------------------------------------------------------------------------- 1 | see makefile for explanation 2 | 3 | -------------------------------------------------------------------------------- /v3p/zlib.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib.URL -------------------------------------------------------------------------------- /v3p/zlib/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v3p/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/FAQ -------------------------------------------------------------------------------- /v3p/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/README -------------------------------------------------------------------------------- /v3p/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/adler32.c -------------------------------------------------------------------------------- /v3p/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/compress.c -------------------------------------------------------------------------------- /v3p/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/crc32.c -------------------------------------------------------------------------------- /v3p/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/deflate.c -------------------------------------------------------------------------------- /v3p/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/deflate.h -------------------------------------------------------------------------------- /v3p/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/gzio.c -------------------------------------------------------------------------------- /v3p/zlib/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/infblock.c -------------------------------------------------------------------------------- /v3p/zlib/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/infblock.h -------------------------------------------------------------------------------- /v3p/zlib/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/infcodes.c -------------------------------------------------------------------------------- /v3p/zlib/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/infcodes.h -------------------------------------------------------------------------------- /v3p/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/inffast.c -------------------------------------------------------------------------------- /v3p/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/inffast.h -------------------------------------------------------------------------------- /v3p/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/inffixed.h -------------------------------------------------------------------------------- /v3p/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/inflate.c -------------------------------------------------------------------------------- /v3p/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/inftrees.c -------------------------------------------------------------------------------- /v3p/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/inftrees.h -------------------------------------------------------------------------------- /v3p/zlib/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/infutil.c -------------------------------------------------------------------------------- /v3p/zlib/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/infutil.h -------------------------------------------------------------------------------- /v3p/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/trees.c -------------------------------------------------------------------------------- /v3p/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/trees.h -------------------------------------------------------------------------------- /v3p/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/uncompr.c -------------------------------------------------------------------------------- /v3p/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/zconf.h -------------------------------------------------------------------------------- /v3p/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/zlib.3 -------------------------------------------------------------------------------- /v3p/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/zlib.h -------------------------------------------------------------------------------- /v3p/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/zutil.c -------------------------------------------------------------------------------- /v3p/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/v3p/zlib/zutil.h -------------------------------------------------------------------------------- /vcl/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/CMakeLists.txt -------------------------------------------------------------------------------- /vcl/ERRORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/ERRORS.txt -------------------------------------------------------------------------------- /vcl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/README -------------------------------------------------------------------------------- /vcl/config.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/config.README -------------------------------------------------------------------------------- /vcl/headers.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/headers.iso -------------------------------------------------------------------------------- /vcl/tests/.NoDartCoverage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcl/tests/test_cstdio.txt: -------------------------------------------------------------------------------- 1 | this is the input file 2 | for test_vcl_cstdio. 3 | -------------------------------------------------------------------------------- /vcl/vcl_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_algorithm.h -------------------------------------------------------------------------------- /vcl/vcl_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_bitset.h -------------------------------------------------------------------------------- /vcl/vcl_cassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cassert.h -------------------------------------------------------------------------------- /vcl/vcl_cctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cctype.h -------------------------------------------------------------------------------- /vcl/vcl_cerrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cerrno.h -------------------------------------------------------------------------------- /vcl/vcl_cfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cfloat.h -------------------------------------------------------------------------------- /vcl/vcl_ciso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_ciso646.h -------------------------------------------------------------------------------- /vcl/vcl_climits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_climits.h -------------------------------------------------------------------------------- /vcl/vcl_clocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_clocale.h -------------------------------------------------------------------------------- /vcl/vcl_cmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cmath.h -------------------------------------------------------------------------------- /vcl/vcl_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_compiler.h -------------------------------------------------------------------------------- /vcl/vcl_complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_complex.h -------------------------------------------------------------------------------- /vcl/vcl_complex.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_complex.hxx -------------------------------------------------------------------------------- /vcl/vcl_csetjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_csetjmp.h -------------------------------------------------------------------------------- /vcl/vcl_csignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_csignal.h -------------------------------------------------------------------------------- /vcl/vcl_cstdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cstdarg.h -------------------------------------------------------------------------------- /vcl/vcl_cstddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cstddef.h -------------------------------------------------------------------------------- /vcl/vcl_cstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cstdio.h -------------------------------------------------------------------------------- /vcl/vcl_cstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cstdlib.h -------------------------------------------------------------------------------- /vcl/vcl_cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cstring.h -------------------------------------------------------------------------------- /vcl/vcl_ctime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_ctime.h -------------------------------------------------------------------------------- /vcl/vcl_cwchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cwchar.h -------------------------------------------------------------------------------- /vcl/vcl_cwctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_cwctype.h -------------------------------------------------------------------------------- /vcl/vcl_deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_deprecated.h -------------------------------------------------------------------------------- /vcl/vcl_deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_deque.h -------------------------------------------------------------------------------- /vcl/vcl_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_exception.h -------------------------------------------------------------------------------- /vcl/vcl_fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_fstream.h -------------------------------------------------------------------------------- /vcl/vcl_functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_functional.h -------------------------------------------------------------------------------- /vcl/vcl_iomanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_iomanip.h -------------------------------------------------------------------------------- /vcl/vcl_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_ios.h -------------------------------------------------------------------------------- /vcl/vcl_iosfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_iosfwd.h -------------------------------------------------------------------------------- /vcl/vcl_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_iostream.h -------------------------------------------------------------------------------- /vcl/vcl_istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_istream.h -------------------------------------------------------------------------------- /vcl/vcl_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_iterator.h -------------------------------------------------------------------------------- /vcl/vcl_iterator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_iterator.hxx -------------------------------------------------------------------------------- /vcl/vcl_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_limits.h -------------------------------------------------------------------------------- /vcl/vcl_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_list.h -------------------------------------------------------------------------------- /vcl/vcl_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_locale.h -------------------------------------------------------------------------------- /vcl/vcl_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_map.h -------------------------------------------------------------------------------- /vcl/vcl_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_memory.h -------------------------------------------------------------------------------- /vcl/vcl_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_new.h -------------------------------------------------------------------------------- /vcl/vcl_numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_numeric.h -------------------------------------------------------------------------------- /vcl/vcl_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_ostream.h -------------------------------------------------------------------------------- /vcl/vcl_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_queue.h -------------------------------------------------------------------------------- /vcl/vcl_rel_ops.not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_rel_ops.not -------------------------------------------------------------------------------- /vcl/vcl_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_set.h -------------------------------------------------------------------------------- /vcl/vcl_sstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_sstream.h -------------------------------------------------------------------------------- /vcl/vcl_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_stack.h -------------------------------------------------------------------------------- /vcl/vcl_stdexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_stdexcept.h -------------------------------------------------------------------------------- /vcl/vcl_stlfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_stlfwd.h -------------------------------------------------------------------------------- /vcl/vcl_streambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_streambuf.h -------------------------------------------------------------------------------- /vcl/vcl_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_string.h -------------------------------------------------------------------------------- /vcl/vcl_sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_sys/time.h -------------------------------------------------------------------------------- /vcl/vcl_sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_sys/types.h -------------------------------------------------------------------------------- /vcl/vcl_typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_typeinfo.h -------------------------------------------------------------------------------- /vcl/vcl_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_utility.h -------------------------------------------------------------------------------- /vcl/vcl_valarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_valarray.h -------------------------------------------------------------------------------- /vcl/vcl_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/vcl/vcl_vector.h -------------------------------------------------------------------------------- /youtube_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliosmanulusoy/Probabilistic-Volumetric-3D-Reconstruction/HEAD/youtube_img.png --------------------------------------------------------------------------------