├── .gitignore ├── Assets ├── Examples.meta ├── Examples │ ├── Cube (5).controller │ ├── Cube (5).controller.meta │ ├── Cube (6).controller │ ├── Cube (6).controller.meta │ ├── LeftRight.anim │ ├── LeftRight.anim.meta │ ├── ThereAndBackAgain.anim │ ├── ThereAndBackAgain.anim.meta │ ├── test.unity │ └── test.unity.meta ├── ImageSynthesis.meta ├── ImageSynthesis │ ├── ColorEncoding.cs │ ├── ColorEncoding.cs.meta │ ├── ExampleUI.cs │ ├── ExampleUI.cs.meta │ ├── ImageSynthesis.cs │ ├── ImageSynthesis.cs.meta │ ├── OpticalFlowWheel.meta │ ├── OpticalFlowWheel │ │ ├── .DS_Store │ │ ├── HueSaturation_PGuzman2010.png │ │ ├── HueSaturation_PGuzman2010.png.meta │ │ ├── HueValue_ASellent2012.png │ │ ├── HueValue_ASellent2012.png.meta │ │ ├── HueValue_SBaker2007.png │ │ └── HueValue_SBaker2007.png.meta │ ├── Shaders.meta │ └── Shaders │ │ ├── OpticalFlow.shader │ │ ├── OpticalFlow.shader.meta │ │ ├── UberReplacement.shader │ │ └── UberReplacement.shader.meta ├── Materials.meta ├── Materials │ ├── Floor.mat │ └── Floor.mat.meta ├── Prefabs.meta ├── Prefabs │ ├── Cube.prefab │ ├── Cube.prefab.meta │ ├── Cylinder.prefab │ ├── Cylinder.prefab.meta │ ├── Sphere.prefab │ └── Sphere.prefab.meta ├── Scripts.meta ├── Scripts │ ├── SceneController.cs │ ├── SceneController.cs.meta │ ├── ShapePool.cs │ └── ShapePool.cs.meta ├── Solids.unity └── Solids.unity.meta ├── LICENSE.TXT ├── 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 ├── README.md ├── Unity.ipynb └── image-synthesis-intro.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples.meta -------------------------------------------------------------------------------- /Assets/Examples/Cube (5).controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/Cube (5).controller -------------------------------------------------------------------------------- /Assets/Examples/Cube (5).controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/Cube (5).controller.meta -------------------------------------------------------------------------------- /Assets/Examples/Cube (6).controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/Cube (6).controller -------------------------------------------------------------------------------- /Assets/Examples/Cube (6).controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/Cube (6).controller.meta -------------------------------------------------------------------------------- /Assets/Examples/LeftRight.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/LeftRight.anim -------------------------------------------------------------------------------- /Assets/Examples/LeftRight.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/LeftRight.anim.meta -------------------------------------------------------------------------------- /Assets/Examples/ThereAndBackAgain.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/ThereAndBackAgain.anim -------------------------------------------------------------------------------- /Assets/Examples/ThereAndBackAgain.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/ThereAndBackAgain.anim.meta -------------------------------------------------------------------------------- /Assets/Examples/test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/test.unity -------------------------------------------------------------------------------- /Assets/Examples/test.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Examples/test.unity.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/ColorEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/ColorEncoding.cs -------------------------------------------------------------------------------- /Assets/ImageSynthesis/ColorEncoding.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/ColorEncoding.cs.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/ExampleUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/ExampleUI.cs -------------------------------------------------------------------------------- /Assets/ImageSynthesis/ExampleUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/ExampleUI.cs.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/ImageSynthesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/ImageSynthesis.cs -------------------------------------------------------------------------------- /Assets/ImageSynthesis/ImageSynthesis.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/ImageSynthesis.cs.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/.DS_Store -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/HueSaturation_PGuzman2010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/HueSaturation_PGuzman2010.png -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/HueSaturation_PGuzman2010.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/HueSaturation_PGuzman2010.png.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/HueValue_ASellent2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/HueValue_ASellent2012.png -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/HueValue_ASellent2012.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/HueValue_ASellent2012.png.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/HueValue_SBaker2007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/HueValue_SBaker2007.png -------------------------------------------------------------------------------- /Assets/ImageSynthesis/OpticalFlowWheel/HueValue_SBaker2007.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/OpticalFlowWheel/HueValue_SBaker2007.png.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/Shaders.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/Shaders/OpticalFlow.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/Shaders/OpticalFlow.shader -------------------------------------------------------------------------------- /Assets/ImageSynthesis/Shaders/OpticalFlow.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/Shaders/OpticalFlow.shader.meta -------------------------------------------------------------------------------- /Assets/ImageSynthesis/Shaders/UberReplacement.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/Shaders/UberReplacement.shader -------------------------------------------------------------------------------- /Assets/ImageSynthesis/Shaders/UberReplacement.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/ImageSynthesis/Shaders/UberReplacement.shader.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Materials/Floor.mat -------------------------------------------------------------------------------- /Assets/Materials/Floor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Materials/Floor.mat.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs/Cube.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs/Cube.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Cylinder.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs/Cylinder.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Cylinder.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs/Cylinder.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Sphere.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs/Sphere.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Sphere.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Prefabs/Sphere.prefab.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/SceneController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Scripts/SceneController.cs -------------------------------------------------------------------------------- /Assets/Scripts/SceneController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Scripts/SceneController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ShapePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Scripts/ShapePool.cs -------------------------------------------------------------------------------- /Assets/Scripts/ShapePool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Scripts/ShapePool.cs.meta -------------------------------------------------------------------------------- /Assets/Solids.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Solids.unity -------------------------------------------------------------------------------- /Assets/Solids.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Assets/Solids.unity.meta -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.2f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/README.md -------------------------------------------------------------------------------- /Unity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/Unity.ipynb -------------------------------------------------------------------------------- /image-synthesis-intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratospark/UnityImageSynthesisTutorial1/HEAD/image-synthesis-intro.jpg --------------------------------------------------------------------------------