Lumbar Coordinate Dataset
Medical images of the lower lumbar vertebra with keypoints.
@kaggle.brendanartley_lumbar_coordinate_pretraining_dataset
Medical images of the lower lumbar vertebra with keypoints.
@kaggle.brendanartley_lumbar_coordinate_pretraining_dataset
This dataset was put together as a pretraining objective for the RSNA 2024 Lumbar Spine Degenerative Classification competition. The dataset consists of various medical images of the lower lumbar spine (external data). Each image is given 5 key points that correspond to the 5 lower lumbar vertebrae.
Additionally, we include improved coordinates for the RSNA 2024 data. Here we add coordinates for the left side of each lumbar disc in the sagittal plane. This provides useful orientation information for each disc.
CREATE TABLE coords_pretrain (
"filename" VARCHAR,
"source" VARCHAR,
"x" BIGINT,
"y" BIGINT,
"level" VARCHAR,
"relative_x" DOUBLE,
"relative_y" DOUBLE
);CREATE TABLE coords_rsna_improved (
"unnamed_0" BIGINT -- Unnamed: 0,
"series_id" BIGINT,
"relative_x" DOUBLE,
"relative_y" DOUBLE,
"condition" VARCHAR,
"side" VARCHAR,
"instance_number" BIGINT,
"study_id" BIGINT,
"level" VARCHAR
);Anyone who has the link will be able to view this.