File: run.py

package info (click to toggle)
visp 3.7.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 166,384 kB
  • sloc: cpp: 392,705; ansic: 224,448; xml: 23,444; python: 13,701; java: 4,792; sh: 207; objc: 145; makefile: 118
file content (510 lines) | stat: -rw-r--r-- 22,804 bytes parent folder | download | duplicates (2)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
# Set megapose environment variables
import os
import json
import megapose_server
megapose_server_install_dir = os.path.dirname(megapose_server.__file__)
variables_file = os.path.join(megapose_server_install_dir, 'megapose_variables_final.json')
with open(variables_file, 'r') as f:
    json_vars = json.load(f)
    print('Loaded megapose variables', json_vars)
    os.environ['MEGAPOSE_DIR'] = json_vars['megapose_dir']
    os.environ['MEGAPOSE_DATA_DIR'] = json_vars['megapose_data_dir']

if 'HOME' not in os.environ: # Home is always required by megapose but is not always set
    if os.name == 'nt':
      if 'HOMEPATH' in os.environ:
        os.environ['HOME'] = os.environ['HOMEPATH']
      elif 'HOMEDIR' in os.environ:
        os.environ['HOME'] = os.environ['HOMEDIR']
      else:
        os.environ['HOME'] = '.'
    else:
      os.environ['HOME'] = '.'


# Third Party
import numpy as np
import argparse
import json
from pathlib import Path
from typing import Dict, List, Optional, Tuple, Union
from PIL import Image
import socket
import struct
import io
import sys
import traceback
from operator import itemgetter
import pandas as pd
import torch
import torch.fx as fx
import torch.nn as nn
from torch.fx.experimental.optimization import optimize_for_inference, fuse

# MegaPose
from megapose.datasets.object_dataset import RigidObject, RigidObjectDataset
from megapose.datasets.scene_dataset import CameraData, ObjectData
from megapose.inference.types import (
    DetectionsType,
    ObservationTensor,
    PoseEstimatesType,
)
from megapose.inference.utils import make_detections_from_object_data
from megapose.lib3d.transform import Transform
from megapose.panda3d_renderer import Panda3dLightData
from megapose.panda3d_renderer.panda3d_scene_renderer import Panda3dSceneRenderer
from megapose.utils.conversion import convert_scene_observation_to_panda3d
from megapose.utils.load_model import NAMED_MODELS, load_named_model

# Megapose server
from megapose_server.network_utils import *
from megapose_server.server_operations import ServerMessage

def make_object_dataset(meshes_dir: Path) -> RigidObjectDataset:
    rigid_objects = []
    mesh_units = "m"
    object_dirs = meshes_dir.iterdir()
    for object_dir in object_dirs:
        label = object_dir.name
        mesh_path = None
        for fn in object_dir.glob("*"):
            if fn.suffix in {".obj", ".ply", ".glb", ".gltf"}:
                assert not mesh_path, f"there are multiple meshes in the {label} directory"
                mesh_path = fn
        assert mesh_path, f"couldnt find the mesh for {label}"
        rigid_objects.append(RigidObject(label=label, mesh_path=mesh_path, mesh_units=mesh_units))
    rigid_object_dataset = RigidObjectDataset(rigid_objects)
    return rigid_object_dataset


