https://github.com/g-gisbert/Neural-Inpainting-Of-Folded-Fabric-Meshes
Raw File
Tip revision: 62118469b21cbc1c128ccfdf29a8d22ccf9bd6e1 authored by Guillaume Gisbert on 28 June 2024, 08:53:11 UTC
obj added
Tip revision: 6211846
downloadWeights.sh
#!/bin/bash

url="https://projet.liris.cnrs.fr/e_roma/fabric_inpainting"
files=("gravity.tar" "standard.tar" "interpen.tar")

mkdir -p weights

cd weights

for file in "${files[@]}"
do
    echo "Downloading $file..."
    wget "$url/$file"
done

echo "Weights downloaded successfully!"

file="scarffolds.tar.gz"

cd ..

echo "Downloading $file..."
wget "$url/$file"

echo "Dataset downloaded successfully!"

tar -xzvf scarffolds.tar.gz

echo "Dataset extracted"
back to top