Print task info
Python script to call after a ROMI task to print a task summary.
angles_and_internodes_info(task, task_id, db_path)
Link
Print info about AnglesAndInternodes task output.
Source code in romitask/cli/print_task_info.py
92 93 94 95 96 97 98 99 100 101 | |
clustered_mesh_info(task, task_id, db_path)
Link
Print info about ClusteredMesh task output.
Source code in romitask/cli/print_task_info.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
json_metadata(task, task_id, db_path)
Link
Get task metadata JSON.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task
|
str
|
Name of the task. |
required |
task_id
|
str
|
Id of the tasks. |
required |
db_path
|
str
|
Path to scan dataset. |
required |
Returns:
| Type | Description |
|---|---|
str
|
JSON location. |
dict
|
Loaded JSON dictionary |
Source code in romitask/cli/print_task_info.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
list_configured_tasks(toml_conf)
Link
List the configured tasks in a toml file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
toml_conf
|
dict
|
The TOML tasks dictionary. |
required |
Returns:
| Type | Description |
|---|---|
list(str)
|
List of tasks names. |
Source code in romitask/cli/print_task_info.py
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | |
metadata_info(task, task_id, db_path)
Link
Dump a JSON metadata file for a given task & dataset.
Source code in romitask/cli/print_task_info.py
86 87 88 89 | |
pointcloud_info(task, task_id, db_path)
Link
Print info about PointCloud task output.
Source code in romitask/cli/print_task_info.py
109 110 111 112 113 114 115 116 117 118 119 | |
segmentation2d_info(task, task_id, db_path)
Link
Print info about ClusteredMesh task output.
Source code in romitask/cli/print_task_info.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | |
segmented_pointcloud_info(task, task_id, db_path)
Link
Print info about SegmentedPointCloud task output.
Source code in romitask/cli/print_task_info.py
122 123 124 125 126 127 128 129 130 131 132 133 | |
triangle_mesh_info(task, task_id, db_path)
Link
Print info about TriangleMesh task output.
Source code in romitask/cli/print_task_info.py
136 137 138 139 140 141 142 143 144 145 146 147 | |