household_objects_database_msgs¶
Contents:
Summary¶
-
household_objects_database_msgs
¶ Version: 0.1.1
Description: The household_objects_database_msgs package
Maintainers: - Matei Ciocarlie <matei AT willowgarage DOT com>
Licenses: - BSD
BuildDepends: BuildtoolDepends: BuildExportDepends: ExecDepends:
Types¶
Service types¶
household_objects_database_msgs/SaveScan
household_objects_database_msgs/GetModelScans
household_objects_database_msgs/GetModelMesh
household_objects_database_msgs/TranslateRecognitionId
household_objects_database_msgs/GetModelList
household_objects_database_msgs/GetModelDescription
-
household_objects_database_msgs/SaveScan
¶ Field (Request): - scaled_model_id (int32) –
- ground_truth_pose (geometry_msgs/PoseStamped) –
- bagfile_location (string) –
- scan_source (string) –
- cloud_topic (string) –
Field (Response): - return_code (household_objects_database_msgs/DatabaseReturnCode) –
Stores information about a saved scan of an object to the database
the id of the model
# Stores information about a saved scan of an object to the database # the id of the model int32 scaled_model_id # The ground truth location of the object represented by the point cloud geometry_msgs/PoseStamped ground_truth_pose # The location of the bagfile storing the scan string bagfile_location # The string name of the source of the scan data string scan_source # The topic in the bag that the cloud is published on string cloud_topic --- # the outcome of the query DatabaseReturnCode return_code
-
household_objects_database_msgs/GetModelScans
¶ Field (Request): - model_id (int32) –
- scan_source (string) –
Field (Response): - return_code (household_objects_database_msgs/DatabaseReturnCode) –
- matching_scans[] (household_objects_database_msgs/DatabaseScan) –
retrieves a list of object scans which match a given model id and source
the id of the model
# retrieves a list of object scans which match a given model id and source # the id of the model int32 model_id # the string name of the source of the scan data string scan_source --- # the outcome of the query DatabaseReturnCode return_code # the returned scans DatabaseScan[] matching_scans
-
household_objects_database_msgs/GetModelMesh
¶ Field (Request): - model_id (int32) –
Field (Response): - return_code (household_objects_database_msgs/DatabaseReturnCode) –
- mesh (shape_msgs/Mesh) –
retrieves the mesh for a model id
the id of the model
# retrieves the mesh for a model id # the id of the model int32 model_id --- # the outcome of the query DatabaseReturnCode return_code # the returned mesh shape_msgs/Mesh mesh
-
household_objects_database_msgs/TranslateRecognitionId
¶ Field (Request): - recognition_id (string) –
Field (Response): - household_objects_id (int32) –
- ID_NOT_FOUND (int32) –
- DATABASE_ERROR (int32) –
- OTHER_ERROR (int32) –
- result (int32) –
Constant (Response): - SUCCESS (int32):
0
–
string recognition_id --- int32 household_objects_id int32 SUCCESS=0 int32 ID_NOT_FOUND int32 DATABASE_ERROR int32 OTHER_ERROR int32 result
-
household_objects_database_msgs/GetModelList
¶ Field (Request): - model_set (string) –
Field (Response): - return_code (household_objects_database_msgs/DatabaseReturnCode) –
- model_ids[] (int32) –
retrieves model id’s from the database
optional: the name of a model set that the id’s should belong to; used to only retrieve a subset of models, pre-specified in the database leave empty to get all available models
# retrieves model id's from the database # optional: the name of a model set that the id's should belong to; # used to only retrieve a subset of models, pre-specified in the database # leave empty to get all available models string model_set --- # the outcome of the query DatabaseReturnCode return_code # the actual model ids int32[] model_ids
-
household_objects_database_msgs/GetModelDescription
¶ Field (Request): - model_id (int32) –
Field (Response): - return_code (household_objects_database_msgs/DatabaseReturnCode) –
- tags[] (string) –
- name (string) –
- maker (string) –
retreieves various metadata for an model id
the id of the model
# retreieves various metadata for an model id # the id of the model int32 model_id --- # the outcome of the query DatabaseReturnCode return_code # the tags of the model string[] tags # the name of the model string name # the maker of the model string maker