This commit is contained in:
Erik Frojdh
2023-05-31 14:25:20 +02:00
parent 6013f94d01
commit b21ae3da2e
3 changed files with 106 additions and 73 deletions

View File

@ -33,3 +33,16 @@ conda develop install .
#or with pip
pip install --editable .
```
## Cluster file specifications
```
[int32 frame_number][int32 n_clusters][clusters....]
// Cluster data type
typedef struct {
int16_t x;
int16_t y;
int32_t data[9];
} Cluster ;
```