class MegaposeServer():
    '''
    A TCP-based server that can be interrogated to estimate the pose of an object  with MegaPose
    '''
    def __init__(self, host: str, port: int, model_name: str, mesh_dir: Path, camera_data: Dict, optimize: bool, num_workers: int, image_batch_size=256, warmup=True, verbose=False):
        """Create a TCP server that listens for an incoming connection
        and can be used to answer client queries about an object pose with respect to the camera frame

        Args:
            host (str): The IP address to which this server will be bound. To connect, the client must be able to see this specific IP address.
            You may listen on all network interfaces if host="0.0.0.0". This however, is dangerous as anyone from anywhere can connect to the server.
            port (int): The port on which the server will listen for an incoming connection
            model_name (str): The name of the megapose model to use. One of:
                ['megapose-1.0-RGB',
                 'megapose-1.0-RGBD',
                 'megapose-1.0-RGB-multi-hypothesis',
                 'megapose-1.0-RGB-multi-hypothesis-icp']
            mesh_dir (Path): The path to the directory containing the 3D models
                Each model is stored in a subfolder, where the subfolder name gives the name of the object
                A 3D model can be in .obj or .ply format. Units are assumed to be in meters.
            camera_data (Dict): The starting camera calibration. A dict containing
                h: the height of the incoming images
                w: the width of the incoming images
                K: The 3X3 intrinsics matrix
            optimize (bool): Whether to optimize the deep network models for faster inference.
                Still very experimental, and may result in a loss of accuracy with no performance gain!
            warmup (bool): Whether to perform model warmup in order to avoid a slow first inference pass
            verbose (bool): print additional information
        """
        self.host = host
        self.port = port
        self.num_workers = num_workers
        self.operations = {
            ServerMessage.GET_POSE.value: self._estimate_pose,
            ServerMessage.GET_VIZ.value: self._raw_viz,
            ServerMessage.SET_INTR.value: self._set_intrinsics,
            ServerMessage.GET_SCORE.value: self._score,
            ServerMessage.SET_SO3_GRID_SIZE.value: self._set_SO3_grid_size,
            ServerMessage.GET_LIST_OBJECTS.value: self._list_objects,
        }

        self.object_dataset: RigidObjectDataset = make_object_dataset(mesh_dir)
        model_tuple = self._load_model(model_name)
        self.model_info = model_tuple[0]
        self.model = model_tuple[1]
        self.model.eval()
        self.model.bsz_images = image_batch_size
        self.camera_data = self._make_camera_data(camera_data)
        self.renderer = Panda3dSceneRenderer(self.object_dataset)
        torch.backends.cudnn.benchmark = True
        torch.backends.cudnn.deterministic = False
        self.optimize = optimize
        self.warmup = warmup
        self.verbose = verbose
        if self.optimize:
            print('Optimizing Pytorch models...')
            class Optimized(nn.Module):
                def __init__(self, m: nn.Module, inp):
                    super().__init__()
                    self.m = m.eval()
                    self.m = fuse(self.m, inplace=False)
                    self.m = torch.jit.trace(self.m, torch.rand(inp).cuda())
                    self.m = torch.jit.freeze(self.m)

                def forward(self, x):
                    return self.m(x).float()

            h, w = self.camera_data.resolution
            self.model.coarse_model.backbone = Optimized(self.model.coarse_model.backbone, (1, 9, h, w))
            self.model.refiner_model.backbone = Optimized(self.model.refiner_model.backbone, (1, 32 if self.model_info['requires_depth'] else 27, h, w))

        if self.warmup:
            print('Warming up models...')
            h, w = self.camera_data.resolution
            labels = self.object_dataset.label_to_objects.keys()
            observation = self._make_observation_tensor(np.random.randint(0, 255, (h, w, 3), dtype=np.uint8),
                                                        np.random.rand(h, w).astype(np.float32) if self.model_info['requires_depth'] else None).cuda()
            detections = self._make_detections(labels, np.asarray([[0, 0, w//2, h//2] for _ in range(len(labels))], dtype=np.float32)).cuda()
            self.model.run_inference_pipeline(observation, detections, **self.model_info['inference_parameters'])



    def _load_model(self, model_name):
        return NAMED_MODELS[model_name], load_named_model(model_name, self.object_dataset, n_workers=self.num_workers).cuda()

    def _estimate_pose(self, s: socket.socket, buffer: io.BytesIO):
        '''
        Network method
        Estimate the pose of an object, given an image and a detected region of interest

        the name of the detection that is sent by the client should be in the list of the objects that are in the meshes directory
        the detection bounding box is a 4d array of type [x_min, y_min, x_max, y_max], with values in pixels.
        '''
        import time
        t = time.time()
        img = read_image(buffer)

        json_object = json.loads(read_string(buffer))
        depth = None
        if json_object['use_depth']:
            if not self.model_info['requires_depth']:
                def err(buffer):
                    pack_string('Trying to use depth with a model that cannot handle it', buffer)
                msg = create_message(ServerMessage.ERR, err)
                s.sendall(msg)
                return
            else:
                depth_raw = read_uint16_image(buffer)
                depth = depth_raw * np.float32(json_object['depth_scale_to_m'])
                depth = depth.astype(np.float32)

        labels = json_object['labels']
        detections = json_object.get('detections')
        initial_cTos = json_object.get('initial_cTos')
        coarse_estimates = None
        if initial_cTos is not None:
            cTos_np = np.array(initial_cTos).reshape(-1, 4, 4)
            tensor = torch.from_numpy(cTos_np).float().cuda()
            infos = pd.DataFrame.from_dict({
                'label': labels,
                'batch_im_id': [0 for _ in range(len(cTos_np))],
                'instance_id': [i for i in range(len(cTos_np))]
            })
            coarse_estimates = PoseEstimatesType(infos, poses=tensor)
        input_proc_time = time.time() - t
        # print(f'Input buffer processing took: {time.time() - t}s')
        detections = self._make_detections(labels, detections).cuda() if detections is not None else None
        observation = self._make_observation_tensor(img, depth).cuda()
        inference_params = self.model_info['inference_parameters'].copy()
        if 'refiner_iterations' in json_object:
            inference_params['n_refiner_iterations'] = json_object['refiner_iterations']
        t = time.time()
        output, extra_data = self.model.run_inference_pipeline(
            observation, detections=detections, **inference_params, coarse_estimates=coarse_estimates
        )
        inference_time = time.time() - t
        if self.verbose:
            print('Timings:')
            print(f'\tInput processing: {int(input_proc_time * 1000)} ms')
            print(f'\tInference: {int(inference_time * 1000)} ms')
            dict = {
                'Coarse': 'coarse',
                'Refiner': 'refiner_all_hypotheses',
                'Scoring': 'scoring'
            }
            for k in dict:
                v = dict[k]
                if v in extra_data and 'data' in extra_data[v] and extra_data[v]['data'] is not None:
                    print(f'\t{k}')
                    print(f'\t\t\tTotal time: {int(extra_data[v]["data"]["time"] * 1000)}ms')
                    if 'render_time' in extra_data[v]['data']:
                        print(f'\t\t\tRender time: {int(extra_data[v]["data"]["render_time"] * 1000)}ms')

            # print(extra_data)

        # print(f'Inference took {int((time.time() - t) * 1000.0)}ms')
        # print(extra_data)

        def make_result(buffer):
            poses = output.poses.cpu().numpy()
            poses = poses.reshape(len(poses), 16).tolist()
            scores = output.infos['pose_score'].to_numpy()
            bounding_boxes = extra_data['scoring']['preds'].tensors['boxes_rend'].cpu().numpy().reshape(-1, 4)
            bounding_boxes = bounding_boxes.tolist()
            result = []
            for pose, score, bb in zip(poses, scores, bounding_boxes):
                result.append({
                    'cTo': pose,
                    'score': float(score),
                    'boundingBox': bb
                })
            j = json.dumps(result)
            pack_string(j, buffer)
        msg = create_message(ServerMessage.RET_POSE, make_result)
        s.sendall(msg)


    def _raw_viz(self, s: socket.socket, buffer: io.BytesIO):
        import time
        t = time.time()
        json_object = json.loads(read_string(buffer))
        labels = json_object['labels']
        view_type = json_object['type']
        poses = np.array(json_object['poses']).reshape((-1, 4, 4))
        camera_data = CameraData()
        camera_data.K = self.camera_data.K
        camera_data.resolution = self.camera_data.resolution

        camera_data.TWC = Transform(np.eye(4))
        #camera_data.TWC = Transform((0, 0, 0, 1), [0.0, 0, -2])
        object_datas = []
        for label, pose in zip(labels, poses):
            object_datas.append(ObjectData(label=label, TWO=Transform(pose)))

        if view_type == 'wireframe':
            self.renderer._app.toggleWireframe()
        camera_data, object_datas = convert_scene_observation_to_panda3d(camera_data, object_datas)
        light_datas = [
            Panda3dLightData(
                light_type="ambient",
                color=((1.0, 1.0, 1.0, 1)),
            ),
        ]
        renderings = self.renderer.render_scene(
            object_datas,
            [camera_data],
            light_datas,
            render_depth=False,
            render_binary_mask=False,
            render_normals=False,
            copy_arrays=True,
        )[0]
        if view_type == 'wireframe':
            self.renderer._app.toggleWireframe()
        img = renderings.rgb
        alphas = np.ones((*img.shape[:2], 1), dtype=np.uint8) * 255
        data = np.concatenate((img, alphas), axis=-1)

        msg = create_message(ServerMessage.RET_VIZ, lambda x: pack_image(data, x))
        s.sendall(msg)


    def _score(self, s: socket.socket, buffer: io.BytesIO):
        img = read_image(buffer)
        json_object = json.loads(read_string(buffer))

        labels = json_object['labels']

        poses = json_object.get('cTos')
        pose_estimates = None
        if poses is not None:
            cTos_np = np.array(poses).reshape(-1, 4, 4)
            tensor = torch.from_numpy(cTos_np).float().cuda()
            infos = pd.DataFrame.from_dict({
                'label': labels,
                'batch_im_id': [0 for i in range(len(cTos_np))],
                'instance_id': [i for i in range(len(cTos_np))]
            })
            pose_estimates = PoseEstimatesType(infos, poses=tensor)
        observation = self._make_observation_tensor(img).cuda()
        result = self.model.forward_scoring_model(observation, pose_estimates)
        scores = result[0].infos['pose_score']
        def make_result(buffer):
            j = json.dumps(scores.tolist())
            pack_string(j, buffer)
        msg = create_message(ServerMessage.RET_SCORE, make_result)
        s.sendall(msg)

    def _list_objects(self, s: socket.socket, _buffer: io.BytesIO):
        objects = list(self.object_dataset.label_to_objects.keys())
        def make_result(buffer):
            j = json.dumps(objects)
            pack_string(j, buffer)
        msg = create_message(ServerMessage.RET_LIST_OBJECTS, make_result)
        s.sendall(msg)

    def _make_detections(self, labels, detections):
        result = []
        for label, detection in zip(labels, detections):
            o = ObjectData(label)
            o.bbox_modal = detection
            result.append(o)

        return make_detections_from_object_data(result)

    def _make_observation_tensor(self, image: np.ndarray, depth: Optional[np.ndarray]=None) -> ObservationTensor:
        '''
        Create an observation tensor from an image and a potential depth image
        '''
        return ObservationTensor.from_numpy(image, depth, self.camera_data.K)


    def _set_intrinsics(self, s: socket.socket, buffer: io.BytesIO) -> None:
        '''
        Network method
        Set the intrinsics and image resolution to be used by megapose
        After this method is called, the input images should have the dimensions given in the message
        '''
        json_object: Dict = json.loads(read_string(buffer))
        px, py, u0, v0 = [float(x) for x in itemgetter('px', 'py', 'u0', 'v0')(json_object)]
        h, w = [int(x) for x in itemgetter('h', 'w')(json_object)]
        K = np.asarray([
            [px, 0.0, u0],
            [0.0, py, v0],
            [0.0, 0.0, 1.0]
        ])
        self.camera_data = self._make_camera_data({
            'K': K,
            'h': h,
            'w': w
        })
        msg = create_message(ServerMessage.OK, lambda x: None)
        s.sendall(msg)

    def _set_SO3_grid_size(self, s: socket.socket, buffer: io.BytesIO):
        '''
        Set the SO(3) grid size. This dictates the number of images generated to find a coarse pose estimate.
        '''
        def random_quaternion(rand: Optional[Union[List[float], np.ndarray]] = None) -> np.ndarray:
            """ Return uniform random unit quaternion.
            Adapted from:
            https://github.com/thodan/bop_toolkit/blob/master/bop_toolkit_lib/transform.py

            :param rand: Three independent random variables that are uniformly distributed between 0 and 1.
            :return: Unit quaternion.
            """
            if rand is None:
                rand = np.random.rand(3)
            else:
                assert len(rand) == 3

            r1 = np.sqrt(1.0 - rand[0])
            r2 = np.sqrt(rand[0])
            pi2 = np.pi * 2.0
            t1 = pi2 * rand[1]
            t2 = pi2 * rand[2]

            return np.array([np.sin(t1) * r1, np.cos(t1) * r1, np.sin(t2) * r2, np.cos(t2) * r2])
        json_object = json.loads(read_string(buffer))
        value = json_object['so3_grid_size']
        if value in [72, 512, 576, 4608]:
            self.model.load_SO3_grid(value)
        else:
            print('Number of SO(3) grid samples is not standard, generating random orientations.')
            import roma
            rng = 17
            rand_gen = np.random.default_rng(seed=rng)
            rands = rand_gen.uniform(0.0, 1.0, size=(3, value))
            quats = torch.tensor(random_quaternion(rands))
            Rs = roma.random_rotmat(value)
            #Rs = roma.unitquat_to_rotmat(quats)
            self.model._SO3_grid = Rs.cuda()
        msg = create_message(ServerMessage.OK, lambda x: None)
        s.sendall(msg)


    def _make_camera_data(self, camera_data: Dict) -> CameraData:
        '''
        Create a camera representation that is understandable by megapose.
        camera_data: A dict containing the keys K, h, w
        K is the 3x3 intrinsics matrix
        h and w are the input image resolution.

        Returns a CameraData object, to be given to megapose.
        '''
        c = CameraData()
        c.K = camera_data['K']
        c.resolution = (camera_data['h'], camera_data['w'])
        print(c)
        c.z_near = 0.001
        c.z_far = 100000
        return c


    def run(self):
        """
        Starts the server, listening for incoming connections.
        """
        try:
            with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
                s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
                s.bind((self.host, self.port))
                s.listen()
                print(f'MegaPose server listening for connections on {self.host}:{self.port}')
                while True:
                    print('Waiting for connection')
                    connection, address = s.accept()
                    print(f'Connected to {address}')
                    with connection:
                        while True:
                            try:
                                import time
                                t = time.time()
                                code, buffer = receive_message(connection)
                                if code == ServerMessage.EXIT.value:
                                    connection.close()
                                    print(f'Connection to {address} closed.')
                                    break
                                else:
                                    self.operations[code](connection, buffer)
                            except:
                                traceback.print_exc()
                                print('Connection broken')
                                break
        except Exception as e:
            traceback.print_exc()
            print('Shutting down server')




if __name__ == '__main__':
    megapose_models = {
        'RGB': ('megapose-1.0-RGB', False),
        'RGBD': ('megapose-1.0-RGBD', True),
        'RGB-multi-hypothesis': ('megapose-1.0-RGB-multi-hypothesis', False),
        'RGBD-multi-hypothesis': ('megapose-1.0-RGB-multi-hypothesis-icp', True),
    }
    parser = argparse.ArgumentParser()
    parser.add_argument('--host', type=str, default='127.0.0.1', help='IP or hostname to bind the server to. Set to 0.0.0.0 if you wish to listen for incoming connections from any source (dangerous)')
    parser.add_argument('--port', type=int, default=5555, help='The port on which to listen for new connections')
    parser.add_argument('--model', type=str, choices=megapose_models.keys(), default='RGB', help='''
                        Which MegaPose model to use. Some models require the depth map.
                        Some models generate multiple hypotheses when estimating the pose, at the cost of more computation.
                        Options: RGB, RGBD, RGB-multi-hypothesis, RGBD-multi-hypothesis''')
    parser.add_argument('--meshes-directory', type=str, default='./meshes', help='Directory containing the 3D models. each 3D model must be in its own subfolder')
    parser.add_argument('--optimize', action='store_true', help='Experimental: Optimize network for inference speed. This may incur a loss of accuracy.')
    parser.add_argument('--num-workers', type=int, default=4, help='Number of workers for rendering')
    parser.add_argument('--no-warmup', action='store_true', help='Whether to perform model warmup before starting the server. Warmup will avoid a slow first pose estimation.')
    parser.add_argument('--verbose', action='store_true', help='Whether to print additional information such as execution time and results.')
    args = parser.parse_args()

    mesh_dir = Path(args.meshes_directory).absolute()
    assert mesh_dir.exists(), 'Mesh directory does not exist, cannot start server'
    # Default camera data
    camera_data = {
        'K': np.asarray([
            [700, 0.0, 320],
            [0.0, 700, 240],
            [0.0, 0.0, 1.0]
        ]),
        'h': 480,
        'w': 640
    }

    server = MegaposeServer(args.host, args.port, megapose_models[args.model][0],
                            mesh_dir, camera_data, optimize=args.optimize,
                            num_workers=args.num_workers, warmup=not args.no_warmup,
                            verbose=args.verbose)

    server.run()