You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just wanted to share my approach to download additiional head images for 3d reconstruction of dental related CT / DICOMs
#!/bin/bash
counter=0
while [ $counter-le 463 ]
do# Format the counter to always have 3 digits
padded_counter=$(printf "%03d""$counter")
url="https://data.lhncbc.nlm.nih.gov/public/Visible-Human/Additional-Head-Images/MR_CT_DICOM/CAT/J.${padded_counter}.gz"echo"Downloading: $url"# Download the file
wget "$url"||echo"Failed to download J.$padded_counter.gz"&& sleep 2
((counter++))doneecho All done
The text was updated successfully, but these errors were encountered:
Just wanted to share my approach to download additiional head images for 3d reconstruction of dental related CT / DICOMs
The text was updated successfully, but these errors were encountered: