source/simulate/detector.py [61:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            response = json.loads(response.text)
            print('Response = {}'.format(response))

            bbox_coords = np.array(response['bbox_coords'])
            bbox_scores = np.array(response['bbox_scores'])
            class_ids = np.zeros(shape=(bbox_scores.shape[0], ))
            print('bbox_coords.shape = {}'.format(bbox_coords.shape))
            print('bbox_scores.shape = {}'.format(bbox_scores.shape))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/simulate/detector.py [93:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            response = json.loads(response.text)
            print('Response = {}'.format(response))

            bbox_coords = np.array(response['bbox_coords'])
            bbox_scores = np.array(response['bbox_scores'])
            class_ids = np.zeros(shape=(bbox_scores.shape[0], ))
            print('bbox_coords.shape = {}'.format(bbox_coords.shape))
            print('bbox_scores.shape = {}'.format(bbox_scores.shape))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



