Datasets:

Languages:
English
ArXiv:
License:
File size: 7,344 Bytes
290c14a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import blenderproc as bproc
import argparse
import numpy as np

from glob import glob
import random
from datetime import datetime
random.seed(datetime.now().timestamp())

import sys
import math


parser = argparse.ArgumentParser()
parser.add_argument('obj1', default="apple", help="Name of object 1")
parser.add_argument('obj2', default="banana", help="Name of object 2")
parser.add_argument('bg_path', default="background/autumn_park_2k.hdr", help="Path to the background hdr image")
parser.add_argument('output_dir', default="output/above_below/", help="Path to where the final files, will be saved")
parser.add_argument('pair_index', default=-1, help="Non-Random Pair index")
parser.add_argument('debug', default=0)
args = parser.parse_args()

pair_index = int(args.pair_index)

# obj_list = ["apple", "banana", "bed", "bicycle", "book", "car", "chair", "laptop", "person", "tv"]

obj_list = ["apple", "banana",  "bicycle", "book", "chair", "laptop", "person", "tv"]
big_list = ['bicycle', 'person']
medium_list = ['chair', 'tv']
tiny_list = ['apple', 'banana']
small_list = ['book', 'laptop']
tall_list = ['person']

coco_objects = ['airplane', 'apple', 'backpack', 'banana', 'baseball_bat', 'baseball_glove', 'bear', 'bed', 'bench', 'bicycle', 'bird', 'boat', 'book', 'bottle', 'bowl', 'broccoli', 'bus', 'cake', 'car', 'carrot', 'cat', 'cell_phone', 'chair', 'clock', 'couch', 'cow', 'cup', 'dining_table', 'dog', 'donut', 'elephant', 'fire_hydrant', 'fork', 'frisbee', 'giraffe', 'hair_drier', 'handbag', 'horse', 'hot_dog', 'keyboard', 'kite', 'knife', 'laptop', 'microwave', 'motorcycle', 'mouse', 'orange', 'oven', 'parking_meter', 'person', 'pizza', 'potted_plant', 'refrigerator', 'remote', 'sandwich', 'scissors', 'sheep', 'sink', 'skateboard', 'skis', 'snowboard', 'spoon', 'sports_ball', 'stop_sign', 'suitcase', 'surfboard', 'teddy_bear', 'tennis_racket', 'tie', 'toaster', 'toilet', 'toothbrush', 'traffic_light', 'train', 'truck', 'tv', 'umbrella', 'vase', 'wine_glass', 'zebra']

tall_objects = ['man', 'person', 'woman']



def get_obj_scale(obj_name): 
    return 1.0

def retrieve2obj(obj1="apple", obj2="banana", index=-1, 
                 asset_path="assets/blender_assets/", 
                 noncoco_asset_path = "assets/blender_assets_non_coco/"):

    if obj1 in coco_objects:
        obj1_list = sorted(glob(f'{asset_path}/{obj1}/*.blend'))
    else:
        obj1_list = sorted(glob(f'{noncoco_asset_path}/{obj1}/*.blend'))
    if obj2 in coco_objects:    
        obj2_list = sorted(glob(f'{asset_path}/{obj2}/*.blend'))
    else:
        obj2_list = sorted(glob(f'{noncoco_asset_path}/{obj2}/*.blend'))

    if index == -1:
        obj1_path = random.choice(obj1_list)
        obj2_path = random.choice(obj2_list)
    else:
        obj1_path = obj1_list[index]
        obj2_path = obj2_list[index]
    return obj1_path, obj2_path, f'{obj1}_{obj2}'

def retrieve_floor(bgpath):
    if 'white' in bgpath:
        floor_path = "floor/floor_white.blend"
    elif 'autumn' in bgpath:
        floor_path = "floor/floor_grass_brass.blend"
    elif 'studio' in bgpath:
        floor_path = 'floor/floor_wood.blend'
    return floor_path

bproc.init()

# activate normal and depth rendering
# bproc.renderer.enable_normals_output()
# bproc.renderer.enable_depth_output(activate_antialiasing=False)
# set realistic background
# haven_hdri_path = bproc.loader.get_random_world_background_hdr_img_path_from_haven('/home/lawrence/Documents/3dscene/')
haven_hdri_path = args.bg_path

for i in range(1):

    path1, path2, output_name = retrieve2obj(args.obj1, args.obj2, index=pair_index)

    if args.bg_path != "None":
        # bproc.world.set_world_background_hdr_img(haven_hdri_path)
        bproc.world.set_world_background_hdr_img(haven_hdri_path, rotation_euler=[0.0, 0.0, random.uniform(-np.pi, np.pi)])

    
    print('Generating', output_name)

    r = random.uniform(4.5, 5.5)
    if args.obj2 in tall_objects :
        height_offset = random.uniform(-0.75, -0.6)
    else:
        height_offset = 0.0
    #     offset = 1.35  
    # elif args.obj2 in medium_list:
    #     offset = 0.5
    # else:
    #     offset = 0.5

    # Set the scale of the objects
    obj1_scale = get_obj_scale(args.obj1)
    obj2_scale = get_obj_scale(args.obj2)

    # if args.obj1 in small_list and args.obj2 in small_list:
    #     obj1_scale = random.uniform(4.0, 5.0)
    #     obj2_scale = obj1_scale
    # elif args.obj1 in small_list:
    #     obj1_scale = random.uniform(4.0, 5.0)
    # elif args.obj2 in small_list:
    #     obj2_scale = random.uniform(4.0, 5.0)
    floor_z = height_offset + random.uniform(-0.5, -0.75)
    floor = bproc.loader.load_blend(retrieve_floor(args.bg_path), obj_types= ['armature','mesh', 'empty', 'hair'] )
    floor = bproc.object.merge_objects(floor)
    floor.set_location([0,0,floor_z+random.uniform(-0.25, -0.05)])

    obj1 = bproc.loader.load_blend(path1, obj_types= ['armature','mesh', 'empty', 'hair'] )
    poi1 = bproc.object.compute_poi(bproc.filter.all_with_type(obj1, bproc.types.MeshObject))
    obj1 = bproc.object.merge_objects(obj1)
    obj1.set_location([random.uniform(-0.05, 0.05), random.uniform(-0.05, 0.05), random.uniform(0.5, 0.75)]) # up 
    # obj1.set_location([0, random.uniform(-1.0, 0.0), 0]) # left
    obj1.set_scale([obj1_scale, obj1_scale, obj1_scale])
    obj1.set_rotation_euler([0, 0, random.uniform(-np.pi/16, np.pi/16)])

    obj2 = bproc.loader.load_blend(path2, obj_types= ['armature', 'mesh', 'empty', 'hair'])
    poi2 = bproc.object.compute_poi(bproc.filter.all_with_type(obj2, bproc.types.MeshObject))
    obj2 = bproc.object.merge_objects(obj2)
    
    obj2.set_location([random.uniform(-0.05, 0.05), random.uniform(-0.05, 0.05), floor_z]) # down
    # obj2.set_location([0, random.uniform(0.0, 1.0), 0]) # right
    obj2.set_scale([obj2_scale, obj2_scale, obj2_scale])
    obj2.set_rotation_euler([0, 0, random.uniform(-np.pi/16, np.pi/16)])

    poi = (poi1 + poi2) / 2.0




    # define a light and set its location and energy level
    light = bproc.types.Light()
    light.set_type("POINT")
    light.set_location([0, random.uniform(-5.0, 5.0), 5])
    light.set_energy(3000)

    # random camera angle
    alpha = random.uniform(-np.pi / 8, np.pi / 8) 
    # r = 3.0
    cam_x = r * math.cos(alpha)
    cam_y = r * math.sin(alpha)

    # Set camera pose
    
    # Set output resolution to 1024x1024
    bproc.camera.set_resolution(1024, 1024)
    # Sample random camera location around the object
    location = bproc.sampler.part_sphere([cam_x, cam_y, 1.25], radius=0.25, part_sphere_dir_vector=[1, 0, 0], mode="SURFACE")
    # Compute rotation based on vector going from location towards poi
    rotation_matrix = bproc.camera.rotation_from_forward_vec(poi - location)
    # Add homog cam pose based on location an rotation
    cam2world_matrix = bproc.math.build_transformation_mat(location, rotation_matrix)
    bproc.camera.add_camera_pose(cam2world_matrix)


    # Render the scene
    bproc.renderer.set_max_amount_of_samples(24)
    data = bproc.renderer.render()

    # Write the rendering into an hdf5 file
    bproc.writer.write_hdf5(args.output_dir + output_name, data, append_to_existing_output=True)
    # bproc.clean_up()

    print('Objects chosen:\n', path1, '\n', path2)
    print('Background:\n', haven_hdri_path)