├── .gitignore ├── Assets ├── Samples │ ├── Common │ │ ├── ArrayExtension.cs │ │ ├── ArrayExtension.cs.meta │ │ ├── BaseImagePredictor.cs │ │ ├── BaseImagePredictor.cs.meta │ │ ├── Color32Extension.cs │ │ ├── Color32Extension.cs.meta │ │ ├── FileUtil.cs │ │ ├── FileUtil.cs.meta │ │ ├── GLDrawer.cs │ │ ├── GLDrawer.cs.meta │ │ ├── GoToSceneButton.cs │ │ ├── GoToSceneButton.cs.meta │ │ ├── InterpreterExtension.cs │ │ ├── InterpreterExtension.cs.meta │ │ ├── TextureToTensor.cs │ │ ├── TextureToTensor.cs.meta │ │ ├── WebCamUtil.cs │ │ └── WebCamUtil.cs.meta │ └── DeepLab │ │ ├── 64by64_plane.fbx │ │ ├── 64by64_plane.fbx.meta │ │ ├── Camera.renderTexture │ │ ├── Camera.renderTexture.meta │ │ ├── DeepLab.cs │ │ ├── DeepLab.cs.meta │ │ ├── DeepLab.mat │ │ ├── DeepLab.mat.meta │ │ ├── DeepLab.unity │ │ ├── DeepLab.unity.meta │ │ ├── DeepLabMaterial.cs │ │ ├── DeepLabMaterial.cs.meta │ │ ├── DeepLabSample.cs │ │ ├── DeepLabSample.cs.meta │ │ ├── DeepLabShader.unity │ │ ├── DeepLabShader.unity.meta │ │ ├── DeepLabVFX.cs │ │ ├── DeepLabVFX.cs.meta │ │ ├── DeepLabVFX.unity │ │ ├── DeepLabVFX.unity.meta │ │ ├── DeepLab_1.vfx │ │ ├── DeepLab_1.vfx.meta │ │ ├── LabelToTex.compute │ │ ├── LabelToTex.compute.meta │ │ ├── Segmentation.shadergraph │ │ ├── Segmentation.shadergraph.meta │ │ ├── deeplabv3_labels.json │ │ └── deeplabv3_labels.json.meta ├── StreamingAssets │ ├── coco_ssd_mobilenet_quant.tflite │ ├── coco_ssd_mobilenet_quant.tflite.meta │ ├── deeplabv3_257_mv_gpu.tflite │ ├── deeplabv3_257_mv_gpu.tflite.meta │ ├── mnist.tflite │ ├── mnist.tflite.meta │ ├── posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite │ ├── posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite.meta │ ├── posenet_mobilenet_v1_100_513x513_multi_kpt_stripped.tflite │ ├── posenet_mobilenet_v1_100_513x513_multi_kpt_stripped.tflite.meta │ ├── smartreply.tflite │ ├── smartreply.tflite.meta │ ├── style_predict_quantized_256.tflite │ ├── style_predict_quantized_256.tflite.meta │ ├── style_transfer_quantized_dynamic.tflite │ ├── style_transfer_quantized_dynamic.tflite.meta │ ├── text_classification.tflite │ └── text_classification.tflite.meta ├── TensorFlowLite │ ├── Examples.meta │ ├── Examples │ │ ├── HelloTFLite.meta │ │ └── HelloTFLite │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ ├── HelloTFLite.unity │ │ │ ├── HelloTFLite.unity.meta │ │ │ ├── add.bytes │ │ │ └── add.bytes.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── HelloTFLite.cs │ │ │ └── HelloTFLite.cs.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── libtensorflowlite_c.so │ │ │ ├── libtensorflowlite_c.so.meta │ │ │ ├── libtensorflowlite_gpu_delegate.so │ │ │ └── libtensorflowlite_gpu_delegate.so.meta │ │ ├── Windows.meta │ │ ├── Windows │ │ │ ├── libtensorflowlite_c.dll │ │ │ └── libtensorflowlite_c.dll.meta │ │ ├── iOS.meta │ │ ├── iOS │ │ │ ├── TensorFlowLiteC.framework.meta │ │ │ ├── TensorFlowLiteC.framework │ │ │ │ ├── Headers.meta │ │ │ │ ├── Headers │ │ │ │ │ ├── TensorFlowLiteC.h │ │ │ │ │ ├── TensorFlowLiteC.h.meta │ │ │ │ │ ├── c_api.h │ │ │ │ │ ├── c_api.h.meta │ │ │ │ │ ├── c_api_types.h │ │ │ │ │ ├── c_api_types.h.meta │ │ │ │ │ ├── metal_delegate.h │ │ │ │ │ └── metal_delegate.h.meta │ │ │ │ ├── Modules.meta │ │ │ │ ├── Modules │ │ │ │ │ ├── module.modulemap │ │ │ │ │ └── module.modulemap.meta │ │ │ │ ├── TensorFlowLiteC │ │ │ │ └── TensorFlowLiteC.meta │ │ │ ├── tensorflow_lite_gpu_framework.framework.meta │ │ │ └── tensorflow_lite_gpu_framework.framework │ │ │ │ ├── Headers.meta │ │ │ │ ├── Headers │ │ │ │ ├── metal_delegate.h │ │ │ │ ├── metal_delegate.h.meta │ │ │ │ ├── metal_delegate_internal.h │ │ │ │ ├── metal_delegate_internal.h.meta │ │ │ │ ├── tensorflow_lite_gpu_framework.h │ │ │ │ └── tensorflow_lite_gpu_framework.h.meta │ │ │ │ ├── Modules.meta │ │ │ │ ├── Modules │ │ │ │ ├── module.modulemap │ │ │ │ └── module.modulemap.meta │ │ │ │ ├── tensorflow_lite_gpu_framework │ │ │ │ └── tensorflow_lite_gpu_framework.meta │ │ ├── macOS.meta │ │ └── macOS │ │ │ ├── libtensorflowlite_c.bundle │ │ │ ├── libtensorflowlite_c.bundle.meta │ │ │ ├── libtensorflowlite_metal_delegate.dylib │ │ │ └── libtensorflowlite_metal_delegate.dylib.meta │ ├── SDK.meta │ └── SDK │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── GpuDelegate.cs │ │ ├── GpuDelegate.cs.meta │ │ ├── Interpreter.cs │ │ ├── Interpreter.cs.meta │ │ ├── MetalDelegate.cs │ │ ├── MetalDelegate.cs.meta │ │ ├── Types.cs │ │ └── Types.cs.meta ├── UniversalRenderPipelineAsset.asset ├── UniversalRenderPipelineAsset.asset.meta ├── UniversalRenderPipelineAsset_Renderer.asset ├── UniversalRenderPipelineAsset_Renderer.asset.meta └── VFXDefaultResources.asset ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md ├── android_segmentation.gif └── body_segmentation_beta.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Samples/Common/ArrayExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/ArrayExtension.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/ArrayExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/ArrayExtension.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/BaseImagePredictor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/BaseImagePredictor.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/BaseImagePredictor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/BaseImagePredictor.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/Color32Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/Color32Extension.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/Color32Extension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/Color32Extension.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/FileUtil.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/FileUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/FileUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/GLDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/GLDrawer.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/GLDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/GLDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/GoToSceneButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/GoToSceneButton.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/GoToSceneButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/GoToSceneButton.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/InterpreterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/InterpreterExtension.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/InterpreterExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/InterpreterExtension.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/TextureToTensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/TextureToTensor.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/TextureToTensor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/TextureToTensor.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/Common/WebCamUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/WebCamUtil.cs -------------------------------------------------------------------------------- /Assets/Samples/Common/WebCamUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/Common/WebCamUtil.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/64by64_plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/64by64_plane.fbx -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/64by64_plane.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/64by64_plane.fbx.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/Camera.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/Camera.renderTexture -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/Camera.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/Camera.renderTexture.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab.cs -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab.mat -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab.mat.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab.unity -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab.unity.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabMaterial.cs -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabMaterial.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabMaterial.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabSample.cs -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabSample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabSample.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabShader.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabShader.unity -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabShader.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabShader.unity.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabVFX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabVFX.cs -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabVFX.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabVFX.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabVFX.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabVFX.unity -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLabVFX.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLabVFX.unity.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab_1.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab_1.vfx -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/DeepLab_1.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/DeepLab_1.vfx.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/LabelToTex.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/LabelToTex.compute -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/LabelToTex.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/LabelToTex.compute.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/Segmentation.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/Segmentation.shadergraph -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/Segmentation.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/Segmentation.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/deeplabv3_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/deeplabv3_labels.json -------------------------------------------------------------------------------- /Assets/Samples/DeepLab/deeplabv3_labels.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/Samples/DeepLab/deeplabv3_labels.json.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/coco_ssd_mobilenet_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/coco_ssd_mobilenet_quant.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/coco_ssd_mobilenet_quant.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/coco_ssd_mobilenet_quant.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/deeplabv3_257_mv_gpu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/deeplabv3_257_mv_gpu.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/deeplabv3_257_mv_gpu.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/deeplabv3_257_mv_gpu.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/mnist.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/mnist.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/mnist.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/mnist.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/posenet_mobilenet_v1_100_513x513_multi_kpt_stripped.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/posenet_mobilenet_v1_100_513x513_multi_kpt_stripped.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/posenet_mobilenet_v1_100_513x513_multi_kpt_stripped.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/posenet_mobilenet_v1_100_513x513_multi_kpt_stripped.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/smartreply.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/smartreply.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/smartreply.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/smartreply.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/style_predict_quantized_256.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/style_predict_quantized_256.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/style_predict_quantized_256.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/style_predict_quantized_256.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/style_transfer_quantized_dynamic.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/style_transfer_quantized_dynamic.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/style_transfer_quantized_dynamic.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/style_transfer_quantized_dynamic.tflite.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/text_classification.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/text_classification.tflite -------------------------------------------------------------------------------- /Assets/StreamingAssets/text_classification.tflite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/StreamingAssets/text_classification.tflite.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/HelloTFLite.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/HelloTFLite.unity -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/HelloTFLite.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/HelloTFLite.unity.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/add.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/add.bytes -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/add.bytes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/add.bytes.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scripts.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scripts/HelloTFLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scripts/HelloTFLite.cs -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Examples/HelloTFLite/Scripts/HelloTFLite.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Examples/HelloTFLite/Scripts/HelloTFLite.cs.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_c.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_c.so -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_c.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_c.so.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_gpu_delegate.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_gpu_delegate.so -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_gpu_delegate.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Android/libtensorflowlite_gpu_delegate.so.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Windows.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Windows/libtensorflowlite_c.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Windows/libtensorflowlite_c.dll -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/Windows/libtensorflowlite_c.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/Windows/libtensorflowlite_c.dll.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/TensorFlowLiteC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/TensorFlowLiteC.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/TensorFlowLiteC.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/TensorFlowLiteC.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api_types.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api_types.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/c_api_types.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/metal_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/metal_delegate.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/metal_delegate.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Headers/metal_delegate.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Modules.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Modules.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Modules/module.modulemap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/Modules/module.modulemap.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/TensorFlowLiteC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/TensorFlowLiteC -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/TensorFlowLiteC.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/TensorFlowLiteC.framework/TensorFlowLiteC.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate_internal.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate_internal.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/metal_delegate_internal.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/tensorflow_lite_gpu_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/tensorflow_lite_gpu_framework.h -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/tensorflow_lite_gpu_framework.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Headers/tensorflow_lite_gpu_framework.h.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Modules.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Modules.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Modules/module.modulemap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/Modules/module.modulemap.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/tensorflow_lite_gpu_framework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/tensorflow_lite_gpu_framework -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/tensorflow_lite_gpu_framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/iOS/tensorflow_lite_gpu_framework.framework/tensorflow_lite_gpu_framework.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/macOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/macOS.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_c.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_c.bundle -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_c.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_c.bundle.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_metal_delegate.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_metal_delegate.dylib -------------------------------------------------------------------------------- /Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_metal_delegate.dylib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/Plugins/macOS/libtensorflowlite_metal_delegate.dylib.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/GpuDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/GpuDelegate.cs -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/GpuDelegate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/GpuDelegate.cs.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/Interpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/Interpreter.cs -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/Interpreter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/Interpreter.cs.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/MetalDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/MetalDelegate.cs -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/MetalDelegate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/MetalDelegate.cs.meta -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/Types.cs -------------------------------------------------------------------------------- /Assets/TensorFlowLite/SDK/Scripts/Types.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/TensorFlowLite/SDK/Scripts/Types.cs.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/UniversalRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/UniversalRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset_Renderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/UniversalRenderPipelineAsset_Renderer.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineAsset_Renderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/UniversalRenderPipelineAsset_Renderer.asset.meta -------------------------------------------------------------------------------- /Assets/VFXDefaultResources.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Assets/VFXDefaultResources.asset -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/README.md -------------------------------------------------------------------------------- /android_segmentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/android_segmentation.gif -------------------------------------------------------------------------------- /body_segmentation_beta.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaerdlatigid/BodySegmentation/HEAD/body_segmentation_beta.gif --------------------------------------------------------------------------------