rlorlou commited on
Commit
1e5e72b
·
verified ·
1 Parent(s): 0314138

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -22,13 +22,12 @@ Tracks have a unique ID (among a file) so you may extract all the detections for
22
  track_data = df[df["unique_track_identifier"] == "2022_09_21_astor_place_landfill_0000_0"]
23
  ```
24
 
25
- For each detection columns `xmin, xmax, ymin, ymax` indicates the bounding box in pixel coordinates (note that the images are equirectangular with size 3840x1920 but bounding boxes may appear with xmin > 3840 which indicates a wrapping around : xmin = 4240 is equivalent to xmin = 400)
26
- For each detection columns `sapiens_308_[JOINTNAME]_[x,y,score]` contains the pixel coordinates and confidence for detections using Sapiens with Goliath 308 keypoints format
27
- For each detection columns `vitpose_[JOINTNAME]_[x,y,score]` contains the pixel coordinates and confidence for detections using VitPose with COCO 17 keypoints format
 
28
 
29
- The `mask_rle` column contains the RLE encoded binary mask of the person in the image. RLE encoding / decoding functions :
30
-
31
- ```
32
  import torch
33
 
34
  def encode_RLE(mask):
 
22
  track_data = df[df["unique_track_identifier"] == "2022_09_21_astor_place_landfill_0000_0"]
23
  ```
24
 
25
+ - For each detection columns `xmin, xmax, ymin, ymax` indicates the bounding box in pixel coordinates (note that the images are equirectangular with size 3840x1920 but bounding boxes may appear with xmin > 3840 which indicates a wrapping around : xmin = 4240 is equivalent to xmin = 400)
26
+ - For each detection columns `sapiens_308_[JOINTNAME]_[x,y,score]` contains the pixel coordinates and confidence for detections using Sapiens with Goliath 308 keypoints format
27
+ - For each detection columns `vitpose_[JOINTNAME]_[x,y,score]` contains the pixel coordinates and confidence for detections using VitPose with COCO 17 keypoints format
28
+ - The `mask_rle` column contains the RLE encoded binary mask of the person in the image. RLE encoding / decoding functions :
29
 
30
+ ```python
 
 
31
  import torch
32
 
33
  def encode_RLE(mask):