Skip to content

Commit

Permalink
Expand the list of bone names for matching (#348)
Browse files Browse the repository at this point in the history
Include a few more long-bone(ish) bones in the bone list.
  • Loading branch information
mdoube authored May 14, 2024
1 parent b9da758 commit e95fdd7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Legacy/util/src/main/java/org/bonej/util/BoneList.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ public final class BoneList {
// Only add new bone names to the END of this list
private static final String[] boneList = { "unknown", "scapula", "humerus",
"radius", "ulna", "metacarpal", "pelvis", "femur", "tibia", "fibula",
"metatarsal", "calcaneus", "tibiotarsus", "tarsometatarsal", "sacrum" };
"metatarsal", "calcaneus", "tibiotarsus", "tarsometatarsal", "sacrum",
"mandible", "clavicle", "rib", "ilium", "os_penis", "os_clitoridis",
"coracoid", "proximal_phalanx", "distal_phalanx", "middle_phalanx",
"intermediate_phalanx", "basihyoid", "ceratohyoid", "epihyoid", "thyrohyoid",
"stylohyoid", "tympanohyoid", "malleus", "incus", "stapes", "columella",
"ischium", "patella", "talus"};

private BoneList() {}

Expand Down

0 comments on commit e95fdd7

Please sign in to comment.