BubblyYi / Coronary-Artery-Tracking-via-3D-CNN-Classification

The PyTorch re-implement of a 3D CNN Tracker to extract coronary artery centerlines with state-of-the-art (SOTA) performance. (paper: 'Coronary artery centerline extraction in cardiac CT angiography using a CNN-based orientation classifier')
MIT License
187 stars 40 forks source link

question on code #6

Closed ziqing-wan99 closed 3 years ago

ziqing-wan99 commented 3 years ago

center_x_pixel = get_spacing_res2(center_x, spacing_x, resize_factor[1]) center_y_pixel = get_spacing_res2(center_y, spacing_y, resize_factor[2]) center_z_pixel = get_spacing_res2(center_z, spacing_z, resize_factor[0])

May I know why for center_x_pixel, the index of resize_factor is 1? Thanks!