Download whole RAISE dataset #48

Closed
opened 2024-04-14 01:07:38 +02:00 by Benjamin_Loison · 2 comments
No description provided.
Benjamin_Loison added the
medium priority
medium
labels 2024-04-14 01:07:38 +02:00
Author
Owner
file=../RAISE_all.csv; tail -n +2 $file | cut -d ',' -f2 | xargs -I % sh -c 'wget -q % && echo %' | tqdm --total `wc -l $file | cut -d ' ' -f1`; matrix-commander -m 'RAISE download finished!'
100%|█████████████████████████████████████████████████████████████████████████▉| 8156/8157 [3:59:28<00:01,  1.76s/it]

Total .nef size: 138G.

```bash file=../RAISE_all.csv; tail -n +2 $file | cut -d ',' -f2 | xargs -I % sh -c 'wget -q % && echo %' | tqdm --total `wc -l $file | cut -d ' ' -f1`; matrix-commander -m 'RAISE download finished!' ``` ``` 100%|█████████████████████████████████████████████████████████████████████████▉| 8156/8157 [3:59:28<00:01, 1.76s/it] ``` Total `.nef` size: 138G.
Author
Owner

About converting to less :

for file in *.NEF; do darktable-cli $file ../png/${file//.NEF/}.png 2>&1; done | tqdm --total `ls *.NEF | wc -l | cut -d ' ' -f1`; matrix-commander -m 'Conversion finished!'
100%|█████████████████████████████████████████████████████████████████████████| 8156/8156 [10:16:28<00:00,  4.54s/it]
About converting to less : ```bash for file in *.NEF; do darktable-cli $file ../png/${file//.NEF/}.png 2>&1; done | tqdm --total `ls *.NEF | wc -l | cut -d ' ' -f1`; matrix-commander -m 'Conversion finished!' ``` ``` 100%|█████████████████████████████████████████████████████████████████████████| 8156/8156 [10:16:28<00:00, 4.54s/it] ```
Sign in to join this conversation.
No description provided.