GenZmeY
3acbb56f87
- add preview mode; - deps config; - upscale mode is selected automatically; - add scale mode support (i.e. without noise reduction); - refactoring.
121 lines
3.2 KiB
Bash
121 lines
3.2 KiB
Bash
#!/bin/bash
|
|
|
|
# This file is part of video2d-2x.
|
|
#
|
|
# video2d-2x is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
source "$Waifu2xConf"
|
|
|
|
readonly TmpFramesSrcDir="${PreviewDir}_tmpsrc"
|
|
readonly TmpFramesOutDir="${PreviewDir}_tmpout"
|
|
|
|
if ! [[ -r "$RangesList" ]]; then
|
|
echo "Read file error: \"$RangesList\""
|
|
exit "$FILE_READ_ERROR"
|
|
fi
|
|
|
|
if ! check_ranges; then
|
|
exit "$RANGES_LIST_SYNTAX_ERROR"
|
|
fi
|
|
|
|
rm -rf "$PreviewDir" "$TmpFramesSrcDir" "$TmpFramesOutDir"
|
|
mkdir -p "$PreviewDir" "$TmpFramesSrcDir" "$TmpFramesOutDir"
|
|
|
|
# Prepare frames
|
|
CopyList=""
|
|
while read Line
|
|
do
|
|
if [[ -z "$Line" ]]; then
|
|
continue
|
|
fi
|
|
|
|
RangeInfo=($Line)
|
|
StartFrame=$(png_num ${RangeInfo[0]})
|
|
EndFrame=$(png_num ${RangeInfo[1]})
|
|
TargetFrame=$((StartFrame + (EndFrame - StartFrame)/2))
|
|
|
|
CopyList+="$(printf "%06d" $TargetFrame).png "
|
|
done < <(cat "$RangesList"; echo) # make bash not skip the last line (if there is no empty line at the end)
|
|
|
|
pushd "$FramesDir" > /dev/null
|
|
cp -f $CopyList "$TmpFramesSrcDir"
|
|
popd > /dev/null
|
|
|
|
# Upscale (scale)
|
|
if [[ "$ScaleRatio" -ne 1 ]]; then
|
|
echo "Scale"
|
|
waifu2x-caffe-cui \
|
|
--mode "scale" \
|
|
--scale_ratio "$ScaleRatio" \
|
|
--output_depth "$OutputDepth" \
|
|
--tta "$TtaMode" \
|
|
--gpu "$GpuNum" \
|
|
--process "$Process" \
|
|
--crop_size "$CropSize" \
|
|
--batch_size "$BatchSize" \
|
|
--model_dir "$(model_path $Model)" \
|
|
--input_path "$TmpFramesSrcDir" \
|
|
--output_path "$TmpFramesOutDir" \
|
|
> /dev/null
|
|
|
|
echo "Copy"
|
|
pushd "$TmpFramesOutDir" > /dev/null
|
|
while read Filename
|
|
do
|
|
NewFilename=$(echo "$Filename" | sed "s|.png|_scale${ScaleRatio}.png|")
|
|
mv "$Filename" "$PreviewDir/$NewFilename"
|
|
done < <(find "$TmpFramesOutDir" -type f -name '*.png' -printf "%f\n")
|
|
popd > /dev/null
|
|
fi
|
|
|
|
# Upscale (noise_scale)
|
|
for NoiseLevel in 0 1 2 3
|
|
do
|
|
if [[ "$ScaleRatio" -eq 1 ]]; then
|
|
UpscaleMode="noise"
|
|
else
|
|
UpscaleMode="noise_scale"
|
|
fi
|
|
|
|
echo "$UpscaleMode $NoiseLevel"
|
|
waifu2x-caffe-cui \
|
|
--mode "$UpscaleMode" \
|
|
--scale_ratio "$ScaleRatio" \
|
|
--output_depth "$OutputDepth" \
|
|
--noise_level "$NoiseLevel" \
|
|
--tta "$TtaMode" \
|
|
--gpu "$GpuNum" \
|
|
--process "$Process" \
|
|
--crop_size "$CropSize" \
|
|
--batch_size "$BatchSize" \
|
|
--model_dir "$(model_path $Model)" \
|
|
--input_path "$TmpFramesSrcDir" \
|
|
--output_path "$TmpFramesOutDir" \
|
|
> /dev/null
|
|
|
|
echo "Copy"
|
|
pushd "$TmpFramesOutDir" > /dev/null
|
|
while read Filename
|
|
do
|
|
NewFilename=$(echo "$Filename" | sed "s|.png|_scale${ScaleRatio}_noise${NoiseLevel}.png|")
|
|
mv "$Filename" "$PreviewDir/$NewFilename"
|
|
done < <(find "$TmpFramesOutDir" -type f -name '*.png' -printf "%f\n")
|
|
popd > /dev/null
|
|
done
|
|
|
|
pushd "$TmpFramesSrcDir" > /dev/null
|
|
mv *.png "$PreviewDir"
|
|
popd > /dev/null
|
|
|
|
rm -rf "$TmpFramesSrcDir" "$TmpFramesOutDir" |