├── .bashrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── LICENSE-clevr ├── README-clevr.md ├── README.md ├── blocks.py ├── data ├── CoGenT_A.json ├── CoGenT_B.json ├── base_scene.blend ├── cylinders-properties.json ├── materials │ ├── MyMetal.blend │ └── Rubber.blend ├── mono-properties.json ├── properties.json └── shapes │ ├── SmoothCube_v2.blend │ ├── SmoothCylinder.blend │ └── Sphere.blend ├── environment.yml ├── example └── image │ └── CLEVR_new_010000.png ├── extract_all_regions_binary.py ├── generate-dataset-all.sh ├── generate-dataset.sh ├── generate-problems-all.sh ├── generate-problems.sh ├── merge-npz.py ├── render_images.py ├── render_utils.py ├── requirements.txt ├── test.sh └── utils.py /.bashrc: -------------------------------------------------------------------------------- 1 | 2 | conda activate prb 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-clevr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/LICENSE-clevr -------------------------------------------------------------------------------- /README-clevr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/README-clevr.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/README.md -------------------------------------------------------------------------------- /blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/blocks.py -------------------------------------------------------------------------------- /data/CoGenT_A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/CoGenT_A.json -------------------------------------------------------------------------------- /data/CoGenT_B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/CoGenT_B.json -------------------------------------------------------------------------------- /data/base_scene.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/base_scene.blend -------------------------------------------------------------------------------- /data/cylinders-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/cylinders-properties.json -------------------------------------------------------------------------------- /data/materials/MyMetal.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/materials/MyMetal.blend -------------------------------------------------------------------------------- /data/materials/Rubber.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/materials/Rubber.blend -------------------------------------------------------------------------------- /data/mono-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/mono-properties.json -------------------------------------------------------------------------------- /data/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/properties.json -------------------------------------------------------------------------------- /data/shapes/SmoothCube_v2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/shapes/SmoothCube_v2.blend -------------------------------------------------------------------------------- /data/shapes/SmoothCylinder.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/shapes/SmoothCylinder.blend -------------------------------------------------------------------------------- /data/shapes/Sphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/data/shapes/Sphere.blend -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/environment.yml -------------------------------------------------------------------------------- /example/image/CLEVR_new_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/example/image/CLEVR_new_010000.png -------------------------------------------------------------------------------- /extract_all_regions_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/extract_all_regions_binary.py -------------------------------------------------------------------------------- /generate-dataset-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/generate-dataset-all.sh -------------------------------------------------------------------------------- /generate-dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/generate-dataset.sh -------------------------------------------------------------------------------- /generate-problems-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/generate-problems-all.sh -------------------------------------------------------------------------------- /generate-problems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/generate-problems.sh -------------------------------------------------------------------------------- /merge-npz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/merge-npz.py -------------------------------------------------------------------------------- /render_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/render_images.py -------------------------------------------------------------------------------- /render_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/render_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/test.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/photorealistic-blocksworld/HEAD/utils.py --------------------------------------------------------------------------------