TokyoTechMagicYang commited on
Commit
773120b
·
verified ·
1 Parent(s): 5a5af10

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -12,4 +12,32 @@ Benchmark code is available in <https://github.com/YSongxiao/RAM-W600>.
12
  Please run the following command to download RAM-W600:
13
  ```bash
14
  git clone https://huggingface.co/datasets/TokyoTechMagicYang/RAM-W600
15
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  Please run the following command to download RAM-W600:
13
  ```bash
14
  git clone https://huggingface.co/datasets/TokyoTechMagicYang/RAM-W600
15
+ ```
16
+ ## BoneSegmentation Mask Channel Mapping
17
+
18
+ The BoneSegmentation masks are stored as 14-channel `.npy` arrays with shape:
19
+
20
+ ```python
21
+ (14, H, W)
22
+ ```
23
+
24
+ Each channel is a binary mask for one anatomical structure. The official channel order is:
25
+
26
+ | Channel ID | Anatomy name | Description |
27
+ |---:|---|---|
28
+ | 0 | Capitate | Capitate bone |
29
+ | 1 | DistalRadius | Distal radius |
30
+ | 2 | DistalUlna | Distal ulna |
31
+ | 3 | Hamate | Hamate bone |
32
+ | 4 | Lunate | Lunate bone |
33
+ | 5 | Tri | Triquetrum / pisiform region |
34
+ | 6 | Scaphoid | Scaphoid bone |
35
+ | 7 | Trapzium | Trapezium bone |
36
+ | 8 | Trapezoid | Trapezoid bone |
37
+ | 9 | Metacarpal1st | First metacarpal |
38
+ | 10 | Metacarpal2nd | Second metacarpal |
39
+ | 11 | Metacarpal3rd | Third metacarpal |
40
+ | 12 | Metacarpal4th | Fourth metacarpal |
41
+ | 13 | Metacarpal5th | Fifth metacarpal |
42
+
43
+ The channel semantics are fixed across all samples. If images are canonicalized by hand side, this changes only the image orientation; it does not change the anatomical meaning of the channels.