-
Notifications
You must be signed in to change notification settings - Fork 3
/
Segment.m
20 lines (18 loc) · 988 Bytes
/
Segment.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%{
# Segment: a volumetric segmented object
-> ta3.Segmentation
segment_id : bigint # segment id unique within each Segmentation
---
boss_vset_id=null : bigint unsigned # IARPA's BOSS storage if applicable
key_point_x : int # (um)
key_point_y : int # (um)
key_point_z : int # (um)
x_min : int # (um) bounding box
y_min : int # (um) bounding box
z_min : int # (um) bounding box
x_max : int # (um) bounding box
y_max : int # (um) bounding box
z_max : int # (um) bounding box
%}
classdef Segment < dj.Manual
end