├── README.txt ├── bin ├── ANN.dll ├── Icons │ ├── 125.png │ ├── Parameters-512.png │ ├── morfit.png │ ├── open.png │ └── skel.png ├── Morfit_v1.0.exe ├── Oren-Nayar.frag ├── Oren-Nayar.vert ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5OpenGL.dll ├── Qt5Widgets.dll ├── gecko │ ├── gecko.ply │ └── gecko.ply.skel ├── icudt51.dll ├── icuin51.dll ├── icuuc51.dll ├── nlopt.dll ├── opennurbs.dll └── qtplugins │ └── platforms │ ├── qminimal.dll │ ├── qoffscreen.dll │ └── qwindows.dll ├── data ├── dancer │ ├── 2dancers.ply │ └── 2dancers.ply.skel ├── dinosaur │ ├── dinosaur.ply │ └── dinosaur.ply.skel ├── elephant │ ├── elephant.ply │ └── elephant.ply.skel ├── gecko │ ├── gecko.ply │ └── gecko.ply.skel ├── plane │ ├── plane.ply │ └── plane.ply.skel ├── plant │ ├── plant.ply │ └── plant.ply.skel └── stump │ ├── stump.ply │ └── stump.ply.skel ├── morfit_doc.pdf └── src ├── CMesh.h ├── Console.cpp ├── Console.h ├── DataMgr.cpp ├── DataMgr.h ├── GLArea.cpp ├── GLArea.h ├── GLDrawer.cpp ├── GLDrawer.h ├── GeneratedFiles ├── Debug │ ├── moc_GLArea.cpp │ ├── moc_dlg_config_para.cpp │ ├── moc_dlg_normal_para.cpp │ ├── moc_dlg_skeleton_para.cpp │ ├── moc_dlg_wlop_para.cpp │ ├── moc_mainwindow.cpp │ └── moc_std_para_dlg.cpp ├── Release │ ├── moc_GLArea.cpp │ ├── moc_dlg_config_para.cpp │ ├── moc_mainwindow.cpp │ └── moc_std_para_dlg.cpp ├── qrc_mainwindow.cpp ├── ui_mainwindow.h └── ui_para_config.h ├── GlobalFunction.cpp ├── GlobalFunction.h ├── Icons ├── 125.png ├── Parameters-512.png ├── morfit.png ├── open.png └── skel.png ├── Operator_zc.h ├── Oren-Nayar.vert ├── PaintGL.cpp ├── Parameter.cpp ├── Parameter.h ├── ParameterMgr.cpp ├── ParameterMgr.h ├── Types.h ├── UI ├── dlg_config_para.cpp ├── dlg_config_para.h ├── std_para_dlg.cpp └── std_para_dlg.h ├── appstate.cpp ├── appstate.h ├── base.cc ├── bspline.h ├── completionSolver_v2.cpp ├── completionSolver_v2.h ├── completionSolver_v2_DisplayandDebug.cpp ├── completionSolver_v2_EnergyFunc.cpp ├── completionSolver_v2_featureStroke.cpp ├── completionSolver_v2_string.cpp ├── cubicInterpolation.h ├── curve_interpolation.cpp ├── declarations.h ├── flann_KNN.cpp ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.qrc ├── mainwindow.ui ├── morfit.rc ├── morfit_v1.0.sln ├── morfit_v1.0.vcxproj ├── morfit_v1.0.vcxproj.filters ├── mouse.cpp ├── nlopt.hpp ├── nrigidtransform.h ├── on_nurbs ├── closing_boundary.cpp ├── fitting_curve_2d.cpp ├── fitting_curve_2d_apdm.cpp ├── fitting_curve_2d_asdm.cpp ├── fitting_curve_2d_atdm.cpp ├── fitting_curve_2d_pdm.cpp ├── fitting_curve_2d_sdm.cpp ├── fitting_curve_2d_tdm.cpp ├── fitting_curve_pdm.cpp ├── fitting_cylinder_pdm.cpp ├── fitting_sphere_pdm.cpp ├── fitting_surface_im.cpp ├── fitting_surface_pdm.cpp ├── fitting_surface_tdm.cpp ├── global_optimization_pdm.cpp ├── global_optimization_tdm.cpp ├── nurbs_solve_eigen.cpp ├── nurbs_solve_umfpack.cpp ├── nurbs_tools.cpp ├── on_nurbs.cmake ├── sequential_fitter.cpp ├── sparse_mat.cpp └── triangulation.cpp ├── para.cpp ├── para.h ├── para_config.ui ├── plylib.cpp ├── plylib.h ├── plystuff.h ├── reconstructionUtility.h ├── reconstructionUtility1.cpp ├── reconstructionUtility2.cpp ├── reconstructorPara.cpp ├── reconstructorPara.h ├── resource.h ├── runCommand.cpp ├── shader.cpp ├── skel_datastructureUtility.cpp ├── skel_getprofiles.cpp ├── skel_norm.cpp ├── skeleton_kx.cpp ├── skeleton_mul.h ├── skeleton_whole.cpp ├── skelpath.h ├── skelpath_blend.cpp ├── skelpath_datastructureUtility.cpp ├── skelpath_getprofiles.cpp ├── skelpath_mesh.cpp ├── skelpath_nurbs.cpp ├── skelpath_profEdit.cpp ├── skelpath_reconstruct.cpp ├── skelpath_segment.cpp ├── skelpath_tips.cpp ├── skelpath_updateResult.cpp ├── smtf.h ├── sweep_correspondence.cpp ├── sweep_feature.cpp ├── sweep_loadsave.cpp ├── sweep_recenter.cpp ├── sweep_updateResult.cpp ├── sweeper.cpp ├── sweeper.h ├── trackball.cpp ├── trackball.h ├── trackmode.cpp ├── trackmode.h ├── triangleList.cpp └── triangleList.h /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/README.txt -------------------------------------------------------------------------------- /bin/ANN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/ANN.dll -------------------------------------------------------------------------------- /bin/Icons/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Icons/125.png -------------------------------------------------------------------------------- /bin/Icons/Parameters-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Icons/Parameters-512.png -------------------------------------------------------------------------------- /bin/Icons/morfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Icons/morfit.png -------------------------------------------------------------------------------- /bin/Icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Icons/open.png -------------------------------------------------------------------------------- /bin/Icons/skel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Icons/skel.png -------------------------------------------------------------------------------- /bin/Morfit_v1.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Morfit_v1.0.exe -------------------------------------------------------------------------------- /bin/Oren-Nayar.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Oren-Nayar.frag -------------------------------------------------------------------------------- /bin/Oren-Nayar.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Oren-Nayar.vert -------------------------------------------------------------------------------- /bin/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Qt5Core.dll -------------------------------------------------------------------------------- /bin/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Qt5Gui.dll -------------------------------------------------------------------------------- /bin/Qt5OpenGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Qt5OpenGL.dll -------------------------------------------------------------------------------- /bin/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/Qt5Widgets.dll -------------------------------------------------------------------------------- /bin/gecko/gecko.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/gecko/gecko.ply -------------------------------------------------------------------------------- /bin/gecko/gecko.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/gecko/gecko.ply.skel -------------------------------------------------------------------------------- /bin/icudt51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/icudt51.dll -------------------------------------------------------------------------------- /bin/icuin51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/icuin51.dll -------------------------------------------------------------------------------- /bin/icuuc51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/icuuc51.dll -------------------------------------------------------------------------------- /bin/nlopt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/nlopt.dll -------------------------------------------------------------------------------- /bin/opennurbs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/opennurbs.dll -------------------------------------------------------------------------------- /bin/qtplugins/platforms/qminimal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/qtplugins/platforms/qminimal.dll -------------------------------------------------------------------------------- /bin/qtplugins/platforms/qoffscreen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/qtplugins/platforms/qoffscreen.dll -------------------------------------------------------------------------------- /bin/qtplugins/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/bin/qtplugins/platforms/qwindows.dll -------------------------------------------------------------------------------- /data/dancer/2dancers.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/dancer/2dancers.ply -------------------------------------------------------------------------------- /data/dancer/2dancers.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/dancer/2dancers.ply.skel -------------------------------------------------------------------------------- /data/dinosaur/dinosaur.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/dinosaur/dinosaur.ply -------------------------------------------------------------------------------- /data/dinosaur/dinosaur.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/dinosaur/dinosaur.ply.skel -------------------------------------------------------------------------------- /data/elephant/elephant.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/elephant/elephant.ply -------------------------------------------------------------------------------- /data/elephant/elephant.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/elephant/elephant.ply.skel -------------------------------------------------------------------------------- /data/gecko/gecko.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/gecko/gecko.ply -------------------------------------------------------------------------------- /data/gecko/gecko.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/gecko/gecko.ply.skel -------------------------------------------------------------------------------- /data/plane/plane.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/plane/plane.ply -------------------------------------------------------------------------------- /data/plane/plane.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/plane/plane.ply.skel -------------------------------------------------------------------------------- /data/plant/plant.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/plant/plant.ply -------------------------------------------------------------------------------- /data/plant/plant.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/plant/plant.ply.skel -------------------------------------------------------------------------------- /data/stump/stump.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/stump/stump.ply -------------------------------------------------------------------------------- /data/stump/stump.ply.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/data/stump/stump.ply.skel -------------------------------------------------------------------------------- /morfit_doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/morfit_doc.pdf -------------------------------------------------------------------------------- /src/CMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/CMesh.h -------------------------------------------------------------------------------- /src/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Console.cpp -------------------------------------------------------------------------------- /src/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Console.h -------------------------------------------------------------------------------- /src/DataMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/DataMgr.cpp -------------------------------------------------------------------------------- /src/DataMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/DataMgr.h -------------------------------------------------------------------------------- /src/GLArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GLArea.cpp -------------------------------------------------------------------------------- /src/GLArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GLArea.h -------------------------------------------------------------------------------- /src/GLDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GLDrawer.cpp -------------------------------------------------------------------------------- /src/GLDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GLDrawer.h -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_GLArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Debug/moc_GLArea.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_dlg_config_para.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Debug/moc_dlg_config_para.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_dlg_normal_para.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_dlg_skeleton_para.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_dlg_wlop_para.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Debug/moc_mainwindow.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_std_para_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Debug/moc_std_para_dlg.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_GLArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Release/moc_GLArea.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_dlg_config_para.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Release/moc_dlg_config_para.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Release/moc_mainwindow.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_std_para_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/Release/moc_std_para_dlg.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/qrc_mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/qrc_mainwindow.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/ui_mainwindow.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_para_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GeneratedFiles/ui_para_config.h -------------------------------------------------------------------------------- /src/GlobalFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GlobalFunction.cpp -------------------------------------------------------------------------------- /src/GlobalFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/GlobalFunction.h -------------------------------------------------------------------------------- /src/Icons/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Icons/125.png -------------------------------------------------------------------------------- /src/Icons/Parameters-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Icons/Parameters-512.png -------------------------------------------------------------------------------- /src/Icons/morfit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Icons/morfit.png -------------------------------------------------------------------------------- /src/Icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Icons/open.png -------------------------------------------------------------------------------- /src/Icons/skel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Icons/skel.png -------------------------------------------------------------------------------- /src/Operator_zc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Operator_zc.h -------------------------------------------------------------------------------- /src/Oren-Nayar.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Oren-Nayar.vert -------------------------------------------------------------------------------- /src/PaintGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/PaintGL.cpp -------------------------------------------------------------------------------- /src/Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Parameter.cpp -------------------------------------------------------------------------------- /src/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Parameter.h -------------------------------------------------------------------------------- /src/ParameterMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/ParameterMgr.cpp -------------------------------------------------------------------------------- /src/ParameterMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/ParameterMgr.h -------------------------------------------------------------------------------- /src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/Types.h -------------------------------------------------------------------------------- /src/UI/dlg_config_para.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/UI/dlg_config_para.cpp -------------------------------------------------------------------------------- /src/UI/dlg_config_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/UI/dlg_config_para.h -------------------------------------------------------------------------------- /src/UI/std_para_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/UI/std_para_dlg.cpp -------------------------------------------------------------------------------- /src/UI/std_para_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/UI/std_para_dlg.h -------------------------------------------------------------------------------- /src/appstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/appstate.cpp -------------------------------------------------------------------------------- /src/appstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/appstate.h -------------------------------------------------------------------------------- /src/base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/base.cc -------------------------------------------------------------------------------- /src/bspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/bspline.h -------------------------------------------------------------------------------- /src/completionSolver_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/completionSolver_v2.cpp -------------------------------------------------------------------------------- /src/completionSolver_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/completionSolver_v2.h -------------------------------------------------------------------------------- /src/completionSolver_v2_DisplayandDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/completionSolver_v2_DisplayandDebug.cpp -------------------------------------------------------------------------------- /src/completionSolver_v2_EnergyFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/completionSolver_v2_EnergyFunc.cpp -------------------------------------------------------------------------------- /src/completionSolver_v2_featureStroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/completionSolver_v2_featureStroke.cpp -------------------------------------------------------------------------------- /src/completionSolver_v2_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/completionSolver_v2_string.cpp -------------------------------------------------------------------------------- /src/cubicInterpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/cubicInterpolation.h -------------------------------------------------------------------------------- /src/curve_interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/curve_interpolation.cpp -------------------------------------------------------------------------------- /src/declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/declarations.h -------------------------------------------------------------------------------- /src/flann_KNN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/flann_KNN.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/mainwindow.qrc -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/morfit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/morfit.rc -------------------------------------------------------------------------------- /src/morfit_v1.0.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/morfit_v1.0.sln -------------------------------------------------------------------------------- /src/morfit_v1.0.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/morfit_v1.0.vcxproj -------------------------------------------------------------------------------- /src/morfit_v1.0.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/morfit_v1.0.vcxproj.filters -------------------------------------------------------------------------------- /src/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/mouse.cpp -------------------------------------------------------------------------------- /src/nlopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/nlopt.hpp -------------------------------------------------------------------------------- /src/nrigidtransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/nrigidtransform.h -------------------------------------------------------------------------------- /src/on_nurbs/closing_boundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/closing_boundary.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d_apdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d_apdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d_asdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d_asdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d_atdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d_atdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d_pdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d_pdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d_sdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d_sdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_2d_tdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_2d_tdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_curve_pdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_curve_pdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_cylinder_pdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_cylinder_pdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_sphere_pdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_sphere_pdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_surface_im.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_surface_im.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_surface_pdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_surface_pdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/fitting_surface_tdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/fitting_surface_tdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/global_optimization_pdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/global_optimization_pdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/global_optimization_tdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/global_optimization_tdm.cpp -------------------------------------------------------------------------------- /src/on_nurbs/nurbs_solve_eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/nurbs_solve_eigen.cpp -------------------------------------------------------------------------------- /src/on_nurbs/nurbs_solve_umfpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/nurbs_solve_umfpack.cpp -------------------------------------------------------------------------------- /src/on_nurbs/nurbs_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/nurbs_tools.cpp -------------------------------------------------------------------------------- /src/on_nurbs/on_nurbs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/on_nurbs.cmake -------------------------------------------------------------------------------- /src/on_nurbs/sequential_fitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/sequential_fitter.cpp -------------------------------------------------------------------------------- /src/on_nurbs/sparse_mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/sparse_mat.cpp -------------------------------------------------------------------------------- /src/on_nurbs/triangulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/on_nurbs/triangulation.cpp -------------------------------------------------------------------------------- /src/para.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/para.h -------------------------------------------------------------------------------- /src/para_config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/para_config.ui -------------------------------------------------------------------------------- /src/plylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/plylib.cpp -------------------------------------------------------------------------------- /src/plylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/plylib.h -------------------------------------------------------------------------------- /src/plystuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/plystuff.h -------------------------------------------------------------------------------- /src/reconstructionUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/reconstructionUtility.h -------------------------------------------------------------------------------- /src/reconstructionUtility1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/reconstructionUtility1.cpp -------------------------------------------------------------------------------- /src/reconstructionUtility2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/reconstructionUtility2.cpp -------------------------------------------------------------------------------- /src/reconstructorPara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/reconstructorPara.cpp -------------------------------------------------------------------------------- /src/reconstructorPara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/reconstructorPara.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/runCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/runCommand.cpp -------------------------------------------------------------------------------- /src/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/shader.cpp -------------------------------------------------------------------------------- /src/skel_datastructureUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skel_datastructureUtility.cpp -------------------------------------------------------------------------------- /src/skel_getprofiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skel_getprofiles.cpp -------------------------------------------------------------------------------- /src/skel_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skel_norm.cpp -------------------------------------------------------------------------------- /src/skeleton_kx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skeleton_kx.cpp -------------------------------------------------------------------------------- /src/skeleton_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skeleton_mul.h -------------------------------------------------------------------------------- /src/skeleton_whole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skeleton_whole.cpp -------------------------------------------------------------------------------- /src/skelpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath.h -------------------------------------------------------------------------------- /src/skelpath_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_blend.cpp -------------------------------------------------------------------------------- /src/skelpath_datastructureUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_datastructureUtility.cpp -------------------------------------------------------------------------------- /src/skelpath_getprofiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_getprofiles.cpp -------------------------------------------------------------------------------- /src/skelpath_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_mesh.cpp -------------------------------------------------------------------------------- /src/skelpath_nurbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_nurbs.cpp -------------------------------------------------------------------------------- /src/skelpath_profEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_profEdit.cpp -------------------------------------------------------------------------------- /src/skelpath_reconstruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_reconstruct.cpp -------------------------------------------------------------------------------- /src/skelpath_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_segment.cpp -------------------------------------------------------------------------------- /src/skelpath_tips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_tips.cpp -------------------------------------------------------------------------------- /src/skelpath_updateResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/skelpath_updateResult.cpp -------------------------------------------------------------------------------- /src/smtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/smtf.h -------------------------------------------------------------------------------- /src/sweep_correspondence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweep_correspondence.cpp -------------------------------------------------------------------------------- /src/sweep_feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweep_feature.cpp -------------------------------------------------------------------------------- /src/sweep_loadsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweep_loadsave.cpp -------------------------------------------------------------------------------- /src/sweep_recenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweep_recenter.cpp -------------------------------------------------------------------------------- /src/sweep_updateResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweep_updateResult.cpp -------------------------------------------------------------------------------- /src/sweeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweeper.cpp -------------------------------------------------------------------------------- /src/sweeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/sweeper.h -------------------------------------------------------------------------------- /src/trackball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/trackball.cpp -------------------------------------------------------------------------------- /src/trackball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/trackball.h -------------------------------------------------------------------------------- /src/trackmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/trackmode.cpp -------------------------------------------------------------------------------- /src/trackmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/trackmode.h -------------------------------------------------------------------------------- /src/triangleList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/triangleList.cpp -------------------------------------------------------------------------------- /src/triangleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangxue/Morfit/HEAD/src/triangleList.h --------------------------------------------------------------------------------