Hi, I was wondering about the ag_div term in your cac computation... Why do you divide the pixel volume by 3? Thank you!
From src/run_step4_cac_scoring.py:
ag_div = 3
def get_ag(img_cube, msk_cube, nr_con_px, spacing, ag_div):
...
px_volume = round(spacing[0] * spacing[1] * spacing[2] / ag_div, 3)
...