Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 import label_object
00030
00031 class scan_dataset(object):
00032 '''
00033 classdocs
00034 '''
00035
00036
00037 def __init__(self):
00038 '''
00039 Constructor
00040 '''
00041 self.dict = {}
00042 self.dict['title'] = ''
00043 self.dict['id'] = ''
00044 self.dict['polygons'] = [label_object.label_object()]
00045 self.dict['scan_filename'] = ''
00046 self.dict['image_filename'] = ''
00047 self.dict['image_artag_filename'] = ''
00048
00049 self.dict['surface_id'] = ''
00050 self.dict['surface_height'] = ''
00051 self.dict['camera_height'] = ''
00052 self.dict['camera_angle'] = ''
00053 self.dict['surface_type'] = ''
00054
00055 self.dict['ground_plane_normal'] = ''
00056 self.dict['ground_plane_three_points'] = ''
00057
00058 self.dict['is_training_set'] = False
00059 self.dict['is_test_set'] = False
00060 self.dict['is_labeled'] = False
00061 self.dict['ground_plane_rotation'] = ''
00062
00063
00064
00065
00066
00067 def __setattr__(self, name, value):
00068 if not name == 'dict':
00069 self.dict[name] = value
00070 else:
00071 object.__setattr__(self, name, value)
00072
00073 def __getattr__(self, name):
00074 if not name == 'dict' and name in self.dict:
00075 return self.dict[name]
00076 else:
00077 return object.__getattribute__(self, name)
00078
clutter_segmentation
Author(s): Jason Okerman, Martin Schuster, Advisors: Prof. Charlie Kemp and Jim Regh, Lab: Healthcare Robotics Lab at Georgia Tech
autogenerated on Wed Nov 27 2013 12:07:15