├── 3d pose App ├── .dockerignore ├── .gitattributes ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── cai.mp4 ├── docker │ ├── Dockerfile │ └── README.md ├── launch │ └── demo_video.launch ├── models │ ├── graph │ │ ├── cmu │ │ │ └── download.sh │ │ └── mobilenet_thin │ │ │ ├── graph.pb │ │ │ ├── graph_freeze.pb │ │ │ └── graph_opt.pb │ ├── numpy │ │ └── download.sh │ └── pretrained │ │ ├── mobilenet_v1_0.50_224_2017_06_14 │ │ └── download.sh │ │ ├── mobilenet_v1_0.75_224_2017_06_14 │ │ └── download.sh │ │ └── mobilenet_v1_1.0_224_2017_06_14 │ │ └── download.sh ├── msg │ ├── BodyPartElm.msg │ ├── Person.msg │ └── Persons.msg ├── package.xml ├── pyqtgraph-develop │ ├── .coveragerc │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── CHANGELOG │ ├── CONTRIBUTING.txt │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.md │ ├── doc │ │ ├── Makefile │ │ ├── extensions │ │ │ └── qt_doc.py │ │ ├── listmissing.py │ │ ├── make.bat │ │ └── source │ │ │ ├── 3dgraphics.rst │ │ │ ├── 3dgraphics │ │ │ ├── glaxisitem.rst │ │ │ ├── glgraphicsitem.rst │ │ │ ├── glgriditem.rst │ │ │ ├── glimageitem.rst │ │ │ ├── gllineplotitem.rst │ │ │ ├── glmeshitem.rst │ │ │ ├── glscatterplotitem.rst │ │ │ ├── glsurfaceplotitem.rst │ │ │ ├── glviewwidget.rst │ │ │ ├── glvolumeitem.rst │ │ │ ├── index.rst │ │ │ └── meshdata.rst │ │ │ ├── apireference.rst │ │ │ ├── colormap.rst │ │ │ ├── conf.py │ │ │ ├── config_options.rst │ │ │ ├── exporting.rst │ │ │ ├── flowchart │ │ │ ├── flowchart.rst │ │ │ ├── index.rst │ │ │ ├── node.rst │ │ │ └── terminal.rst │ │ │ ├── functions.rst │ │ │ ├── graphicsItems │ │ │ ├── arrowitem.rst │ │ │ ├── axisitem.rst │ │ │ ├── buttonitem.rst │ │ │ ├── curvearrow.rst │ │ │ ├── curvepoint.rst │ │ │ ├── errorbaritem.rst │ │ │ ├── fillbetweenitem.rst │ │ │ ├── gradienteditoritem.rst │ │ │ ├── gradientlegend.rst │ │ │ ├── graphicsitem.rst │ │ │ ├── graphicslayout.rst │ │ │ ├── graphicsobject.rst │ │ │ ├── graphicswidget.rst │ │ │ ├── graphicswidgetanchor.rst │ │ │ ├── graphitem.rst │ │ │ ├── griditem.rst │ │ │ ├── histogramlutitem.rst │ │ │ ├── imageitem.rst │ │ │ ├── index.rst │ │ │ ├── infiniteline.rst │ │ │ ├── isocurveitem.rst │ │ │ ├── labelitem.rst │ │ │ ├── legenditem.rst │ │ │ ├── linearregionitem.rst │ │ │ ├── make │ │ │ ├── plotcurveitem.rst │ │ │ ├── plotdataitem.rst │ │ │ ├── plotitem.rst │ │ │ ├── roi.rst │ │ │ ├── scalebar.rst │ │ │ ├── scatterplotitem.rst │ │ │ ├── textitem.rst │ │ │ ├── uigraphicsitem.rst │ │ │ ├── viewbox.rst │ │ │ └── vtickgroup.rst │ │ │ ├── graphicsscene │ │ │ ├── graphicsscene.rst │ │ │ ├── hoverevent.rst │ │ │ ├── index.rst │ │ │ ├── mouseclickevent.rst │ │ │ └── mousedragevent.rst │ │ │ ├── graphicswindow.rst │ │ │ ├── how_to_use.rst │ │ │ ├── images.rst │ │ │ ├── images │ │ │ ├── plottingClasses.png │ │ │ └── plottingClasses.svg │ │ │ ├── index.rst │ │ │ ├── installation.rst │ │ │ ├── internals.rst │ │ │ ├── introduction.rst │ │ │ ├── mouse_interaction.rst │ │ │ ├── parametertree │ │ │ ├── apiref.rst │ │ │ ├── index.rst │ │ │ ├── parameter.rst │ │ │ ├── parameteritem.rst │ │ │ ├── parametertree.rst │ │ │ └── parametertypes.rst │ │ │ ├── plotting.rst │ │ │ ├── prototyping.rst │ │ │ ├── qtcrashcourse.rst │ │ │ ├── region_of_interest.rst │ │ │ ├── style.rst │ │ │ └── widgets │ │ │ ├── busycursor.rst │ │ │ ├── checktable.rst │ │ │ ├── colorbutton.rst │ │ │ ├── colormapwidget.rst │ │ │ ├── combobox.rst │ │ │ ├── consolewidget.rst │ │ │ ├── datatreewidget.rst │ │ │ ├── dockarea.rst │ │ │ ├── feedbackbutton.rst │ │ │ ├── filedialog.rst │ │ │ ├── gradientwidget.rst │ │ │ ├── graphicslayoutwidget.rst │ │ │ ├── graphicsview.rst │ │ │ ├── histogramlutwidget.rst │ │ │ ├── imageview.rst │ │ │ ├── index.rst │ │ │ ├── joystickbutton.rst │ │ │ ├── layoutwidget.rst │ │ │ ├── make │ │ │ ├── matplotlibwidget.rst │ │ │ ├── multiplotwidget.rst │ │ │ ├── parametertree.rst │ │ │ ├── pathbutton.rst │ │ │ ├── plotwidget.rst │ │ │ ├── progressdialog.rst │ │ │ ├── remotegraphicsview.rst │ │ │ ├── scatterplotwidget.rst │ │ │ ├── spinbox.rst │ │ │ ├── tablewidget.rst │ │ │ ├── treewidget.rst │ │ │ ├── valuelabel.rst │ │ │ └── verticallabel.rst │ ├── examples │ │ ├── Arrow.py │ │ ├── BarGraphItem.py │ │ ├── CLIexample.py │ │ ├── ColorButton.py │ │ ├── ConsoleWidget.py │ │ ├── CustomGraphItem.py │ │ ├── DataSlicing.py │ │ ├── DataTreeWidget.py │ │ ├── Draw.py │ │ ├── ErrorBarItem.py │ │ ├── FillBetweenItem.py │ │ ├── Flowchart.py │ │ ├── FlowchartCustomNode.py │ │ ├── GLBarGraphItem.py │ │ ├── GLImageItem.py │ │ ├── GLIsosurface.py │ │ ├── GLLinePlotItem.py │ │ ├── GLMeshItem.py │ │ ├── GLScatterPlotItem.py │ │ ├── GLSurfacePlot.py │ │ ├── GLViewWidget.py │ │ ├── GLVolumeItem.py │ │ ├── GLshaders.py │ │ ├── GradientEditor.py │ │ ├── GradientWidget.py │ │ ├── GraphItem.py │ │ ├── GraphicsLayout.py │ │ ├── GraphicsScene.py │ │ ├── HistogramLUT.py │ │ ├── ImageItem.py │ │ ├── ImageView.py │ │ ├── InfiniteLine.py │ │ ├── JoystickButton.py │ │ ├── Legend.py │ │ ├── LogPlotTest.py │ │ ├── MouseSelection.py │ │ ├── MultiPlotSpeedTest.py │ │ ├── MultiPlotWidget.py │ │ ├── MultiplePlotAxes.py │ │ ├── PanningPlot.py │ │ ├── PlotAutoRange.py │ │ ├── PlotSpeedTest.py │ │ ├── PlotWidget.py │ │ ├── Plotting.py │ │ ├── ProgressDialog.py │ │ ├── ROIExamples.py │ │ ├── ROItypes.py │ │ ├── RemoteGraphicsView.py │ │ ├── RemoteSpeedTest.py │ │ ├── ScaleBar.py │ │ ├── ScatterPlot.py │ │ ├── ScatterPlotSpeedTest.py │ │ ├── ScatterPlotSpeedTestTemplate.ui │ │ ├── ScatterPlotSpeedTestTemplate_pyqt.py │ │ ├── ScatterPlotSpeedTestTemplate_pyside.py │ │ ├── ScatterPlotWidget.py │ │ ├── SimplePlot.py │ │ ├── SpinBox.py │ │ ├── Symbols.py │ │ ├── TableWidget.py │ │ ├── TreeWidget.py │ │ ├── VideoSpeedTest.py │ │ ├── VideoTemplate.ui │ │ ├── VideoTemplate_pyqt.py │ │ ├── VideoTemplate_pyqt5.py │ │ ├── VideoTemplate_pyside.py │ │ ├── ViewBox.py │ │ ├── ViewBoxFeatures.py │ │ ├── ViewLimits.py │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── beeswarm.py │ │ ├── contextMenu.py │ │ ├── crosshair.py │ │ ├── customGraphicsItem.py │ │ ├── customPlot.py │ │ ├── cx_freeze │ │ │ ├── plotTest.py │ │ │ └── setup.py │ │ ├── designerExample.py │ │ ├── designerExample.ui │ │ ├── dockarea.py │ │ ├── exampleLoaderTemplate.ui │ │ ├── exampleLoaderTemplate_pyqt.py │ │ ├── exampleLoaderTemplate_pyqt5.py │ │ ├── exampleLoaderTemplate_pyside.py │ │ ├── fractal.py │ │ ├── hdf5.py │ │ ├── histogram.py │ │ ├── imageAnalysis.py │ │ ├── infiniteline_performance.py │ │ ├── initExample.py │ │ ├── isocurve.py │ │ ├── linkedViews.py │ │ ├── logAxis.py │ │ ├── multiplePlotSpeedTest.py │ │ ├── multiprocess.py │ │ ├── optics │ │ │ ├── __init__.py │ │ │ ├── pyoptic.py │ │ │ └── schott_glasses.csv.gz │ │ ├── optics_demos.py │ │ ├── parallelize.py │ │ ├── parametertree.py │ │ ├── py2exe │ │ │ ├── plotTest.py │ │ │ └── setup.py │ │ ├── relativity │ │ │ ├── __init__.py │ │ │ ├── presets │ │ │ │ ├── Grid Expansion.cfg │ │ │ │ ├── Twin Paradox (grid).cfg │ │ │ │ └── Twin Paradox.cfg │ │ │ └── relativity.py │ │ ├── relativity_demo.py │ │ ├── scrollingPlots.py │ │ ├── template.py │ │ ├── test_examples.py │ │ ├── text.py │ │ ├── utils.py │ │ ├── verlet_chain │ │ │ ├── __init__.py │ │ │ ├── chain.py │ │ │ ├── make │ │ │ ├── relax.c │ │ │ └── relax.py │ │ └── verlet_chain_demo.py │ ├── pyqtgraph │ │ ├── GraphicsScene │ │ │ ├── GraphicsScene.py │ │ │ ├── __init__.py │ │ │ ├── exportDialog.py │ │ │ ├── exportDialogTemplate.ui │ │ │ ├── exportDialogTemplate_pyqt.py │ │ │ ├── exportDialogTemplate_pyqt5.py │ │ │ ├── exportDialogTemplate_pyside.py │ │ │ └── mouseEvents.py │ │ ├── PlotData.py │ │ ├── Point.py │ │ ├── Qt.py │ │ ├── SRTTransform.py │ │ ├── SRTTransform3D.py │ │ ├── SignalProxy.py │ │ ├── ThreadsafeTimer.py │ │ ├── Transform3D.py │ │ ├── Vector.py │ │ ├── WidgetGroup.py │ │ ├── __init__.py │ │ ├── canvas │ │ │ ├── Canvas.py │ │ │ ├── CanvasItem.py │ │ │ ├── CanvasManager.py │ │ │ ├── CanvasTemplate.ui │ │ │ ├── CanvasTemplate_pyqt.py │ │ │ ├── CanvasTemplate_pyqt5.py │ │ │ ├── CanvasTemplate_pyside.py │ │ │ ├── TransformGuiTemplate.ui │ │ │ ├── TransformGuiTemplate_pyqt.py │ │ │ ├── TransformGuiTemplate_pyqt5.py │ │ │ ├── TransformGuiTemplate_pyside.py │ │ │ └── __init__.py │ │ ├── colormap.py │ │ ├── configfile.py │ │ ├── console │ │ │ ├── CmdInput.py │ │ │ ├── Console.py │ │ │ ├── __init__.py │ │ │ ├── template.ui │ │ │ ├── template_pyqt.py │ │ │ ├── template_pyqt5.py │ │ │ └── template_pyside.py │ │ ├── debug.py │ │ ├── dockarea │ │ │ ├── Container.py │ │ │ ├── Dock.py │ │ │ ├── DockArea.py │ │ │ ├── DockDrop.py │ │ │ ├── __init__.py │ │ │ └── tests │ │ │ │ ├── test_dock.py │ │ │ │ └── test_dockarea.py │ │ ├── exceptionHandling.py │ │ ├── exporters │ │ │ ├── CSVExporter.py │ │ │ ├── Exporter.py │ │ │ ├── HDF5Exporter.py │ │ │ ├── ImageExporter.py │ │ │ ├── Matplotlib.py │ │ │ ├── PrintExporter.py │ │ │ ├── SVGExporter.py │ │ │ ├── __init__.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── test_csv.py │ │ │ │ └── test_svg.py │ │ ├── flowchart │ │ │ ├── Flowchart.py │ │ │ ├── FlowchartCtrlTemplate.ui │ │ │ ├── FlowchartCtrlTemplate_pyqt.py │ │ │ ├── FlowchartCtrlTemplate_pyqt5.py │ │ │ ├── FlowchartCtrlTemplate_pyside.py │ │ │ ├── FlowchartGraphicsView.py │ │ │ ├── FlowchartTemplate.ui │ │ │ ├── FlowchartTemplate_pyqt.py │ │ │ ├── FlowchartTemplate_pyqt5.py │ │ │ ├── FlowchartTemplate_pyside.py │ │ │ ├── Node.py │ │ │ ├── NodeLibrary.py │ │ │ ├── Terminal.py │ │ │ ├── __init__.py │ │ │ └── library │ │ │ │ ├── Data.py │ │ │ │ ├── Display.py │ │ │ │ ├── Filters.py │ │ │ │ ├── Operators.py │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ └── functions.py │ │ ├── frozenSupport.py │ │ ├── functions.py │ │ ├── graphicsItems │ │ │ ├── ArrowItem.py │ │ │ ├── AxisItem.py │ │ │ ├── BarGraphItem.py │ │ │ ├── ButtonItem.py │ │ │ ├── CurvePoint.py │ │ │ ├── ErrorBarItem.py │ │ │ ├── FillBetweenItem.py │ │ │ ├── GradientEditorItem.py │ │ │ ├── GradientLegend.py │ │ │ ├── GraphItem.py │ │ │ ├── GraphicsItem.py │ │ │ ├── GraphicsLayout.py │ │ │ ├── GraphicsObject.py │ │ │ ├── GraphicsWidget.py │ │ │ ├── GraphicsWidgetAnchor.py │ │ │ ├── GridItem.py │ │ │ ├── HistogramLUTItem.py │ │ │ ├── ImageItem.py │ │ │ ├── InfiniteLine.py │ │ │ ├── IsocurveItem.py │ │ │ ├── ItemGroup.py │ │ │ ├── LabelItem.py │ │ │ ├── LegendItem.py │ │ │ ├── LinearRegionItem.py │ │ │ ├── MultiPlotItem.py │ │ │ ├── PlotCurveItem.py │ │ │ ├── PlotDataItem.py │ │ │ ├── PlotItem │ │ │ │ ├── PlotItem.py │ │ │ │ ├── __init__.py │ │ │ │ ├── plotConfigTemplate.ui │ │ │ │ ├── plotConfigTemplate_pyqt.py │ │ │ │ ├── plotConfigTemplate_pyqt5.py │ │ │ │ └── plotConfigTemplate_pyside.py │ │ │ ├── ROI.py │ │ │ ├── ScaleBar.py │ │ │ ├── ScatterPlotItem.py │ │ │ ├── TargetItem.py │ │ │ ├── TextItem.py │ │ │ ├── UIGraphicsItem.py │ │ │ ├── VTickGroup.py │ │ │ ├── ViewBox │ │ │ │ ├── ViewBox.py │ │ │ │ ├── ViewBoxMenu.py │ │ │ │ ├── __init__.py │ │ │ │ ├── axisCtrlTemplate.ui │ │ │ │ ├── axisCtrlTemplate_pyqt.py │ │ │ │ ├── axisCtrlTemplate_pyqt5.py │ │ │ │ ├── axisCtrlTemplate_pyside.py │ │ │ │ └── tests │ │ │ │ │ └── test_ViewBox.py │ │ │ ├── __init__.py │ │ │ └── tests │ │ │ │ ├── test_GraphicsItem.py │ │ │ │ ├── test_ImageItem.py │ │ │ │ ├── test_InfiniteLine.py │ │ │ │ ├── test_PlotCurveItem.py │ │ │ │ ├── test_PlotDataItem.py │ │ │ │ ├── test_ROI.py │ │ │ │ └── test_ScatterPlotItem.py │ │ ├── graphicsWindows.py │ │ ├── imageview │ │ │ ├── ImageView.py │ │ │ ├── ImageViewTemplate.ui │ │ │ ├── ImageViewTemplate_pyqt.py │ │ │ ├── ImageViewTemplate_pyqt5.py │ │ │ ├── ImageViewTemplate_pyside.py │ │ │ ├── __init__.py │ │ │ └── tests │ │ │ │ └── test_imageview.py │ │ ├── metaarray │ │ │ ├── MetaArray.py │ │ │ ├── __init__.py │ │ │ ├── license.txt │ │ │ └── readMeta.m │ │ ├── multiprocess │ │ │ ├── __init__.py │ │ │ ├── bootstrap.py │ │ │ ├── parallelizer.py │ │ │ ├── processes.py │ │ │ └── remoteproxy.py │ │ ├── numpy_fix.py │ │ ├── opengl │ │ │ ├── GLGraphicsItem.py │ │ │ ├── GLViewWidget.py │ │ │ ├── MeshData.py │ │ │ ├── __init__.py │ │ │ ├── glInfo.py │ │ │ ├── items │ │ │ │ ├── GLAxisItem.py │ │ │ │ ├── GLBarGraphItem.py │ │ │ │ ├── GLBoxItem.py │ │ │ │ ├── GLGridItem.py │ │ │ │ ├── GLImageItem.py │ │ │ │ ├── GLLinePlotItem.py │ │ │ │ ├── GLMeshItem.py │ │ │ │ ├── GLScatterPlotItem.py │ │ │ │ ├── GLSurfacePlotItem.py │ │ │ │ ├── GLVolumeItem.py │ │ │ │ └── __init__.py │ │ │ └── shaders.py │ │ ├── ordereddict.py │ │ ├── parametertree │ │ │ ├── Parameter.py │ │ │ ├── ParameterItem.py │ │ │ ├── ParameterSystem.py │ │ │ ├── ParameterTree.py │ │ │ ├── SystemSolver.py │ │ │ ├── __init__.py │ │ │ ├── parameterTypes.py │ │ │ └── tests │ │ │ │ └── test_parametertypes.py │ │ ├── pgcollections.py │ │ ├── pixmaps │ │ │ ├── __init__.py │ │ │ ├── auto.png │ │ │ ├── compile.py │ │ │ ├── ctrl.png │ │ │ ├── default.png │ │ │ ├── icons.svg │ │ │ ├── lock.png │ │ │ ├── pixmapData_2.py │ │ │ └── pixmapData_3.py │ │ ├── ptime.py │ │ ├── python2_3.py │ │ ├── reload.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── image_testing.py │ │ │ ├── test_exit_crash.py │ │ │ ├── test_functions.py │ │ │ ├── test_qt.py │ │ │ ├── test_ref_cycles.py │ │ │ ├── test_srttransform3d.py │ │ │ ├── test_stability.py │ │ │ ├── ui_testing.py │ │ │ └── uictest.ui │ │ ├── units.py │ │ ├── util │ │ │ ├── __init__.py │ │ │ ├── colorama │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── __init__.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ ├── cprint.py │ │ │ ├── garbage_collector.py │ │ │ ├── lru_cache.py │ │ │ ├── mutex.py │ │ │ ├── pil_fix.py │ │ │ └── tests │ │ │ │ └── test_lru_cache.py │ │ └── widgets │ │ │ ├── BusyCursor.py │ │ │ ├── CheckTable.py │ │ │ ├── ColorButton.py │ │ │ ├── ColorMapWidget.py │ │ │ ├── ComboBox.py │ │ │ ├── DataFilterWidget.py │ │ │ ├── DataTreeWidget.py │ │ │ ├── FeedbackButton.py │ │ │ ├── FileDialog.py │ │ │ ├── GradientWidget.py │ │ │ ├── GraphicsLayoutWidget.py │ │ │ ├── GraphicsView.py │ │ │ ├── GroupBox.py │ │ │ ├── HistogramLUTWidget.py │ │ │ ├── JoystickButton.py │ │ │ ├── LayoutWidget.py │ │ │ ├── MatplotlibWidget.py │ │ │ ├── MultiPlotWidget.py │ │ │ ├── PathButton.py │ │ │ ├── PlotWidget.py │ │ │ ├── ProgressDialog.py │ │ │ ├── RawImageWidget.py │ │ │ ├── RemoteGraphicsView.py │ │ │ ├── ScatterPlotWidget.py │ │ │ ├── SpinBox.py │ │ │ ├── TableWidget.py │ │ │ ├── TreeWidget.py │ │ │ ├── ValueLabel.py │ │ │ ├── VerticalLabel.py │ │ │ ├── __init__.py │ │ │ └── tests │ │ │ ├── test_combobox.py │ │ │ ├── test_spinbox.py │ │ │ └── test_tablewidget.py │ ├── setup.py │ ├── test.py │ └── tools │ │ ├── generateChangelog.py │ │ ├── pg-release.py │ │ ├── py2exe.bat │ │ ├── py2exeSetupWindows.py │ │ ├── pyuic5 │ │ ├── rebuildUi.py │ │ ├── release_instructions.md │ │ ├── setupHelpers.py │ │ └── shell.py ├── requirements.txt ├── scripts │ ├── broadcaster_ros.py │ └── visualization.py ├── show result online │ ├── 3d-pose-viewer.png │ ├── 3d_pose_viewer.html │ ├── pos_sample1.txt │ └── 使い方.txt └── src │ ├── __init__.py │ ├── __pycache__ │ ├── common.cpython-35.pyc │ ├── common.cpython-36.pyc │ ├── estimator.cpython-35.pyc │ ├── estimator.cpython-36.pyc │ ├── network_base.cpython-35.pyc │ ├── network_base.cpython-36.pyc │ ├── network_cmu.cpython-35.pyc │ ├── network_cmu.cpython-36.pyc │ ├── network_mobilenet.cpython-35.pyc │ ├── network_mobilenet.cpython-36.pyc │ ├── network_mobilenet_thin.cpython-35.pyc │ ├── network_mobilenet_thin.cpython-36.pyc │ ├── networks.cpython-35.pyc │ └── networks.cpython-36.pyc │ ├── common.py │ ├── data │ ├── 3d_data0.txt │ ├── 3d_data1.txt │ ├── 3d_data10.txt │ ├── 3d_data100.txt │ ├── 3d_data101.txt │ ├── 3d_data102.txt │ ├── 3d_data103.txt │ ├── 3d_data104.txt │ ├── 3d_data105.txt │ ├── 3d_data106.txt │ ├── 3d_data107.txt │ ├── 3d_data108.txt │ ├── 3d_data109.txt │ ├── 3d_data11.txt │ ├── 3d_data110.txt │ ├── 3d_data111.txt │ ├── 3d_data112.txt │ ├── 3d_data113.txt │ ├── 3d_data114.txt │ ├── 3d_data115.txt │ ├── 3d_data116.txt │ ├── 3d_data117.txt │ ├── 3d_data118.txt │ ├── 3d_data119.txt │ ├── 3d_data12.txt │ ├── 3d_data120.txt │ ├── 3d_data121.txt │ ├── 3d_data122.txt │ ├── 3d_data123.txt │ ├── 3d_data124.txt │ ├── 3d_data125.txt │ ├── 3d_data126.txt │ ├── 3d_data127.txt │ ├── 3d_data128.txt │ ├── 3d_data129.txt │ ├── 3d_data13.txt │ ├── 3d_data130.txt │ ├── 3d_data131.txt │ ├── 3d_data132.txt │ ├── 3d_data133.txt │ ├── 3d_data134.txt │ ├── 3d_data135.txt │ ├── 3d_data136.txt │ ├── 3d_data137.txt │ ├── 3d_data138.txt │ ├── 3d_data139.txt │ ├── 3d_data14.txt │ ├── 3d_data140.txt │ ├── 3d_data141.txt │ ├── 3d_data142.txt │ ├── 3d_data143.txt │ ├── 3d_data144.txt │ ├── 3d_data145.txt │ ├── 3d_data146.txt │ ├── 3d_data147.txt │ ├── 3d_data148.txt │ ├── 3d_data149.txt │ ├── 3d_data15.txt │ ├── 3d_data150.txt │ ├── 3d_data151.txt │ ├── 3d_data152.txt │ ├── 3d_data153.txt │ ├── 3d_data154.txt │ ├── 3d_data155.txt │ ├── 3d_data156.txt │ ├── 3d_data157.txt │ ├── 3d_data158.txt │ ├── 3d_data159.txt │ ├── 3d_data16.txt │ ├── 3d_data160.txt │ ├── 3d_data161.txt │ ├── 3d_data162.txt │ ├── 3d_data163.txt │ ├── 3d_data164.txt │ ├── 3d_data165.txt │ ├── 3d_data166.txt │ ├── 3d_data167.txt │ ├── 3d_data168.txt │ ├── 3d_data169.txt │ ├── 3d_data17.txt │ ├── 3d_data170.txt │ ├── 3d_data171.txt │ ├── 3d_data172.txt │ ├── 3d_data173.txt │ ├── 3d_data174.txt │ ├── 3d_data175.txt │ ├── 3d_data176.txt │ ├── 3d_data177.txt │ ├── 3d_data178.txt │ ├── 3d_data179.txt │ ├── 3d_data18.txt │ ├── 3d_data180.txt │ ├── 3d_data181.txt │ ├── 3d_data182.txt │ ├── 3d_data183.txt │ ├── 3d_data184.txt │ ├── 3d_data185.txt │ ├── 3d_data186.txt │ ├── 3d_data187.txt │ ├── 3d_data188.txt │ ├── 3d_data189.txt │ ├── 3d_data19.txt │ ├── 3d_data190.txt │ ├── 3d_data191.txt │ ├── 3d_data192.txt │ ├── 3d_data193.txt │ ├── 3d_data194.txt │ ├── 3d_data195.txt │ ├── 3d_data196.txt │ ├── 3d_data197.txt │ ├── 3d_data198.txt │ ├── 3d_data199.txt │ ├── 3d_data2.txt │ ├── 3d_data20.txt │ ├── 3d_data200.txt │ ├── 3d_data201.txt │ ├── 3d_data202.txt │ ├── 3d_data203.txt │ ├── 3d_data204.txt │ ├── 3d_data205.txt │ ├── 3d_data206.txt │ ├── 3d_data207.txt │ ├── 3d_data208.txt │ ├── 3d_data209.txt │ ├── 3d_data21.txt │ ├── 3d_data210.txt │ ├── 3d_data211.txt │ ├── 3d_data212.txt │ ├── 3d_data213.txt │ ├── 3d_data214.txt │ ├── 3d_data215.txt │ ├── 3d_data216.txt │ ├── 3d_data217.txt │ ├── 3d_data218.txt │ ├── 3d_data219.txt │ ├── 3d_data22.txt │ ├── 3d_data220.txt │ ├── 3d_data221.txt │ ├── 3d_data222.txt │ ├── 3d_data223.txt │ ├── 3d_data224.txt │ ├── 3d_data225.txt │ ├── 3d_data226.txt │ ├── 3d_data227.txt │ ├── 3d_data228.txt │ ├── 3d_data229.txt │ ├── 3d_data23.txt │ ├── 3d_data230.txt │ ├── 3d_data231.txt │ ├── 3d_data232.txt │ ├── 3d_data233.txt │ ├── 3d_data234.txt │ ├── 3d_data235.txt │ ├── 3d_data236.txt │ ├── 3d_data237.txt │ ├── 3d_data238.txt │ ├── 3d_data239.txt │ ├── 3d_data24.txt │ ├── 3d_data240.txt │ ├── 3d_data241.txt │ ├── 3d_data242.txt │ ├── 3d_data243.txt │ ├── 3d_data244.txt │ ├── 3d_data245.txt │ ├── 3d_data246.txt │ ├── 3d_data247.txt │ ├── 3d_data248.txt │ ├── 3d_data249.txt │ ├── 3d_data25.txt │ ├── 3d_data250.txt │ ├── 3d_data251.txt │ ├── 3d_data252.txt │ ├── 3d_data253.txt │ ├── 3d_data254.txt │ ├── 3d_data255.txt │ ├── 3d_data256.txt │ ├── 3d_data257.txt │ ├── 3d_data258.txt │ ├── 3d_data259.txt │ ├── 3d_data26.txt │ ├── 3d_data260.txt │ ├── 3d_data261.txt │ ├── 3d_data262.txt │ ├── 3d_data263.txt │ ├── 3d_data264.txt │ ├── 3d_data265.txt │ ├── 3d_data266.txt │ ├── 3d_data267.txt │ ├── 3d_data268.txt │ ├── 3d_data269.txt │ ├── 3d_data27.txt │ ├── 3d_data270.txt │ ├── 3d_data271.txt │ ├── 3d_data272.txt │ ├── 3d_data273.txt │ ├── 3d_data274.txt │ ├── 3d_data275.txt │ ├── 3d_data276.txt │ ├── 3d_data277.txt │ ├── 3d_data278.txt │ ├── 3d_data279.txt │ ├── 3d_data28.txt │ ├── 3d_data280.txt │ ├── 3d_data281.txt │ ├── 3d_data282.txt │ ├── 3d_data283.txt │ ├── 3d_data284.txt │ ├── 3d_data285.txt │ ├── 3d_data286.txt │ ├── 3d_data287.txt │ ├── 3d_data288.txt │ ├── 3d_data289.txt │ ├── 3d_data29.txt │ ├── 3d_data290.txt │ ├── 3d_data291.txt │ ├── 3d_data292.txt │ ├── 3d_data293.txt │ ├── 3d_data294.txt │ ├── 3d_data295.txt │ ├── 3d_data296.txt │ ├── 3d_data297.txt │ ├── 3d_data298.txt │ ├── 3d_data299.txt │ ├── 3d_data3.txt │ ├── 3d_data30.txt │ ├── 3d_data300.txt │ ├── 3d_data301.txt │ ├── 3d_data302.txt │ ├── 3d_data303.txt │ ├── 3d_data304.txt │ ├── 3d_data305.txt │ ├── 3d_data306.txt │ ├── 3d_data307.txt │ ├── 3d_data308.txt │ ├── 3d_data309.txt │ ├── 3d_data31.txt │ ├── 3d_data310.txt │ ├── 3d_data311.txt │ ├── 3d_data312.txt │ ├── 3d_data313.txt │ ├── 3d_data314.txt │ ├── 3d_data315.txt │ ├── 3d_data316.txt │ ├── 3d_data317.txt │ ├── 3d_data318.txt │ ├── 3d_data319.txt │ ├── 3d_data32.txt │ ├── 3d_data320.txt │ ├── 3d_data321.txt │ ├── 3d_data322.txt │ ├── 3d_data323.txt │ ├── 3d_data324.txt │ ├── 3d_data325.txt │ ├── 3d_data326.txt │ ├── 3d_data327.txt │ ├── 3d_data328.txt │ ├── 3d_data329.txt │ ├── 3d_data33.txt │ ├── 3d_data330.txt │ ├── 3d_data331.txt │ ├── 3d_data332.txt │ ├── 3d_data333.txt │ ├── 3d_data334.txt │ ├── 3d_data335.txt │ ├── 3d_data336.txt │ ├── 3d_data337.txt │ ├── 3d_data338.txt │ ├── 3d_data339.txt │ ├── 3d_data34.txt │ ├── 3d_data340.txt │ ├── 3d_data341.txt │ ├── 3d_data342.txt │ ├── 3d_data343.txt │ ├── 3d_data344.txt │ ├── 3d_data345.txt │ ├── 3d_data346.txt │ ├── 3d_data347.txt │ ├── 3d_data348.txt │ ├── 3d_data349.txt │ ├── 3d_data35.txt │ ├── 3d_data350.txt │ ├── 3d_data351.txt │ ├── 3d_data352.txt │ ├── 3d_data353.txt │ ├── 3d_data354.txt │ ├── 3d_data355.txt │ ├── 3d_data356.txt │ ├── 3d_data357.txt │ ├── 3d_data358.txt │ ├── 3d_data359.txt │ ├── 3d_data36.txt │ ├── 3d_data360.txt │ ├── 3d_data361.txt │ ├── 3d_data362.txt │ ├── 3d_data363.txt │ ├── 3d_data364.txt │ ├── 3d_data365.txt │ ├── 3d_data366.txt │ ├── 3d_data367.txt │ ├── 3d_data368.txt │ ├── 3d_data369.txt │ ├── 3d_data37.txt │ ├── 3d_data370.txt │ ├── 3d_data371.txt │ ├── 3d_data372.txt │ ├── 3d_data373.txt │ ├── 3d_data374.txt │ ├── 3d_data375.txt │ ├── 3d_data376.txt │ ├── 3d_data377.txt │ ├── 3d_data378.txt │ ├── 3d_data379.txt │ ├── 3d_data38.txt │ ├── 3d_data380.txt │ ├── 3d_data381.txt │ ├── 3d_data382.txt │ ├── 3d_data383.txt │ ├── 3d_data384.txt │ ├── 3d_data385.txt │ ├── 3d_data386.txt │ ├── 3d_data387.txt │ ├── 3d_data388.txt │ ├── 3d_data389.txt │ ├── 3d_data39.txt │ ├── 3d_data390.txt │ ├── 3d_data391.txt │ ├── 3d_data392.txt │ ├── 3d_data393.txt │ ├── 3d_data394.txt │ ├── 3d_data395.txt │ ├── 3d_data396.txt │ ├── 3d_data397.txt │ ├── 3d_data398.txt │ ├── 3d_data399.txt │ ├── 3d_data4.txt │ ├── 3d_data40.txt │ ├── 3d_data400.txt │ ├── 3d_data401.txt │ ├── 3d_data402.txt │ ├── 3d_data403.txt │ ├── 3d_data404.txt │ ├── 3d_data405.txt │ ├── 3d_data406.txt │ ├── 3d_data407.txt │ ├── 3d_data408.txt │ ├── 3d_data409.txt │ ├── 3d_data41.txt │ ├── 3d_data410.txt │ ├── 3d_data411.txt │ ├── 3d_data412.txt │ ├── 3d_data413.txt │ ├── 3d_data414.txt │ ├── 3d_data415.txt │ ├── 3d_data416.txt │ ├── 3d_data417.txt │ ├── 3d_data418.txt │ ├── 3d_data419.txt │ ├── 3d_data42.txt │ ├── 3d_data420.txt │ ├── 3d_data421.txt │ ├── 3d_data422.txt │ ├── 3d_data423.txt │ ├── 3d_data424.txt │ ├── 3d_data425.txt │ ├── 3d_data426.txt │ ├── 3d_data427.txt │ ├── 3d_data428.txt │ ├── 3d_data429.txt │ ├── 3d_data43.txt │ ├── 3d_data430.txt │ ├── 3d_data431.txt │ ├── 3d_data432.txt │ ├── 3d_data433.txt │ ├── 3d_data434.txt │ ├── 3d_data435.txt │ ├── 3d_data436.txt │ ├── 3d_data437.txt │ ├── 3d_data438.txt │ ├── 3d_data439.txt │ ├── 3d_data44.txt │ ├── 3d_data440.txt │ ├── 3d_data441.txt │ ├── 3d_data442.txt │ ├── 3d_data443.txt │ ├── 3d_data444.txt │ ├── 3d_data45.txt │ ├── 3d_data46.txt │ ├── 3d_data47.txt │ ├── 3d_data48.txt │ ├── 3d_data49.txt │ ├── 3d_data5.txt │ ├── 3d_data50.txt │ ├── 3d_data51.txt │ ├── 3d_data52.txt │ ├── 3d_data53.txt │ ├── 3d_data54.txt │ ├── 3d_data55.txt │ ├── 3d_data56.txt │ ├── 3d_data57.txt │ ├── 3d_data58.txt │ ├── 3d_data59.txt │ ├── 3d_data6.txt │ ├── 3d_data60.txt │ ├── 3d_data61.txt │ ├── 3d_data62.txt │ ├── 3d_data63.txt │ ├── 3d_data64.txt │ ├── 3d_data65.txt │ ├── 3d_data66.txt │ ├── 3d_data67.txt │ ├── 3d_data68.txt │ ├── 3d_data69.txt │ ├── 3d_data7.txt │ ├── 3d_data70.txt │ ├── 3d_data71.txt │ ├── 3d_data72.txt │ ├── 3d_data73.txt │ ├── 3d_data74.txt │ ├── 3d_data75.txt │ ├── 3d_data76.txt │ ├── 3d_data77.txt │ ├── 3d_data78.txt │ ├── 3d_data79.txt │ ├── 3d_data8.txt │ ├── 3d_data80.txt │ ├── 3d_data81.txt │ ├── 3d_data82.txt │ ├── 3d_data83.txt │ ├── 3d_data84.txt │ ├── 3d_data85.txt │ ├── 3d_data86.txt │ ├── 3d_data87.txt │ ├── 3d_data88.txt │ ├── 3d_data89.txt │ ├── 3d_data9.txt │ ├── 3d_data90.txt │ ├── 3d_data91.txt │ ├── 3d_data92.txt │ ├── 3d_data93.txt │ ├── 3d_data94.txt │ ├── 3d_data95.txt │ ├── 3d_data96.txt │ ├── 3d_data97.txt │ ├── 3d_data98.txt │ └── 3d_data99.txt │ ├── data1 │ ├── pos1.txt │ └── pos_cai.txt │ ├── estimator.py │ ├── lifting │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── config.cpython-35.pyc │ │ ├── config.cpython-36.pyc │ │ ├── draw.cpython-35.pyc │ │ ├── draw.cpython-36.pyc │ │ ├── prob_model.cpython-35.pyc │ │ ├── prob_model.cpython-36.pyc │ │ ├── upright_fast.cpython-35.pyc │ │ └── upright_fast.cpython-36.pyc │ ├── config.py │ ├── draw.py │ ├── models │ │ └── prob_model_params.mat │ ├── prob_model.py │ └── upright_fast.py │ ├── network_base.py │ ├── network_cmu.py │ ├── network_dsconv.py │ ├── network_mobilenet.py │ ├── network_mobilenet_thin.py │ ├── networks.py │ ├── slim │ ├── __init__.py │ ├── nets │ │ ├── __init__.py │ │ ├── alexnet.py │ │ ├── alexnet_test.py │ │ ├── cifarnet.py │ │ ├── cyclegan.py │ │ ├── cyclegan_test.py │ │ ├── dcgan.py │ │ ├── dcgan_test.py │ │ ├── inception.py │ │ ├── inception_resnet_v2.py │ │ ├── inception_resnet_v2_test.py │ │ ├── inception_utils.py │ │ ├── inception_v1.py │ │ ├── inception_v1_test.py │ │ ├── inception_v2.py │ │ ├── inception_v2_test.py │ │ ├── inception_v3.py │ │ ├── inception_v3_test.py │ │ ├── inception_v4.py │ │ ├── inception_v4_test.py │ │ ├── lenet.py │ │ ├── mobilenet_v1.md │ │ ├── mobilenet_v1.png │ │ ├── mobilenet_v1.py │ │ ├── mobilenet_v1_test.py │ │ ├── nasnet │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── nasnet.py │ │ │ ├── nasnet_test.py │ │ │ ├── nasnet_utils.py │ │ │ └── nasnet_utils_test.py │ │ ├── nets_factory.py │ │ ├── nets_factory_test.py │ │ ├── overfeat.py │ │ ├── overfeat_test.py │ │ ├── pix2pix.py │ │ ├── pix2pix_test.py │ │ ├── resnet_utils.py │ │ ├── resnet_v1.py │ │ ├── resnet_v1_test.py │ │ ├── resnet_v2.py │ │ ├── resnet_v2_test.py │ │ ├── vgg.py │ │ └── vgg_test.py │ └── preprocessing │ │ ├── __init__.py │ │ ├── cifarnet_preprocessing.py │ │ ├── inception_preprocessing.py │ │ ├── lenet_preprocessing.py │ │ ├── preprocessing_factory.py │ │ └── vgg_preprocessing.py │ ├── webcam3d.py │ └── webcam3d2.py ├── README.md ├── Unity App ├── .gitattributes ├── .gitignore ├── .vscode │ └── settings.json ├── Assets │ ├── Editor.meta │ ├── Editor │ │ ├── FullBodyIKEditorUtility.cs │ │ ├── FullBodyIKEditorUtility.cs.meta │ │ ├── FullBodyIKInspector.cs │ │ └── FullBodyIKInspector.cs.meta │ ├── Extensions.meta │ ├── Extensions │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── FullBodyIKUnityChanInspector.cs │ │ │ └── FullBodyIKUnityChanInspector.cs.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── FullBodyIKUnityChan.cs │ │ │ ├── FullBodyIKUnityChan.cs.meta │ │ │ ├── FullBodyIKUnityChanBehaviour.cs │ │ │ └── FullBodyIKUnityChanBehaviour.cs.meta │ ├── IKSetting.cs │ ├── IKSetting.cs.meta │ ├── Openpose-Rig.controller │ ├── Openpose-Rig.controller.meta │ ├── Pos_txt_Reader1.cs │ ├── Pos_txt_Reader1.cs.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── FullBodyIK.cs │ │ ├── FullBodyIK.cs.meta │ │ ├── FullBodyIK.meta │ │ ├── FullBodyIK │ │ │ ├── BodyIK.cs │ │ │ ├── BodyIK.cs.meta │ │ │ ├── Bone.cs │ │ │ ├── Bone.cs.meta │ │ │ ├── Effector.cs │ │ │ ├── Effector.cs.meta │ │ │ ├── FingerIK.cs │ │ │ ├── FingerIK.cs.meta │ │ │ ├── HeadIK.cs │ │ │ ├── HeadIK.cs.meta │ │ │ ├── LimbIK.cs │ │ │ ├── LimbIK.cs.meta │ │ │ ├── Math.cs │ │ │ ├── Math.cs.meta │ │ │ ├── Types.cs │ │ │ ├── Types.cs.meta │ │ │ ├── Utility.cs │ │ │ └── Utility.cs.meta │ │ ├── FullBodyIKBehaviour.cs │ │ ├── FullBodyIKBehaviour.cs.meta │ │ ├── FullBodyIKBehaviourBase.cs │ │ └── FullBodyIKBehaviourBase.cs.meta │ ├── UnityChan.meta │ ├── UnityChan │ │ ├── Amimators.meta │ │ ├── Amimators │ │ │ ├── UnityChanARPose.controller │ │ │ ├── UnityChanARPose.controller.meta │ │ │ ├── UnityChanActionCheck.controller │ │ │ ├── UnityChanActionCheck.controller.meta │ │ │ ├── UnityChanLocomotions.controller │ │ │ └── UnityChanLocomotions.controller.meta │ │ ├── Animations.meta │ │ ├── Animations │ │ │ ├── unitychan_ARpose1.fbx │ │ │ ├── unitychan_ARpose1.fbx.meta │ │ │ ├── unitychan_ARpose2.fbx │ │ │ ├── unitychan_ARpose2.fbx.meta │ │ │ ├── unitychan_DAMAGED00.fbx │ │ │ ├── unitychan_DAMAGED00.fbx.meta │ │ │ ├── unitychan_DAMAGED01.fbx │ │ │ ├── unitychan_DAMAGED01.fbx.meta │ │ │ ├── unitychan_HANDUP00_R.fbx │ │ │ ├── unitychan_HANDUP00_R.fbx.meta │ │ │ ├── unitychan_JUMP00.fbx │ │ │ ├── unitychan_JUMP00.fbx.meta │ │ │ ├── unitychan_JUMP00B.fbx │ │ │ ├── unitychan_JUMP00B.fbx.meta │ │ │ ├── unitychan_JUMP01.fbx │ │ │ ├── unitychan_JUMP01.fbx.meta │ │ │ ├── unitychan_JUMP01B.fbx │ │ │ ├── unitychan_JUMP01B.fbx.meta │ │ │ ├── unitychan_LOSE00.fbx │ │ │ ├── unitychan_LOSE00.fbx.meta │ │ │ ├── unitychan_REFLESH00.fbx │ │ │ ├── unitychan_REFLESH00.fbx.meta │ │ │ ├── unitychan_RUN00_F.fbx │ │ │ ├── unitychan_RUN00_F.fbx.meta │ │ │ ├── unitychan_RUN00_L.fbx │ │ │ ├── unitychan_RUN00_L.fbx.meta │ │ │ ├── unitychan_RUN00_R.fbx │ │ │ ├── unitychan_RUN00_R.fbx.meta │ │ │ ├── unitychan_SLIDE00.fbx │ │ │ ├── unitychan_SLIDE00.fbx.meta │ │ │ ├── unitychan_UMATOBI00.fbx │ │ │ ├── unitychan_UMATOBI00.fbx.meta │ │ │ ├── unitychan_WAIT00.fbx │ │ │ ├── unitychan_WAIT00.fbx.meta │ │ │ ├── unitychan_WAIT01.fbx │ │ │ ├── unitychan_WAIT01.fbx.meta │ │ │ ├── unitychan_WAIT02.fbx │ │ │ ├── unitychan_WAIT02.fbx.meta │ │ │ ├── unitychan_WAIT03.fbx │ │ │ ├── unitychan_WAIT03.fbx.meta │ │ │ ├── unitychan_WAIT04.fbx │ │ │ ├── unitychan_WAIT04.fbx.meta │ │ │ ├── unitychan_WALK00_B.fbx │ │ │ ├── unitychan_WALK00_B.fbx.meta │ │ │ ├── unitychan_WALK00_F.fbx │ │ │ ├── unitychan_WALK00_F.fbx.meta │ │ │ ├── unitychan_WALK00_L.fbx │ │ │ ├── unitychan_WALK00_L.fbx.meta │ │ │ ├── unitychan_WALK00_R.fbx │ │ │ ├── unitychan_WALK00_R.fbx.meta │ │ │ ├── unitychan_WIN00.fbx │ │ │ └── unitychan_WIN00.fbx.meta │ │ ├── FaceAnimation.meta │ │ ├── FaceAnimation │ │ │ ├── ASHAMED.anim │ │ │ ├── ASHAMED.anim.meta │ │ │ ├── SURPRISE.anim │ │ │ ├── SURPRISE.anim.meta │ │ │ ├── angry1@unitychan.anim │ │ │ ├── angry1@unitychan.anim.meta │ │ │ ├── angry2@unitychan.anim │ │ │ ├── angry2@unitychan.anim.meta │ │ │ ├── conf@unitychan.anim │ │ │ ├── conf@unitychan.anim.meta │ │ │ ├── default@unitychan.anim │ │ │ ├── default@unitychan.anim.meta │ │ │ ├── disstract1@unitychan.anim │ │ │ ├── disstract1@unitychan.anim.meta │ │ │ ├── disstract2@unitychan.anim │ │ │ ├── disstract2@unitychan.anim.meta │ │ │ ├── eye_close@unitychan.anim │ │ │ ├── eye_close@unitychan.anim.meta │ │ │ ├── face only mask.mask │ │ │ ├── face only mask.mask.meta │ │ │ ├── sap@unitychan.anim │ │ │ ├── sap@unitychan.anim.meta │ │ │ ├── smile1@unitychan.anim │ │ │ ├── smile1@unitychan.anim.meta │ │ │ ├── smile2@unitychan.anim │ │ │ └── smile2@unitychan.anim.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── BoxUnityChan.fbx │ │ │ ├── BoxUnityChan.fbx.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Left.mat │ │ │ │ ├── Left.mat.meta │ │ │ │ ├── Right.mat │ │ │ │ ├── Right.mat.meta │ │ │ │ ├── body.mat │ │ │ │ ├── body.mat.meta │ │ │ │ ├── eye_L1.mat │ │ │ │ ├── eye_L1.mat.meta │ │ │ │ ├── eye_R1.mat │ │ │ │ ├── eye_R1.mat.meta │ │ │ │ ├── eyebase.mat │ │ │ │ ├── eyebase.mat.meta │ │ │ │ ├── eyeline.mat │ │ │ │ ├── eyeline.mat.meta │ │ │ │ ├── face.mat │ │ │ │ ├── face.mat.meta │ │ │ │ ├── hair.mat │ │ │ │ ├── hair.mat.meta │ │ │ │ ├── mat_cheek.mat │ │ │ │ ├── mat_cheek.mat.meta │ │ │ │ ├── skin1.mat │ │ │ │ └── skin1.mat.meta │ │ │ ├── UnityChanShader.meta │ │ │ ├── UnityChanShader │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── body.mat │ │ │ │ │ ├── body.mat.meta │ │ │ │ │ ├── eye_L1.mat │ │ │ │ │ ├── eye_L1.mat.meta │ │ │ │ │ ├── eye_R1.mat │ │ │ │ │ ├── eye_R1.mat.meta │ │ │ │ │ ├── eyebase.mat │ │ │ │ │ ├── eyebase.mat.meta │ │ │ │ │ ├── eyeline.mat │ │ │ │ │ ├── eyeline.mat.meta │ │ │ │ │ ├── face.mat │ │ │ │ │ ├── face.mat.meta │ │ │ │ │ ├── hair.mat │ │ │ │ │ ├── hair.mat.meta │ │ │ │ │ ├── mat_cheek.mat │ │ │ │ │ ├── mat_cheek.mat.meta │ │ │ │ │ ├── skin1.mat │ │ │ │ │ └── skin1.mat.meta │ │ │ │ ├── Shader.meta │ │ │ │ ├── Shader │ │ │ │ │ ├── CharaMain.cg │ │ │ │ │ ├── CharaMain.cg.meta │ │ │ │ │ ├── CharaOutline.cg │ │ │ │ │ ├── CharaOutline.cg.meta │ │ │ │ │ ├── CharaSkin.cg │ │ │ │ │ ├── CharaSkin.cg.meta │ │ │ │ │ ├── Unitychan_chara_akarami_blend.shader │ │ │ │ │ ├── Unitychan_chara_akarami_blend.shader.meta │ │ │ │ │ ├── Unitychan_chara_eye.shader │ │ │ │ │ ├── Unitychan_chara_eye.shader.meta │ │ │ │ │ ├── Unitychan_chara_eye_blend.shader │ │ │ │ │ ├── Unitychan_chara_eye_blend.shader.meta │ │ │ │ │ ├── Unitychan_chara_eyelash_blend.shader │ │ │ │ │ ├── Unitychan_chara_eyelash_blend.shader.meta │ │ │ │ │ ├── Unitychan_chara_fuku.shader │ │ │ │ │ ├── Unitychan_chara_fuku.shader.meta │ │ │ │ │ ├── Unitychan_chara_fuku_ds.shader │ │ │ │ │ ├── Unitychan_chara_fuku_ds.shader.meta │ │ │ │ │ ├── Unitychan_chara_hada.shader │ │ │ │ │ ├── Unitychan_chara_hada.shader.meta │ │ │ │ │ ├── Unitychan_chara_hada_blend.shader │ │ │ │ │ ├── Unitychan_chara_hada_blend.shader.meta │ │ │ │ │ ├── Unitychan_chara_hair.shader │ │ │ │ │ ├── Unitychan_chara_hair.shader.meta │ │ │ │ │ ├── Unitychan_chara_hair_ds.shader │ │ │ │ │ └── Unitychan_chara_hair_ds.shader.meta │ │ │ │ ├── Texture.meta │ │ │ │ └── Texture │ │ │ │ │ ├── DEFAULT_NORMAL.tga │ │ │ │ │ ├── DEFAULT_NORMAL.tga.meta │ │ │ │ │ ├── ENV2.tga │ │ │ │ │ ├── ENV2.tga.meta │ │ │ │ │ ├── FO_CLOTH1.tga │ │ │ │ │ ├── FO_CLOTH1.tga.meta │ │ │ │ │ ├── FO_RIM1.tga │ │ │ │ │ ├── FO_RIM1.tga.meta │ │ │ │ │ ├── FO_SKIN1.tga │ │ │ │ │ ├── FO_SKIN1.tga.meta │ │ │ │ │ ├── body_01.tga │ │ │ │ │ ├── body_01.tga.meta │ │ │ │ │ ├── body_01_NRM.tga │ │ │ │ │ ├── body_01_NRM.tga.meta │ │ │ │ │ ├── body_01_SPEC.tga │ │ │ │ │ ├── body_01_SPEC.tga.meta │ │ │ │ │ ├── cheek_00.tga │ │ │ │ │ ├── cheek_00.tga.meta │ │ │ │ │ ├── eye_iris_L_00.tga │ │ │ │ │ ├── eye_iris_L_00.tga.meta │ │ │ │ │ ├── eye_iris_R_00.tga │ │ │ │ │ ├── eye_iris_R_00.tga.meta │ │ │ │ │ ├── eyeline_00.tga │ │ │ │ │ ├── eyeline_00.tga.meta │ │ │ │ │ ├── face_00.tga │ │ │ │ │ ├── face_00.tga.meta │ │ │ │ │ ├── guide.tga │ │ │ │ │ ├── guide.tga.meta │ │ │ │ │ ├── hair_01.tga │ │ │ │ │ ├── hair_01.tga.meta │ │ │ │ │ ├── hair_01_NRM.tga │ │ │ │ │ ├── hair_01_NRM.tga.meta │ │ │ │ │ ├── hair_01_SPEC.tga │ │ │ │ │ ├── hair_01_SPEC.tga.meta │ │ │ │ │ ├── skin_01.tga │ │ │ │ │ └── skin_01.tga.meta │ │ │ ├── unitychan.fbx │ │ │ └── unitychan.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── BoxUnityChan.prefab │ │ │ ├── BoxUnityChan.prefab.meta │ │ │ ├── Directional light for UnityChan.prefab │ │ │ ├── Directional light for UnityChan.prefab.meta │ │ │ ├── LevelLoader.prefab │ │ │ ├── LevelLoader.prefab.meta │ │ │ ├── LookPos.prefab │ │ │ ├── LookPos.prefab.meta │ │ │ ├── for Locomotion.meta │ │ │ ├── for Locomotion │ │ │ │ ├── CamPos.prefab │ │ │ │ ├── CamPos.prefab.meta │ │ │ │ ├── FrontPos.prefab │ │ │ │ ├── FrontPos.prefab.meta │ │ │ │ ├── JumpPos.prefab │ │ │ │ ├── JumpPos.prefab.meta │ │ │ │ ├── LookAtPos.prefab │ │ │ │ ├── LookAtPos.prefab.meta │ │ │ │ ├── Main Camera.prefab │ │ │ │ ├── Main Camera.prefab.meta │ │ │ │ ├── unitychan.prefab │ │ │ │ └── unitychan.prefab.meta │ │ │ ├── unitychan.prefab │ │ │ └── unitychan.prefab.meta │ │ ├── ReadMe.meta │ │ ├── ReadMe │ │ │ ├── ReadMe_en.pdf │ │ │ ├── ReadMe_en.pdf.meta │ │ │ ├── ReadMe_jp.pdf │ │ │ └── ReadMe_jp.pdf.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── ARPoseTest.unity │ │ │ ├── ARPoseTest.unity.meta │ │ │ ├── ActionCheck.unity │ │ │ ├── ActionCheck.unity.meta │ │ │ ├── Locomotion.unity │ │ │ └── Locomotion.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── CameraController.cs │ │ │ ├── CameraController.cs.meta │ │ │ ├── FaceUpdate.cs │ │ │ ├── FaceUpdate.cs.meta │ │ │ ├── IdleChanger.cs │ │ │ ├── IdleChanger.cs.meta │ │ │ ├── SceneLoader.cs │ │ │ ├── SceneLoader.cs.meta │ │ │ ├── ThirdPersonCamera.cs │ │ │ ├── ThirdPersonCamera.cs.meta │ │ │ ├── UnityChanControlScriptWithRgidBody.cs │ │ │ └── UnityChanControlScriptWithRgidBody.cs.meta │ │ ├── Stage.meta │ │ ├── Stage │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── unitychan_tile3.mat │ │ │ │ ├── unitychan_tile3.mat.meta │ │ │ │ ├── unitychan_tile4.mat │ │ │ │ ├── unitychan_tile4.mat.meta │ │ │ │ ├── unitychan_tile5.mat │ │ │ │ ├── unitychan_tile5.mat.meta │ │ │ │ ├── unitychan_tile6.mat │ │ │ │ └── unitychan_tile6.mat.meta │ │ │ ├── Shader.meta │ │ │ ├── Shader │ │ │ │ ├── AlphaMask.shader │ │ │ │ ├── AlphaMask.shader.meta │ │ │ │ ├── Textures.meta │ │ │ │ └── Textures │ │ │ │ │ ├── AlphaMask.png │ │ │ │ │ ├── AlphaMask.png.meta │ │ │ │ │ ├── Unity_Icon.png │ │ │ │ │ └── Unity_Icon.png.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── unitychan_tile3.png │ │ │ │ ├── unitychan_tile3.png.meta │ │ │ │ ├── unitychan_tile4.png │ │ │ │ ├── unitychan_tile4.png.meta │ │ │ │ ├── unitychan_tile5.png │ │ │ │ ├── unitychan_tile5.png.meta │ │ │ │ ├── unitychan_tile6.png │ │ │ │ └── unitychan_tile6.png.meta │ │ ├── license.txt │ │ └── license.txt.meta │ ├── datas.meta │ ├── datas │ │ ├── 3d_data0.txt │ │ ├── 3d_data0.txt.meta │ │ ├── 3d_data1.txt │ │ ├── 3d_data1.txt.meta │ │ ├── 3d_data10.txt │ │ ├── 3d_data10.txt.meta │ │ ├── 3d_data100.txt │ │ ├── 3d_data100.txt.meta │ │ ├── 3d_data101.txt │ │ ├── 3d_data101.txt.meta │ │ ├── 3d_data102.txt │ │ ├── 3d_data102.txt.meta │ │ ├── 3d_data103.txt │ │ ├── 3d_data103.txt.meta │ │ ├── 3d_data104.txt │ │ ├── 3d_data104.txt.meta │ │ ├── 3d_data105.txt │ │ ├── 3d_data105.txt.meta │ │ ├── 3d_data106.txt │ │ ├── 3d_data106.txt.meta │ │ ├── 3d_data107.txt │ │ ├── 3d_data107.txt.meta │ │ ├── 3d_data108.txt │ │ ├── 3d_data108.txt.meta │ │ ├── 3d_data109.txt │ │ ├── 3d_data109.txt.meta │ │ ├── 3d_data11.txt │ │ ├── 3d_data11.txt.meta │ │ ├── 3d_data110.txt │ │ ├── 3d_data110.txt.meta │ │ ├── 3d_data111.txt │ │ ├── 3d_data111.txt.meta │ │ ├── 3d_data112.txt │ │ ├── 3d_data112.txt.meta │ │ ├── 3d_data113.txt │ │ ├── 3d_data113.txt.meta │ │ ├── 3d_data114.txt │ │ ├── 3d_data114.txt.meta │ │ ├── 3d_data115.txt │ │ ├── 3d_data115.txt.meta │ │ ├── 3d_data116.txt │ │ ├── 3d_data116.txt.meta │ │ ├── 3d_data117.txt │ │ ├── 3d_data117.txt.meta │ │ ├── 3d_data118.txt │ │ ├── 3d_data118.txt.meta │ │ ├── 3d_data119.txt │ │ ├── 3d_data119.txt.meta │ │ ├── 3d_data12.txt │ │ ├── 3d_data12.txt.meta │ │ ├── 3d_data120.txt │ │ ├── 3d_data120.txt.meta │ │ ├── 3d_data121.txt │ │ ├── 3d_data121.txt.meta │ │ ├── 3d_data122.txt │ │ ├── 3d_data122.txt.meta │ │ ├── 3d_data123.txt │ │ ├── 3d_data123.txt.meta │ │ ├── 3d_data124.txt │ │ ├── 3d_data124.txt.meta │ │ ├── 3d_data125.txt │ │ ├── 3d_data125.txt.meta │ │ ├── 3d_data126.txt │ │ ├── 3d_data126.txt.meta │ │ ├── 3d_data127.txt │ │ ├── 3d_data127.txt.meta │ │ ├── 3d_data128.txt │ │ ├── 3d_data128.txt.meta │ │ ├── 3d_data129.txt │ │ ├── 3d_data129.txt.meta │ │ ├── 3d_data13.txt │ │ ├── 3d_data13.txt.meta │ │ ├── 3d_data130.txt │ │ ├── 3d_data130.txt.meta │ │ ├── 3d_data131.txt │ │ ├── 3d_data131.txt.meta │ │ ├── 3d_data132.txt │ │ ├── 3d_data132.txt.meta │ │ ├── 3d_data133.txt │ │ ├── 3d_data133.txt.meta │ │ ├── 3d_data134.txt │ │ ├── 3d_data134.txt.meta │ │ ├── 3d_data135.txt │ │ ├── 3d_data135.txt.meta │ │ ├── 3d_data136.txt │ │ ├── 3d_data136.txt.meta │ │ ├── 3d_data137.txt │ │ ├── 3d_data137.txt.meta │ │ ├── 3d_data138.txt │ │ ├── 3d_data138.txt.meta │ │ ├── 3d_data139.txt │ │ ├── 3d_data139.txt.meta │ │ ├── 3d_data14.txt │ │ ├── 3d_data14.txt.meta │ │ ├── 3d_data140.txt │ │ ├── 3d_data140.txt.meta │ │ ├── 3d_data141.txt │ │ ├── 3d_data141.txt.meta │ │ ├── 3d_data142.txt │ │ ├── 3d_data142.txt.meta │ │ ├── 3d_data143.txt │ │ ├── 3d_data143.txt.meta │ │ ├── 3d_data144.txt │ │ ├── 3d_data144.txt.meta │ │ ├── 3d_data145.txt │ │ ├── 3d_data145.txt.meta │ │ ├── 3d_data146.txt │ │ ├── 3d_data146.txt.meta │ │ ├── 3d_data147.txt │ │ ├── 3d_data147.txt.meta │ │ ├── 3d_data148.txt │ │ ├── 3d_data148.txt.meta │ │ ├── 3d_data149.txt │ │ ├── 3d_data149.txt.meta │ │ ├── 3d_data15.txt │ │ ├── 3d_data15.txt.meta │ │ ├── 3d_data150.txt │ │ ├── 3d_data150.txt.meta │ │ ├── 3d_data151.txt │ │ ├── 3d_data151.txt.meta │ │ ├── 3d_data152.txt │ │ ├── 3d_data152.txt.meta │ │ ├── 3d_data153.txt │ │ ├── 3d_data153.txt.meta │ │ ├── 3d_data154.txt │ │ ├── 3d_data154.txt.meta │ │ ├── 3d_data155.txt │ │ ├── 3d_data155.txt.meta │ │ ├── 3d_data156.txt │ │ ├── 3d_data156.txt.meta │ │ ├── 3d_data157.txt │ │ ├── 3d_data157.txt.meta │ │ ├── 3d_data158.txt │ │ ├── 3d_data158.txt.meta │ │ ├── 3d_data159.txt │ │ ├── 3d_data159.txt.meta │ │ ├── 3d_data16.txt │ │ ├── 3d_data16.txt.meta │ │ ├── 3d_data160.txt │ │ ├── 3d_data160.txt.meta │ │ ├── 3d_data161.txt │ │ ├── 3d_data161.txt.meta │ │ ├── 3d_data162.txt │ │ ├── 3d_data162.txt.meta │ │ ├── 3d_data163.txt │ │ ├── 3d_data163.txt.meta │ │ ├── 3d_data164.txt │ │ ├── 3d_data164.txt.meta │ │ ├── 3d_data165.txt │ │ ├── 3d_data165.txt.meta │ │ ├── 3d_data166.txt │ │ ├── 3d_data166.txt.meta │ │ ├── 3d_data167.txt │ │ ├── 3d_data167.txt.meta │ │ ├── 3d_data168.txt │ │ ├── 3d_data168.txt.meta │ │ ├── 3d_data169.txt │ │ ├── 3d_data169.txt.meta │ │ ├── 3d_data17.txt │ │ ├── 3d_data17.txt.meta │ │ ├── 3d_data170.txt │ │ ├── 3d_data170.txt.meta │ │ ├── 3d_data171.txt │ │ ├── 3d_data171.txt.meta │ │ ├── 3d_data172.txt │ │ ├── 3d_data172.txt.meta │ │ ├── 3d_data173.txt │ │ ├── 3d_data173.txt.meta │ │ ├── 3d_data174.txt │ │ ├── 3d_data174.txt.meta │ │ ├── 3d_data175.txt │ │ ├── 3d_data175.txt.meta │ │ ├── 3d_data176.txt │ │ ├── 3d_data176.txt.meta │ │ ├── 3d_data177.txt │ │ ├── 3d_data177.txt.meta │ │ ├── 3d_data178.txt │ │ ├── 3d_data178.txt.meta │ │ ├── 3d_data179.txt │ │ ├── 3d_data179.txt.meta │ │ ├── 3d_data18.txt │ │ ├── 3d_data18.txt.meta │ │ ├── 3d_data180.txt │ │ ├── 3d_data180.txt.meta │ │ ├── 3d_data181.txt │ │ ├── 3d_data181.txt.meta │ │ ├── 3d_data182.txt │ │ ├── 3d_data182.txt.meta │ │ ├── 3d_data183.txt │ │ ├── 3d_data183.txt.meta │ │ ├── 3d_data184.txt │ │ ├── 3d_data184.txt.meta │ │ ├── 3d_data185.txt │ │ ├── 3d_data185.txt.meta │ │ ├── 3d_data186.txt │ │ ├── 3d_data186.txt.meta │ │ ├── 3d_data187.txt │ │ ├── 3d_data187.txt.meta │ │ ├── 3d_data188.txt │ │ ├── 3d_data188.txt.meta │ │ ├── 3d_data189.txt │ │ ├── 3d_data189.txt.meta │ │ ├── 3d_data19.txt │ │ ├── 3d_data19.txt.meta │ │ ├── 3d_data190.txt │ │ ├── 3d_data190.txt.meta │ │ ├── 3d_data191.txt │ │ ├── 3d_data191.txt.meta │ │ ├── 3d_data192.txt │ │ ├── 3d_data192.txt.meta │ │ ├── 3d_data193.txt │ │ ├── 3d_data193.txt.meta │ │ ├── 3d_data194.txt │ │ ├── 3d_data194.txt.meta │ │ ├── 3d_data195.txt │ │ ├── 3d_data195.txt.meta │ │ ├── 3d_data196.txt │ │ ├── 3d_data196.txt.meta │ │ ├── 3d_data197.txt │ │ ├── 3d_data197.txt.meta │ │ ├── 3d_data198.txt │ │ ├── 3d_data198.txt.meta │ │ ├── 3d_data199.txt │ │ ├── 3d_data199.txt.meta │ │ ├── 3d_data2.txt │ │ ├── 3d_data2.txt.meta │ │ ├── 3d_data20.txt │ │ ├── 3d_data20.txt.meta │ │ ├── 3d_data200.txt │ │ ├── 3d_data200.txt.meta │ │ ├── 3d_data201.txt │ │ ├── 3d_data201.txt.meta │ │ ├── 3d_data202.txt │ │ ├── 3d_data202.txt.meta │ │ ├── 3d_data203.txt │ │ ├── 3d_data203.txt.meta │ │ ├── 3d_data204.txt │ │ ├── 3d_data204.txt.meta │ │ ├── 3d_data205.txt │ │ ├── 3d_data205.txt.meta │ │ ├── 3d_data206.txt │ │ ├── 3d_data206.txt.meta │ │ ├── 3d_data207.txt │ │ ├── 3d_data207.txt.meta │ │ ├── 3d_data208.txt │ │ ├── 3d_data208.txt.meta │ │ ├── 3d_data209.txt │ │ ├── 3d_data209.txt.meta │ │ ├── 3d_data21.txt │ │ ├── 3d_data21.txt.meta │ │ ├── 3d_data210.txt │ │ ├── 3d_data210.txt.meta │ │ ├── 3d_data211.txt │ │ ├── 3d_data211.txt.meta │ │ ├── 3d_data212.txt │ │ ├── 3d_data212.txt.meta │ │ ├── 3d_data213.txt │ │ ├── 3d_data213.txt.meta │ │ ├── 3d_data214.txt │ │ ├── 3d_data214.txt.meta │ │ ├── 3d_data215.txt │ │ ├── 3d_data215.txt.meta │ │ ├── 3d_data216.txt │ │ ├── 3d_data216.txt.meta │ │ ├── 3d_data217.txt │ │ ├── 3d_data217.txt.meta │ │ ├── 3d_data218.txt │ │ ├── 3d_data218.txt.meta │ │ ├── 3d_data219.txt │ │ ├── 3d_data219.txt.meta │ │ ├── 3d_data22.txt │ │ ├── 3d_data22.txt.meta │ │ ├── 3d_data220.txt │ │ ├── 3d_data220.txt.meta │ │ ├── 3d_data221.txt │ │ ├── 3d_data221.txt.meta │ │ ├── 3d_data222.txt │ │ ├── 3d_data222.txt.meta │ │ ├── 3d_data223.txt │ │ ├── 3d_data223.txt.meta │ │ ├── 3d_data224.txt │ │ ├── 3d_data224.txt.meta │ │ ├── 3d_data225.txt │ │ ├── 3d_data225.txt.meta │ │ ├── 3d_data226.txt │ │ ├── 3d_data226.txt.meta │ │ ├── 3d_data227.txt │ │ ├── 3d_data227.txt.meta │ │ ├── 3d_data228.txt │ │ ├── 3d_data228.txt.meta │ │ ├── 3d_data229.txt │ │ ├── 3d_data229.txt.meta │ │ ├── 3d_data23.txt │ │ ├── 3d_data23.txt.meta │ │ ├── 3d_data230.txt │ │ ├── 3d_data230.txt.meta │ │ ├── 3d_data231.txt │ │ ├── 3d_data231.txt.meta │ │ ├── 3d_data232.txt │ │ ├── 3d_data232.txt.meta │ │ ├── 3d_data233.txt │ │ ├── 3d_data233.txt.meta │ │ ├── 3d_data234.txt │ │ ├── 3d_data234.txt.meta │ │ ├── 3d_data235.txt │ │ ├── 3d_data235.txt.meta │ │ ├── 3d_data236.txt │ │ ├── 3d_data236.txt.meta │ │ ├── 3d_data237.txt │ │ ├── 3d_data237.txt.meta │ │ ├── 3d_data238.txt │ │ ├── 3d_data238.txt.meta │ │ ├── 3d_data239.txt │ │ ├── 3d_data239.txt.meta │ │ ├── 3d_data24.txt │ │ ├── 3d_data24.txt.meta │ │ ├── 3d_data240.txt │ │ ├── 3d_data240.txt.meta │ │ ├── 3d_data241.txt │ │ ├── 3d_data241.txt.meta │ │ ├── 3d_data242.txt │ │ ├── 3d_data242.txt.meta │ │ ├── 3d_data243.txt │ │ ├── 3d_data243.txt.meta │ │ ├── 3d_data244.txt │ │ ├── 3d_data244.txt.meta │ │ ├── 3d_data245.txt │ │ ├── 3d_data245.txt.meta │ │ ├── 3d_data246.txt │ │ ├── 3d_data246.txt.meta │ │ ├── 3d_data247.txt │ │ ├── 3d_data247.txt.meta │ │ ├── 3d_data248.txt │ │ ├── 3d_data248.txt.meta │ │ ├── 3d_data249.txt │ │ ├── 3d_data249.txt.meta │ │ ├── 3d_data25.txt │ │ ├── 3d_data25.txt.meta │ │ ├── 3d_data250.txt │ │ ├── 3d_data250.txt.meta │ │ ├── 3d_data251.txt │ │ ├── 3d_data251.txt.meta │ │ ├── 3d_data252.txt │ │ ├── 3d_data252.txt.meta │ │ ├── 3d_data253.txt │ │ ├── 3d_data253.txt.meta │ │ ├── 3d_data254.txt │ │ ├── 3d_data254.txt.meta │ │ ├── 3d_data255.txt │ │ ├── 3d_data255.txt.meta │ │ ├── 3d_data256.txt │ │ ├── 3d_data256.txt.meta │ │ ├── 3d_data257.txt │ │ ├── 3d_data257.txt.meta │ │ ├── 3d_data258.txt │ │ ├── 3d_data258.txt.meta │ │ ├── 3d_data259.txt │ │ ├── 3d_data259.txt.meta │ │ ├── 3d_data26.txt │ │ ├── 3d_data26.txt.meta │ │ ├── 3d_data260.txt │ │ ├── 3d_data260.txt.meta │ │ ├── 3d_data261.txt │ │ ├── 3d_data261.txt.meta │ │ ├── 3d_data262.txt │ │ ├── 3d_data262.txt.meta │ │ ├── 3d_data263.txt │ │ ├── 3d_data263.txt.meta │ │ ├── 3d_data264.txt │ │ ├── 3d_data264.txt.meta │ │ ├── 3d_data265.txt │ │ ├── 3d_data265.txt.meta │ │ ├── 3d_data266.txt │ │ ├── 3d_data266.txt.meta │ │ ├── 3d_data267.txt │ │ ├── 3d_data267.txt.meta │ │ ├── 3d_data268.txt │ │ ├── 3d_data268.txt.meta │ │ ├── 3d_data269.txt │ │ ├── 3d_data269.txt.meta │ │ ├── 3d_data27.txt │ │ ├── 3d_data27.txt.meta │ │ ├── 3d_data270.txt │ │ ├── 3d_data270.txt.meta │ │ ├── 3d_data271.txt │ │ ├── 3d_data271.txt.meta │ │ ├── 3d_data272.txt │ │ ├── 3d_data272.txt.meta │ │ ├── 3d_data273.txt │ │ ├── 3d_data273.txt.meta │ │ ├── 3d_data274.txt │ │ ├── 3d_data274.txt.meta │ │ ├── 3d_data275.txt │ │ ├── 3d_data275.txt.meta │ │ ├── 3d_data276.txt │ │ ├── 3d_data276.txt.meta │ │ ├── 3d_data277.txt │ │ ├── 3d_data277.txt.meta │ │ ├── 3d_data278.txt │ │ ├── 3d_data278.txt.meta │ │ ├── 3d_data279.txt │ │ ├── 3d_data279.txt.meta │ │ ├── 3d_data28.txt │ │ ├── 3d_data28.txt.meta │ │ ├── 3d_data280.txt │ │ ├── 3d_data280.txt.meta │ │ ├── 3d_data281.txt │ │ ├── 3d_data281.txt.meta │ │ ├── 3d_data282.txt │ │ ├── 3d_data282.txt.meta │ │ ├── 3d_data283.txt │ │ ├── 3d_data283.txt.meta │ │ ├── 3d_data284.txt │ │ ├── 3d_data284.txt.meta │ │ ├── 3d_data285.txt │ │ ├── 3d_data285.txt.meta │ │ ├── 3d_data286.txt │ │ ├── 3d_data286.txt.meta │ │ ├── 3d_data287.txt │ │ ├── 3d_data287.txt.meta │ │ ├── 3d_data288.txt │ │ ├── 3d_data288.txt.meta │ │ ├── 3d_data289.txt │ │ ├── 3d_data289.txt.meta │ │ ├── 3d_data29.txt │ │ ├── 3d_data29.txt.meta │ │ ├── 3d_data290.txt │ │ ├── 3d_data290.txt.meta │ │ ├── 3d_data291.txt │ │ ├── 3d_data291.txt.meta │ │ ├── 3d_data292.txt │ │ ├── 3d_data292.txt.meta │ │ ├── 3d_data293.txt │ │ ├── 3d_data293.txt.meta │ │ ├── 3d_data294.txt │ │ ├── 3d_data294.txt.meta │ │ ├── 3d_data295.txt │ │ ├── 3d_data295.txt.meta │ │ ├── 3d_data296.txt │ │ ├── 3d_data296.txt.meta │ │ ├── 3d_data297.txt │ │ ├── 3d_data297.txt.meta │ │ ├── 3d_data298.txt │ │ ├── 3d_data298.txt.meta │ │ ├── 3d_data299.txt │ │ ├── 3d_data299.txt.meta │ │ ├── 3d_data3.txt │ │ ├── 3d_data3.txt.meta │ │ ├── 3d_data30.txt │ │ ├── 3d_data30.txt.meta │ │ ├── 3d_data300.txt │ │ ├── 3d_data300.txt.meta │ │ ├── 3d_data301.txt │ │ ├── 3d_data301.txt.meta │ │ ├── 3d_data302.txt │ │ ├── 3d_data302.txt.meta │ │ ├── 3d_data303.txt │ │ ├── 3d_data303.txt.meta │ │ ├── 3d_data304.txt │ │ ├── 3d_data304.txt.meta │ │ ├── 3d_data305.txt │ │ ├── 3d_data305.txt.meta │ │ ├── 3d_data306.txt │ │ ├── 3d_data306.txt.meta │ │ ├── 3d_data307.txt │ │ ├── 3d_data307.txt.meta │ │ ├── 3d_data308.txt │ │ ├── 3d_data308.txt.meta │ │ ├── 3d_data309.txt │ │ ├── 3d_data309.txt.meta │ │ ├── 3d_data31.txt │ │ ├── 3d_data31.txt.meta │ │ ├── 3d_data310.txt │ │ ├── 3d_data310.txt.meta │ │ ├── 3d_data311.txt │ │ ├── 3d_data311.txt.meta │ │ ├── 3d_data312.txt │ │ ├── 3d_data312.txt.meta │ │ ├── 3d_data313.txt │ │ ├── 3d_data313.txt.meta │ │ ├── 3d_data314.txt │ │ ├── 3d_data314.txt.meta │ │ ├── 3d_data315.txt │ │ ├── 3d_data315.txt.meta │ │ ├── 3d_data316.txt │ │ ├── 3d_data316.txt.meta │ │ ├── 3d_data317.txt │ │ ├── 3d_data317.txt.meta │ │ ├── 3d_data318.txt │ │ ├── 3d_data318.txt.meta │ │ ├── 3d_data319.txt │ │ ├── 3d_data319.txt.meta │ │ ├── 3d_data32.txt │ │ ├── 3d_data32.txt.meta │ │ ├── 3d_data320.txt │ │ ├── 3d_data320.txt.meta │ │ ├── 3d_data321.txt │ │ ├── 3d_data321.txt.meta │ │ ├── 3d_data322.txt │ │ ├── 3d_data322.txt.meta │ │ ├── 3d_data323.txt │ │ ├── 3d_data323.txt.meta │ │ ├── 3d_data324.txt │ │ ├── 3d_data324.txt.meta │ │ ├── 3d_data325.txt │ │ ├── 3d_data325.txt.meta │ │ ├── 3d_data326.txt │ │ ├── 3d_data326.txt.meta │ │ ├── 3d_data327.txt │ │ ├── 3d_data327.txt.meta │ │ ├── 3d_data328.txt │ │ ├── 3d_data328.txt.meta │ │ ├── 3d_data329.txt │ │ ├── 3d_data329.txt.meta │ │ ├── 3d_data33.txt │ │ ├── 3d_data33.txt.meta │ │ ├── 3d_data330.txt │ │ ├── 3d_data330.txt.meta │ │ ├── 3d_data331.txt │ │ ├── 3d_data331.txt.meta │ │ ├── 3d_data332.txt │ │ ├── 3d_data332.txt.meta │ │ ├── 3d_data333.txt │ │ ├── 3d_data333.txt.meta │ │ ├── 3d_data334.txt │ │ ├── 3d_data334.txt.meta │ │ ├── 3d_data335.txt │ │ ├── 3d_data335.txt.meta │ │ ├── 3d_data336.txt │ │ ├── 3d_data336.txt.meta │ │ ├── 3d_data337.txt │ │ ├── 3d_data337.txt.meta │ │ ├── 3d_data338.txt │ │ ├── 3d_data338.txt.meta │ │ ├── 3d_data339.txt │ │ ├── 3d_data339.txt.meta │ │ ├── 3d_data34.txt │ │ ├── 3d_data34.txt.meta │ │ ├── 3d_data340.txt │ │ ├── 3d_data340.txt.meta │ │ ├── 3d_data341.txt │ │ ├── 3d_data341.txt.meta │ │ ├── 3d_data342.txt │ │ ├── 3d_data342.txt.meta │ │ ├── 3d_data343.txt │ │ ├── 3d_data343.txt.meta │ │ ├── 3d_data344.txt │ │ ├── 3d_data344.txt.meta │ │ ├── 3d_data345.txt │ │ ├── 3d_data345.txt.meta │ │ ├── 3d_data346.txt │ │ ├── 3d_data346.txt.meta │ │ ├── 3d_data347.txt │ │ ├── 3d_data347.txt.meta │ │ ├── 3d_data348.txt │ │ ├── 3d_data348.txt.meta │ │ ├── 3d_data349.txt │ │ ├── 3d_data349.txt.meta │ │ ├── 3d_data35.txt │ │ ├── 3d_data35.txt.meta │ │ ├── 3d_data350.txt │ │ ├── 3d_data350.txt.meta │ │ ├── 3d_data351.txt │ │ ├── 3d_data351.txt.meta │ │ ├── 3d_data352.txt │ │ ├── 3d_data352.txt.meta │ │ ├── 3d_data353.txt │ │ ├── 3d_data353.txt.meta │ │ ├── 3d_data354.txt │ │ ├── 3d_data354.txt.meta │ │ ├── 3d_data355.txt │ │ ├── 3d_data355.txt.meta │ │ ├── 3d_data356.txt │ │ ├── 3d_data356.txt.meta │ │ ├── 3d_data357.txt │ │ ├── 3d_data357.txt.meta │ │ ├── 3d_data358.txt │ │ ├── 3d_data358.txt.meta │ │ ├── 3d_data359.txt │ │ ├── 3d_data359.txt.meta │ │ ├── 3d_data36.txt │ │ ├── 3d_data36.txt.meta │ │ ├── 3d_data360.txt │ │ ├── 3d_data360.txt.meta │ │ ├── 3d_data361.txt │ │ ├── 3d_data361.txt.meta │ │ ├── 3d_data362.txt │ │ ├── 3d_data362.txt.meta │ │ ├── 3d_data363.txt │ │ ├── 3d_data363.txt.meta │ │ ├── 3d_data364.txt │ │ ├── 3d_data364.txt.meta │ │ ├── 3d_data365.txt │ │ ├── 3d_data365.txt.meta │ │ ├── 3d_data366.txt │ │ ├── 3d_data366.txt.meta │ │ ├── 3d_data367.txt │ │ ├── 3d_data367.txt.meta │ │ ├── 3d_data368.txt │ │ ├── 3d_data368.txt.meta │ │ ├── 3d_data369.txt │ │ ├── 3d_data369.txt.meta │ │ ├── 3d_data37.txt │ │ ├── 3d_data37.txt.meta │ │ ├── 3d_data370.txt │ │ ├── 3d_data370.txt.meta │ │ ├── 3d_data371.txt │ │ ├── 3d_data371.txt.meta │ │ ├── 3d_data372.txt │ │ ├── 3d_data372.txt.meta │ │ ├── 3d_data373.txt │ │ ├── 3d_data373.txt.meta │ │ ├── 3d_data374.txt │ │ ├── 3d_data374.txt.meta │ │ ├── 3d_data375.txt │ │ ├── 3d_data375.txt.meta │ │ ├── 3d_data376.txt │ │ ├── 3d_data376.txt.meta │ │ ├── 3d_data377.txt │ │ ├── 3d_data377.txt.meta │ │ ├── 3d_data378.txt │ │ ├── 3d_data378.txt.meta │ │ ├── 3d_data379.txt │ │ ├── 3d_data379.txt.meta │ │ ├── 3d_data38.txt │ │ ├── 3d_data38.txt.meta │ │ ├── 3d_data380.txt │ │ ├── 3d_data380.txt.meta │ │ ├── 3d_data381.txt │ │ ├── 3d_data381.txt.meta │ │ ├── 3d_data382.txt │ │ ├── 3d_data382.txt.meta │ │ ├── 3d_data383.txt │ │ ├── 3d_data383.txt.meta │ │ ├── 3d_data384.txt │ │ ├── 3d_data384.txt.meta │ │ ├── 3d_data385.txt │ │ ├── 3d_data385.txt.meta │ │ ├── 3d_data386.txt │ │ ├── 3d_data386.txt.meta │ │ ├── 3d_data387.txt │ │ ├── 3d_data387.txt.meta │ │ ├── 3d_data388.txt │ │ ├── 3d_data388.txt.meta │ │ ├── 3d_data389.txt │ │ ├── 3d_data389.txt.meta │ │ ├── 3d_data39.txt │ │ ├── 3d_data39.txt.meta │ │ ├── 3d_data390.txt │ │ ├── 3d_data390.txt.meta │ │ ├── 3d_data391.txt │ │ ├── 3d_data391.txt.meta │ │ ├── 3d_data392.txt │ │ ├── 3d_data392.txt.meta │ │ ├── 3d_data393.txt │ │ ├── 3d_data393.txt.meta │ │ ├── 3d_data394.txt │ │ ├── 3d_data394.txt.meta │ │ ├── 3d_data395.txt │ │ ├── 3d_data395.txt.meta │ │ ├── 3d_data396.txt │ │ ├── 3d_data396.txt.meta │ │ ├── 3d_data397.txt │ │ ├── 3d_data397.txt.meta │ │ ├── 3d_data398.txt │ │ ├── 3d_data398.txt.meta │ │ ├── 3d_data399.txt │ │ ├── 3d_data399.txt.meta │ │ ├── 3d_data4.txt │ │ ├── 3d_data4.txt.meta │ │ ├── 3d_data40.txt │ │ ├── 3d_data40.txt.meta │ │ ├── 3d_data400.txt │ │ ├── 3d_data400.txt.meta │ │ ├── 3d_data401.txt │ │ ├── 3d_data401.txt.meta │ │ ├── 3d_data402.txt │ │ ├── 3d_data402.txt.meta │ │ ├── 3d_data403.txt │ │ ├── 3d_data403.txt.meta │ │ ├── 3d_data404.txt │ │ ├── 3d_data404.txt.meta │ │ ├── 3d_data405.txt │ │ ├── 3d_data405.txt.meta │ │ ├── 3d_data406.txt │ │ ├── 3d_data406.txt.meta │ │ ├── 3d_data407.txt │ │ ├── 3d_data407.txt.meta │ │ ├── 3d_data408.txt │ │ ├── 3d_data408.txt.meta │ │ ├── 3d_data409.txt │ │ ├── 3d_data409.txt.meta │ │ ├── 3d_data41.txt │ │ ├── 3d_data41.txt.meta │ │ ├── 3d_data410.txt │ │ ├── 3d_data410.txt.meta │ │ ├── 3d_data411.txt │ │ ├── 3d_data411.txt.meta │ │ ├── 3d_data412.txt │ │ ├── 3d_data412.txt.meta │ │ ├── 3d_data413.txt │ │ ├── 3d_data413.txt.meta │ │ ├── 3d_data414.txt │ │ ├── 3d_data414.txt.meta │ │ ├── 3d_data415.txt │ │ ├── 3d_data415.txt.meta │ │ ├── 3d_data416.txt │ │ ├── 3d_data416.txt.meta │ │ ├── 3d_data417.txt │ │ ├── 3d_data417.txt.meta │ │ ├── 3d_data418.txt │ │ ├── 3d_data418.txt.meta │ │ ├── 3d_data419.txt │ │ ├── 3d_data419.txt.meta │ │ ├── 3d_data42.txt │ │ ├── 3d_data42.txt.meta │ │ ├── 3d_data420.txt │ │ ├── 3d_data420.txt.meta │ │ ├── 3d_data421.txt │ │ ├── 3d_data421.txt.meta │ │ ├── 3d_data422.txt │ │ ├── 3d_data422.txt.meta │ │ ├── 3d_data423.txt │ │ ├── 3d_data423.txt.meta │ │ ├── 3d_data424.txt │ │ ├── 3d_data424.txt.meta │ │ ├── 3d_data425.txt │ │ ├── 3d_data425.txt.meta │ │ ├── 3d_data426.txt │ │ ├── 3d_data426.txt.meta │ │ ├── 3d_data427.txt │ │ ├── 3d_data427.txt.meta │ │ ├── 3d_data428.txt │ │ ├── 3d_data428.txt.meta │ │ ├── 3d_data429.txt │ │ ├── 3d_data429.txt.meta │ │ ├── 3d_data43.txt │ │ ├── 3d_data43.txt.meta │ │ ├── 3d_data430.txt │ │ ├── 3d_data430.txt.meta │ │ ├── 3d_data431.txt │ │ ├── 3d_data431.txt.meta │ │ ├── 3d_data432.txt │ │ ├── 3d_data432.txt.meta │ │ ├── 3d_data433.txt │ │ ├── 3d_data433.txt.meta │ │ ├── 3d_data434.txt │ │ ├── 3d_data434.txt.meta │ │ ├── 3d_data435.txt │ │ ├── 3d_data435.txt.meta │ │ ├── 3d_data436.txt │ │ ├── 3d_data436.txt.meta │ │ ├── 3d_data437.txt │ │ ├── 3d_data437.txt.meta │ │ ├── 3d_data438.txt │ │ ├── 3d_data438.txt.meta │ │ ├── 3d_data439.txt │ │ ├── 3d_data439.txt.meta │ │ ├── 3d_data44.txt │ │ ├── 3d_data44.txt.meta │ │ ├── 3d_data440.txt │ │ ├── 3d_data440.txt.meta │ │ ├── 3d_data441.txt │ │ ├── 3d_data441.txt.meta │ │ ├── 3d_data442.txt │ │ ├── 3d_data442.txt.meta │ │ ├── 3d_data443.txt │ │ ├── 3d_data443.txt.meta │ │ ├── 3d_data444.txt │ │ ├── 3d_data444.txt.meta │ │ ├── 3d_data445.txt │ │ ├── 3d_data445.txt.meta │ │ ├── 3d_data446.txt │ │ ├── 3d_data446.txt.meta │ │ ├── 3d_data447.txt │ │ ├── 3d_data447.txt.meta │ │ ├── 3d_data448.txt │ │ ├── 3d_data448.txt.meta │ │ ├── 3d_data449.txt │ │ ├── 3d_data449.txt.meta │ │ ├── 3d_data45.txt │ │ ├── 3d_data45.txt.meta │ │ ├── 3d_data450.txt │ │ ├── 3d_data450.txt.meta │ │ ├── 3d_data451.txt │ │ ├── 3d_data451.txt.meta │ │ ├── 3d_data452.txt │ │ ├── 3d_data452.txt.meta │ │ ├── 3d_data453.txt │ │ ├── 3d_data453.txt.meta │ │ ├── 3d_data454.txt │ │ ├── 3d_data454.txt.meta │ │ ├── 3d_data455.txt │ │ ├── 3d_data455.txt.meta │ │ ├── 3d_data456.txt │ │ ├── 3d_data456.txt.meta │ │ ├── 3d_data457.txt │ │ ├── 3d_data457.txt.meta │ │ ├── 3d_data458.txt │ │ ├── 3d_data458.txt.meta │ │ ├── 3d_data459.txt │ │ ├── 3d_data459.txt.meta │ │ ├── 3d_data46.txt │ │ ├── 3d_data46.txt.meta │ │ ├── 3d_data460.txt │ │ ├── 3d_data460.txt.meta │ │ ├── 3d_data461.txt │ │ ├── 3d_data461.txt.meta │ │ ├── 3d_data462.txt │ │ ├── 3d_data462.txt.meta │ │ ├── 3d_data463.txt │ │ ├── 3d_data463.txt.meta │ │ ├── 3d_data464.txt │ │ ├── 3d_data464.txt.meta │ │ ├── 3d_data465.txt │ │ ├── 3d_data465.txt.meta │ │ ├── 3d_data466.txt │ │ ├── 3d_data466.txt.meta │ │ ├── 3d_data467.txt │ │ ├── 3d_data467.txt.meta │ │ ├── 3d_data468.txt │ │ ├── 3d_data468.txt.meta │ │ ├── 3d_data469.txt │ │ ├── 3d_data469.txt.meta │ │ ├── 3d_data47.txt │ │ ├── 3d_data47.txt.meta │ │ ├── 3d_data470.txt │ │ ├── 3d_data470.txt.meta │ │ ├── 3d_data471.txt │ │ ├── 3d_data471.txt.meta │ │ ├── 3d_data472.txt │ │ ├── 3d_data472.txt.meta │ │ ├── 3d_data473.txt │ │ ├── 3d_data473.txt.meta │ │ ├── 3d_data474.txt │ │ ├── 3d_data474.txt.meta │ │ ├── 3d_data475.txt │ │ ├── 3d_data475.txt.meta │ │ ├── 3d_data476.txt │ │ ├── 3d_data476.txt.meta │ │ ├── 3d_data477.txt │ │ ├── 3d_data477.txt.meta │ │ ├── 3d_data478.txt │ │ ├── 3d_data478.txt.meta │ │ ├── 3d_data479.txt │ │ ├── 3d_data479.txt.meta │ │ ├── 3d_data48.txt │ │ ├── 3d_data48.txt.meta │ │ ├── 3d_data480.txt │ │ ├── 3d_data480.txt.meta │ │ ├── 3d_data481.txt │ │ ├── 3d_data481.txt.meta │ │ ├── 3d_data482.txt │ │ ├── 3d_data482.txt.meta │ │ ├── 3d_data483.txt │ │ ├── 3d_data483.txt.meta │ │ ├── 3d_data484.txt │ │ ├── 3d_data484.txt.meta │ │ ├── 3d_data485.txt │ │ ├── 3d_data485.txt.meta │ │ ├── 3d_data486.txt │ │ ├── 3d_data486.txt.meta │ │ ├── 3d_data487.txt │ │ ├── 3d_data487.txt.meta │ │ ├── 3d_data488.txt │ │ ├── 3d_data488.txt.meta │ │ ├── 3d_data489.txt │ │ ├── 3d_data489.txt.meta │ │ ├── 3d_data49.txt │ │ ├── 3d_data49.txt.meta │ │ ├── 3d_data490.txt │ │ ├── 3d_data490.txt.meta │ │ ├── 3d_data491.txt │ │ ├── 3d_data491.txt.meta │ │ ├── 3d_data492.txt │ │ ├── 3d_data492.txt.meta │ │ ├── 3d_data493.txt │ │ ├── 3d_data493.txt.meta │ │ ├── 3d_data494.txt │ │ ├── 3d_data494.txt.meta │ │ ├── 3d_data495.txt │ │ ├── 3d_data495.txt.meta │ │ ├── 3d_data496.txt │ │ ├── 3d_data496.txt.meta │ │ ├── 3d_data497.txt │ │ ├── 3d_data497.txt.meta │ │ ├── 3d_data498.txt │ │ ├── 3d_data498.txt.meta │ │ ├── 3d_data499.txt │ │ ├── 3d_data499.txt.meta │ │ ├── 3d_data5.txt │ │ ├── 3d_data5.txt.meta │ │ ├── 3d_data50.txt │ │ ├── 3d_data50.txt.meta │ │ ├── 3d_data500.txt │ │ ├── 3d_data500.txt.meta │ │ ├── 3d_data501.txt │ │ ├── 3d_data501.txt.meta │ │ ├── 3d_data502.txt │ │ ├── 3d_data502.txt.meta │ │ ├── 3d_data503.txt │ │ ├── 3d_data503.txt.meta │ │ ├── 3d_data504.txt │ │ ├── 3d_data504.txt.meta │ │ ├── 3d_data505.txt │ │ ├── 3d_data505.txt.meta │ │ ├── 3d_data506.txt │ │ ├── 3d_data506.txt.meta │ │ ├── 3d_data507.txt │ │ ├── 3d_data507.txt.meta │ │ ├── 3d_data508.txt │ │ ├── 3d_data508.txt.meta │ │ ├── 3d_data509.txt │ │ ├── 3d_data509.txt.meta │ │ ├── 3d_data51.txt │ │ ├── 3d_data51.txt.meta │ │ ├── 3d_data510.txt │ │ ├── 3d_data510.txt.meta │ │ ├── 3d_data511.txt │ │ ├── 3d_data511.txt.meta │ │ ├── 3d_data512.txt │ │ ├── 3d_data512.txt.meta │ │ ├── 3d_data513.txt │ │ ├── 3d_data513.txt.meta │ │ ├── 3d_data514.txt │ │ ├── 3d_data514.txt.meta │ │ ├── 3d_data515.txt │ │ ├── 3d_data515.txt.meta │ │ ├── 3d_data516.txt │ │ ├── 3d_data516.txt.meta │ │ ├── 3d_data517.txt │ │ ├── 3d_data517.txt.meta │ │ ├── 3d_data518.txt │ │ ├── 3d_data518.txt.meta │ │ ├── 3d_data519.txt │ │ ├── 3d_data519.txt.meta │ │ ├── 3d_data52.txt │ │ ├── 3d_data52.txt.meta │ │ ├── 3d_data520.txt │ │ ├── 3d_data520.txt.meta │ │ ├── 3d_data521.txt │ │ ├── 3d_data521.txt.meta │ │ ├── 3d_data522.txt │ │ ├── 3d_data522.txt.meta │ │ ├── 3d_data523.txt │ │ ├── 3d_data523.txt.meta │ │ ├── 3d_data524.txt │ │ ├── 3d_data524.txt.meta │ │ ├── 3d_data525.txt │ │ ├── 3d_data525.txt.meta │ │ ├── 3d_data526.txt │ │ ├── 3d_data526.txt.meta │ │ ├── 3d_data527.txt │ │ ├── 3d_data527.txt.meta │ │ ├── 3d_data528.txt │ │ ├── 3d_data528.txt.meta │ │ ├── 3d_data529.txt │ │ ├── 3d_data529.txt.meta │ │ ├── 3d_data53.txt │ │ ├── 3d_data53.txt.meta │ │ ├── 3d_data530.txt │ │ ├── 3d_data530.txt.meta │ │ ├── 3d_data531.txt │ │ ├── 3d_data531.txt.meta │ │ ├── 3d_data532.txt │ │ ├── 3d_data532.txt.meta │ │ ├── 3d_data533.txt │ │ ├── 3d_data533.txt.meta │ │ ├── 3d_data534.txt │ │ ├── 3d_data534.txt.meta │ │ ├── 3d_data535.txt │ │ ├── 3d_data535.txt.meta │ │ ├── 3d_data536.txt │ │ ├── 3d_data536.txt.meta │ │ ├── 3d_data537.txt │ │ ├── 3d_data537.txt.meta │ │ ├── 3d_data538.txt │ │ ├── 3d_data538.txt.meta │ │ ├── 3d_data539.txt │ │ ├── 3d_data539.txt.meta │ │ ├── 3d_data54.txt │ │ ├── 3d_data54.txt.meta │ │ ├── 3d_data540.txt │ │ ├── 3d_data540.txt.meta │ │ ├── 3d_data541.txt │ │ ├── 3d_data541.txt.meta │ │ ├── 3d_data542.txt │ │ ├── 3d_data542.txt.meta │ │ ├── 3d_data543.txt │ │ ├── 3d_data543.txt.meta │ │ ├── 3d_data544.txt │ │ ├── 3d_data544.txt.meta │ │ ├── 3d_data545.txt │ │ ├── 3d_data545.txt.meta │ │ ├── 3d_data546.txt │ │ ├── 3d_data546.txt.meta │ │ ├── 3d_data547.txt │ │ ├── 3d_data547.txt.meta │ │ ├── 3d_data548.txt │ │ ├── 3d_data548.txt.meta │ │ ├── 3d_data549.txt │ │ ├── 3d_data549.txt.meta │ │ ├── 3d_data55.txt │ │ ├── 3d_data55.txt.meta │ │ ├── 3d_data550.txt │ │ ├── 3d_data550.txt.meta │ │ ├── 3d_data551.txt │ │ ├── 3d_data551.txt.meta │ │ ├── 3d_data552.txt │ │ ├── 3d_data552.txt.meta │ │ ├── 3d_data553.txt │ │ ├── 3d_data553.txt.meta │ │ ├── 3d_data554.txt │ │ ├── 3d_data554.txt.meta │ │ ├── 3d_data555.txt │ │ ├── 3d_data555.txt.meta │ │ ├── 3d_data556.txt │ │ ├── 3d_data556.txt.meta │ │ ├── 3d_data557.txt │ │ ├── 3d_data557.txt.meta │ │ ├── 3d_data558.txt │ │ ├── 3d_data558.txt.meta │ │ ├── 3d_data559.txt │ │ ├── 3d_data559.txt.meta │ │ ├── 3d_data56.txt │ │ ├── 3d_data56.txt.meta │ │ ├── 3d_data560.txt │ │ ├── 3d_data560.txt.meta │ │ ├── 3d_data561.txt │ │ ├── 3d_data561.txt.meta │ │ ├── 3d_data562.txt │ │ ├── 3d_data562.txt.meta │ │ ├── 3d_data563.txt │ │ ├── 3d_data563.txt.meta │ │ ├── 3d_data564.txt │ │ ├── 3d_data564.txt.meta │ │ ├── 3d_data565.txt │ │ ├── 3d_data565.txt.meta │ │ ├── 3d_data566.txt │ │ ├── 3d_data566.txt.meta │ │ ├── 3d_data567.txt │ │ ├── 3d_data567.txt.meta │ │ ├── 3d_data568.txt │ │ ├── 3d_data568.txt.meta │ │ ├── 3d_data569.txt │ │ ├── 3d_data569.txt.meta │ │ ├── 3d_data57.txt │ │ ├── 3d_data57.txt.meta │ │ ├── 3d_data570.txt │ │ ├── 3d_data570.txt.meta │ │ ├── 3d_data571.txt │ │ ├── 3d_data571.txt.meta │ │ ├── 3d_data572.txt │ │ ├── 3d_data572.txt.meta │ │ ├── 3d_data573.txt │ │ ├── 3d_data573.txt.meta │ │ ├── 3d_data574.txt │ │ ├── 3d_data574.txt.meta │ │ ├── 3d_data575.txt │ │ ├── 3d_data575.txt.meta │ │ ├── 3d_data576.txt │ │ ├── 3d_data576.txt.meta │ │ ├── 3d_data577.txt │ │ ├── 3d_data577.txt.meta │ │ ├── 3d_data578.txt │ │ ├── 3d_data578.txt.meta │ │ ├── 3d_data579.txt │ │ ├── 3d_data579.txt.meta │ │ ├── 3d_data58.txt │ │ ├── 3d_data58.txt.meta │ │ ├── 3d_data580.txt │ │ ├── 3d_data580.txt.meta │ │ ├── 3d_data581.txt │ │ ├── 3d_data581.txt.meta │ │ ├── 3d_data582.txt │ │ ├── 3d_data582.txt.meta │ │ ├── 3d_data583.txt │ │ ├── 3d_data583.txt.meta │ │ ├── 3d_data584.txt │ │ ├── 3d_data584.txt.meta │ │ ├── 3d_data585.txt │ │ ├── 3d_data585.txt.meta │ │ ├── 3d_data586.txt │ │ ├── 3d_data586.txt.meta │ │ ├── 3d_data587.txt │ │ ├── 3d_data587.txt.meta │ │ ├── 3d_data588.txt │ │ ├── 3d_data588.txt.meta │ │ ├── 3d_data589.txt │ │ ├── 3d_data589.txt.meta │ │ ├── 3d_data59.txt │ │ ├── 3d_data59.txt.meta │ │ ├── 3d_data590.txt │ │ ├── 3d_data590.txt.meta │ │ ├── 3d_data591.txt │ │ ├── 3d_data591.txt.meta │ │ ├── 3d_data592.txt │ │ ├── 3d_data592.txt.meta │ │ ├── 3d_data593.txt │ │ ├── 3d_data593.txt.meta │ │ ├── 3d_data594.txt │ │ ├── 3d_data594.txt.meta │ │ ├── 3d_data595.txt │ │ ├── 3d_data595.txt.meta │ │ ├── 3d_data596.txt │ │ ├── 3d_data596.txt.meta │ │ ├── 3d_data597.txt │ │ ├── 3d_data597.txt.meta │ │ ├── 3d_data598.txt │ │ ├── 3d_data598.txt.meta │ │ ├── 3d_data599.txt │ │ ├── 3d_data599.txt.meta │ │ ├── 3d_data6.txt │ │ ├── 3d_data6.txt.meta │ │ ├── 3d_data60.txt │ │ ├── 3d_data60.txt.meta │ │ ├── 3d_data61.txt │ │ ├── 3d_data61.txt.meta │ │ ├── 3d_data62.txt │ │ ├── 3d_data62.txt.meta │ │ ├── 3d_data63.txt │ │ ├── 3d_data63.txt.meta │ │ ├── 3d_data64.txt │ │ ├── 3d_data64.txt.meta │ │ ├── 3d_data65.txt │ │ ├── 3d_data65.txt.meta │ │ ├── 3d_data66.txt │ │ ├── 3d_data66.txt.meta │ │ ├── 3d_data67.txt │ │ ├── 3d_data67.txt.meta │ │ ├── 3d_data68.txt │ │ ├── 3d_data68.txt.meta │ │ ├── 3d_data69.txt │ │ ├── 3d_data69.txt.meta │ │ ├── 3d_data7.txt │ │ ├── 3d_data7.txt.meta │ │ ├── 3d_data70.txt │ │ ├── 3d_data70.txt.meta │ │ ├── 3d_data71.txt │ │ ├── 3d_data71.txt.meta │ │ ├── 3d_data72.txt │ │ ├── 3d_data72.txt.meta │ │ ├── 3d_data73.txt │ │ ├── 3d_data73.txt.meta │ │ ├── 3d_data74.txt │ │ ├── 3d_data74.txt.meta │ │ ├── 3d_data75.txt │ │ ├── 3d_data75.txt.meta │ │ ├── 3d_data76.txt │ │ ├── 3d_data76.txt.meta │ │ ├── 3d_data77.txt │ │ ├── 3d_data77.txt.meta │ │ ├── 3d_data78.txt │ │ ├── 3d_data78.txt.meta │ │ ├── 3d_data79.txt │ │ ├── 3d_data79.txt.meta │ │ ├── 3d_data8.txt │ │ ├── 3d_data8.txt.meta │ │ ├── 3d_data80.txt │ │ ├── 3d_data80.txt.meta │ │ ├── 3d_data81.txt │ │ ├── 3d_data81.txt.meta │ │ ├── 3d_data82.txt │ │ ├── 3d_data82.txt.meta │ │ ├── 3d_data83.txt │ │ ├── 3d_data83.txt.meta │ │ ├── 3d_data84.txt │ │ ├── 3d_data84.txt.meta │ │ ├── 3d_data85.txt │ │ ├── 3d_data85.txt.meta │ │ ├── 3d_data86.txt │ │ ├── 3d_data86.txt.meta │ │ ├── 3d_data87.txt │ │ ├── 3d_data87.txt.meta │ │ ├── 3d_data88.txt │ │ ├── 3d_data88.txt.meta │ │ ├── 3d_data89.txt │ │ ├── 3d_data89.txt.meta │ │ ├── 3d_data9.txt │ │ ├── 3d_data9.txt.meta │ │ ├── 3d_data90.txt │ │ ├── 3d_data90.txt.meta │ │ ├── 3d_data91.txt │ │ ├── 3d_data91.txt.meta │ │ ├── 3d_data92.txt │ │ ├── 3d_data92.txt.meta │ │ ├── 3d_data93.txt │ │ ├── 3d_data93.txt.meta │ │ ├── 3d_data94.txt │ │ ├── 3d_data94.txt.meta │ │ ├── 3d_data95.txt │ │ ├── 3d_data95.txt.meta │ │ ├── 3d_data96.txt │ │ ├── 3d_data96.txt.meta │ │ ├── 3d_data97.txt │ │ ├── 3d_data97.txt.meta │ │ ├── 3d_data98.txt │ │ ├── 3d_data98.txt.meta │ │ ├── 3d_data99.txt │ │ └── 3d_data99.txt.meta │ ├── main.unity │ └── main.unity.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ └── VFXManager.asset ├── version1.0 demo.png ├── webcam3d1.py └── webcam_smoothed_real_time.png /3d pose App/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/.dockerignore -------------------------------------------------------------------------------- /3d pose App/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/.gitattributes -------------------------------------------------------------------------------- /3d pose App/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/CMakeLists.txt -------------------------------------------------------------------------------- /3d pose App/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/Dockerfile -------------------------------------------------------------------------------- /3d pose App/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/LICENSE -------------------------------------------------------------------------------- /3d pose App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/README.md -------------------------------------------------------------------------------- /3d pose App/cai.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/cai.mp4 -------------------------------------------------------------------------------- /3d pose App/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/docker/Dockerfile -------------------------------------------------------------------------------- /3d pose App/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/docker/README.md -------------------------------------------------------------------------------- /3d pose App/launch/demo_video.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/launch/demo_video.launch -------------------------------------------------------------------------------- /3d pose App/models/numpy/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/models/numpy/download.sh -------------------------------------------------------------------------------- /3d pose App/msg/BodyPartElm.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/msg/BodyPartElm.msg -------------------------------------------------------------------------------- /3d pose App/msg/Person.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/msg/Person.msg -------------------------------------------------------------------------------- /3d pose App/msg/Persons.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/msg/Persons.msg -------------------------------------------------------------------------------- /3d pose App/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/package.xml -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/pyqtgraph-develop/.mailmap -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/pyqtgraph-develop/CHANGELOG -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/pyqtgraph-develop/README.md -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/examples/__init__.py: -------------------------------------------------------------------------------- 1 | from .__main__ import run 2 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/examples/optics/__init__.py: -------------------------------------------------------------------------------- 1 | from .pyoptic import * -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/examples/relativity/__init__.py: -------------------------------------------------------------------------------- 1 | from .relativity import * 2 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/GraphicsScene/__init__.py: -------------------------------------------------------------------------------- 1 | from .GraphicsScene import * 2 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/exporters/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/metaarray/__init__.py: -------------------------------------------------------------------------------- 1 | from .MetaArray import * 2 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/opengl/items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/util/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/pyqtgraph/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/pyqtgraph-develop/setup.py -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/pyqtgraph-develop/test.py -------------------------------------------------------------------------------- /3d pose App/pyqtgraph-develop/tools/pyuic5: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import PyQt5.uic.pyuic 3 | -------------------------------------------------------------------------------- /3d pose App/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/requirements.txt -------------------------------------------------------------------------------- /3d pose App/scripts/broadcaster_ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/scripts/broadcaster_ros.py -------------------------------------------------------------------------------- /3d pose App/scripts/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/scripts/visualization.py -------------------------------------------------------------------------------- /3d pose App/show result online/使い方.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/show result online/使い方.txt -------------------------------------------------------------------------------- /3d pose App/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/src/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/common.py -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data0.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data1.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data10.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data100.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data101.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data102.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data103.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data104.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data105.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data106.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data107.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data108.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data109.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data11.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data110.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data111.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data112.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data113.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data114.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data115.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data116.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data117.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data118.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data119.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data12.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data120.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data121.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data122.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data123.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data124.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data125.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data126.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data127.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data128.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data129.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data13.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data130.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data131.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data132.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data133.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data134.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data135.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data136.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data137.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data138.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data139.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data14.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data140.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data141.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data142.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data143.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data144.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data145.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data146.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data147.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data148.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data149.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data15.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data150.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data151.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data152.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data153.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data154.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data155.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data156.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data157.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data158.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data159.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data16.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data160.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data161.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data162.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data163.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data164.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data165.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data165.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data166.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data167.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data168.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data169.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data17.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data170.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data171.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data172.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data173.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data174.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data175.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data176.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data177.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data178.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data179.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data18.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data180.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data181.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data182.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data183.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data184.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data185.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data186.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data187.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data188.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data189.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data189.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data19.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data190.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data191.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data192.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data193.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data194.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data195.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data196.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data196.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data197.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data198.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data199.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data2.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data20.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data200.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data201.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data202.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data202.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data203.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data204.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data205.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data206.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data207.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data208.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data209.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data209.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data21.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data210.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data211.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data212.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data213.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data214.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data215.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data216.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data217.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data218.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data219.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data22.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data220.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data221.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data222.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data223.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data223.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data224.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data225.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data226.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data227.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data227.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data228.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data229.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data23.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data230.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data231.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data232.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data232.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data233.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data233.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data234.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data235.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data236.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data237.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data237.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data238.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data238.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data239.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data239.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data24.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data240.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data240.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data241.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data241.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data242.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data242.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data243.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data243.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data244.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data245.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data245.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data246.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data246.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data247.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data247.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data248.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data249.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data249.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data25.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data250.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data251.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data252.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data253.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data254.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data255.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data256.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data257.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data258.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data259.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data26.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data260.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data261.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data262.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data262.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data263.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data263.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data264.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data265.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data266.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data267.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data267.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data268.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data269.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data269.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data27.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data270.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data270.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data271.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data271.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data272.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data272.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data273.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data273.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data274.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data274.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data275.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data275.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data276.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data276.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data277.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data277.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data278.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data278.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data279.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data279.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data28.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data280.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data280.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data281.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data281.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data282.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data282.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data283.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data283.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data284.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data284.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data285.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data285.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data286.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data286.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data287.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data287.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data288.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data288.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data289.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data289.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data29.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data290.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data291.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data291.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data292.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data292.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data293.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data293.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data294.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data294.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data295.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data295.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data296.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data296.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data297.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data297.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data298.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data298.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data299.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data299.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data3.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data30.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data300.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data300.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data301.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data302.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data302.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data303.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data303.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data304.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data304.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data305.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data305.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data306.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data306.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data307.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data308.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data308.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data309.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data309.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data31.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data310.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data310.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data311.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data312.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data312.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data313.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data313.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data314.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data314.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data315.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data315.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data316.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data316.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data317.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data317.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data318.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data318.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data319.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data319.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data32.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data320.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data321.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data322.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data322.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data323.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data323.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data324.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data324.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data325.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data325.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data326.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data326.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data327.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data327.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data328.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data328.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data329.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data329.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data33.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data330.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data330.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data331.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data331.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data332.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data332.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data333.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data333.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data334.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data334.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data335.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data335.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data336.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data336.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data337.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data337.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data338.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data338.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data339.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data339.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data34.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data340.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data340.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data341.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data341.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data342.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data343.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data343.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data344.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data344.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data345.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data346.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data346.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data347.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data347.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data348.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data348.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data349.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data349.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data35.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data350.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data350.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data351.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data351.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data352.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data352.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data353.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data353.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data354.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data354.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data355.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data355.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data356.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data356.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data357.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data357.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data358.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data358.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data359.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data359.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data36.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data360.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data360.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data361.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data361.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data362.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data362.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data363.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data363.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data364.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data364.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data365.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data365.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data366.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data366.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data367.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data367.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data368.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data368.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data369.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data369.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data37.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data370.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data370.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data371.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data371.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data372.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data372.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data373.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data373.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data374.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data374.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data375.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data375.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data376.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data376.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data377.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data377.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data378.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data378.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data379.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data379.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data38.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data380.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data380.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data381.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data381.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data382.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data382.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data383.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data383.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data384.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data384.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data385.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data385.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data386.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data386.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data387.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data387.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data388.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data388.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data389.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data389.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data39.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data390.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data390.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data391.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data391.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data392.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data392.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data393.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data393.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data394.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data394.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data395.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data395.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data396.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data396.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data397.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data397.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data398.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data398.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data399.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data399.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data4.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data40.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data400.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data401.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data401.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data402.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data402.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data403.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data403.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data404.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data404.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data405.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data405.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data406.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data407.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data407.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data408.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data408.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data409.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data41.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data410.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data411.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data411.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data412.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data412.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data413.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data413.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data414.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data415.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data415.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data416.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data416.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data417.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data417.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data418.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data418.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data419.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data419.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data42.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data420.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data420.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data421.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data421.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data422.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data422.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data423.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data423.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data424.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data424.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data425.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data425.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data426.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data426.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data427.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data427.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data428.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data428.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data429.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data429.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data43.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data430.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data430.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data431.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data431.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data432.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data432.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data433.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data433.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data434.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data434.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data435.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data435.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data436.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data436.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data437.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data438.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data438.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data439.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data439.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data44.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data440.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data440.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data441.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data441.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data442.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data442.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data443.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data443.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data444.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data444.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data45.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data46.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data47.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data48.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data49.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data5.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data50.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data51.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data52.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data53.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data54.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data55.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data56.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data57.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data58.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data59.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data6.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data60.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data61.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data62.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data63.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data64.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data65.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data66.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data67.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data68.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data69.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data7.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data70.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data71.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data72.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data73.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data74.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data75.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data76.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data77.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data78.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data79.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data8.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data80.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data81.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data82.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data83.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data84.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data85.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data86.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data87.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data88.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data89.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data9.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data90.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data91.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data92.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data93.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data94.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data95.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data96.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data97.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data98.txt -------------------------------------------------------------------------------- /3d pose App/src/data/3d_data99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data/3d_data99.txt -------------------------------------------------------------------------------- /3d pose App/src/data1/pos1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data1/pos1.txt -------------------------------------------------------------------------------- /3d pose App/src/data1/pos_cai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/data1/pos_cai.txt -------------------------------------------------------------------------------- /3d pose App/src/estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/estimator.py -------------------------------------------------------------------------------- /3d pose App/src/lifting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/src/lifting/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/lifting/config.py -------------------------------------------------------------------------------- /3d pose App/src/lifting/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/lifting/draw.py -------------------------------------------------------------------------------- /3d pose App/src/lifting/prob_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/lifting/prob_model.py -------------------------------------------------------------------------------- /3d pose App/src/lifting/upright_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/lifting/upright_fast.py -------------------------------------------------------------------------------- /3d pose App/src/network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/network_base.py -------------------------------------------------------------------------------- /3d pose App/src/network_cmu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/network_cmu.py -------------------------------------------------------------------------------- /3d pose App/src/network_dsconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/network_dsconv.py -------------------------------------------------------------------------------- /3d pose App/src/network_mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/network_mobilenet.py -------------------------------------------------------------------------------- /3d pose App/src/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/networks.py -------------------------------------------------------------------------------- /3d pose App/src/slim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/alexnet.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/cifarnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/cifarnet.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/cyclegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/cyclegan.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/dcgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/dcgan.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/dcgan_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/dcgan_test.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/inception.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/lenet.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/nasnet/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/overfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/overfeat.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/pix2pix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/pix2pix.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/resnet_v1.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/resnet_v2.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/vgg.py -------------------------------------------------------------------------------- /3d pose App/src/slim/nets/vgg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/slim/nets/vgg_test.py -------------------------------------------------------------------------------- /3d pose App/src/slim/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3d pose App/src/webcam3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/webcam3d.py -------------------------------------------------------------------------------- /3d pose App/src/webcam3d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/3d pose App/src/webcam3d2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/README.md -------------------------------------------------------------------------------- /Unity App/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/.gitattributes -------------------------------------------------------------------------------- /Unity App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/.gitignore -------------------------------------------------------------------------------- /Unity App/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/.vscode/settings.json -------------------------------------------------------------------------------- /Unity App/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/Editor.meta -------------------------------------------------------------------------------- /Unity App/Assets/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/Extensions.meta -------------------------------------------------------------------------------- /Unity App/Assets/Extensions/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/Extensions/Editor.meta -------------------------------------------------------------------------------- /Unity App/Assets/IKSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/IKSetting.cs -------------------------------------------------------------------------------- /Unity App/Assets/IKSetting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/IKSetting.cs.meta -------------------------------------------------------------------------------- /Unity App/Assets/Pos_txt_Reader1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/Pos_txt_Reader1.cs -------------------------------------------------------------------------------- /Unity App/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/Scripts.meta -------------------------------------------------------------------------------- /Unity App/Assets/Scripts/FullBodyIK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/Scripts/FullBodyIK.cs -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/Models.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/Prefabs.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/ReadMe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/ReadMe.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/Scenes.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/Scripts.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/Stage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/Stage.meta -------------------------------------------------------------------------------- /Unity App/Assets/UnityChan/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/UnityChan/license.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas.meta -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data0.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data1.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data10.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data100.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data101.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data102.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data103.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data104.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data105.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data106.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data107.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data108.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data109.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data11.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data110.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data111.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data112.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data113.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data114.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data115.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data116.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data117.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data118.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data119.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data12.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data120.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data121.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data122.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data123.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data124.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data125.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data126.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data127.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data128.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data129.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data13.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data130.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data131.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data132.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data133.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data134.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data135.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data136.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data137.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data138.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data139.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data14.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data140.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data141.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data142.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data143.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data144.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data145.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data146.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data147.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data148.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data149.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data15.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data150.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data151.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data152.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data153.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data154.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data155.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data156.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data157.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data158.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data159.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data16.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data160.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data161.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data162.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data163.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data164.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data165.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data165.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data166.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data167.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data168.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data169.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data17.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data170.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data171.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data172.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data173.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data174.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data175.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data176.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data177.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data178.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data179.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data18.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data180.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data181.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data182.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data183.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data184.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data185.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data186.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data187.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data188.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data189.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data189.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data19.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data190.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data191.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data192.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data193.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data194.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data195.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data196.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data196.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data197.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data198.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data2.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data20.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data21.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data22.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data23.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data24.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data25.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data26.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data27.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data28.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data29.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data3.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data30.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data31.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data32.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data33.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data34.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data35.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data36.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data37.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data38.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data39.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data4.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data40.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data41.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data42.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data43.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data44.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data45.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data46.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data47.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data48.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data49.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data5.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data50.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data51.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data52.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data53.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data54.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data55.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data56.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data57.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data58.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data59.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data6.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data60.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data61.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data62.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data63.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data64.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data65.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data66.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data67.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data68.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data69.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data7.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data70.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data71.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data72.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data73.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data74.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data75.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data76.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data77.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data78.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data79.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data8.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data80.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data81.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data82.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data83.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data84.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data85.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data86.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data87.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data88.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data89.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data9.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data90.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data91.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data92.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data93.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data94.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data95.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data96.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data97.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data98.txt -------------------------------------------------------------------------------- /Unity App/Assets/datas/3d_data99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/datas/3d_data99.txt -------------------------------------------------------------------------------- /Unity App/Assets/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/main.unity -------------------------------------------------------------------------------- /Unity App/Assets/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Assets/main.unity.meta -------------------------------------------------------------------------------- /Unity App/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Unity App/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/Unity App/Packages/manifest.json -------------------------------------------------------------------------------- /Unity App/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.14f1 2 | -------------------------------------------------------------------------------- /version1.0 demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/version1.0 demo.png -------------------------------------------------------------------------------- /webcam3d1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/webcam3d1.py -------------------------------------------------------------------------------- /webcam_smoothed_real_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacob12138xieyuan/real-time-3d-pose-estimation-with-Unity3D/HEAD/webcam_smoothed_real_time.png --------------------------------------------------------------------------------