Saved searches

Use saved searches to filter your results more quickly

Cancel Create saved search Sign up Reseting focus

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.

Source code for Dain-App

License

Notifications You must be signed in to change notification settings

BurguerJohn/Dain-App

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Go to file

Folders and files

Last commit message Last commit date

Latest commit

History

View all files

Repository files navigation

DAIN-APP Application

This is the source code for the video interpolation application Dain-App, developed on top of the source code of DAIN Dain GIT Project

Table of Contents

  1. Introduction
  2. Citation
  3. Requirements and Dependencies
  4. Installation
  5. Running application with interface
  6. Running application with command line
  7. Slow-motion Generation
  8. Training New Models
  9. Google Colab Demo

Introduction

Dain-App comes with a user interface and a command line script to help new users to start using it with little change to the code. You can also get the Windows binary from the build section.

Citation

If you find the code and datasets useful in your research, please cite:

@article, author=, year= > @inproceedings, title = , booktitle = , year = > @article, author=, journal=, doi=, year= > 

Requirements and Dependencies

Installation

If you use Linux. You'd better use conda env. The environment by requirements.txt has been tested on Ubuntu 18.04 and Arch Linux.

conda create --name DAIN-APP --file requirements.txt conda activate DAIN-APP pip install 'opencv-contrib-python==4.4.0.46' 

try to install pyqt by conda instead.

pip uninstall pyqt5 pip uninstall pyqt5-sip conda install pyqt 

Check out the Colab code:

Then, run the script below while inside Dain-App dir to compile the remaining modules. For more details, please refer Installation of DAIN README Doc.

$ ./build-app.sh 

Running application with interface

$ python my_design.py Or run the script to automatically initialize conda and start the GUI $ ./GUI.sh 

Running application with command line

You can see all commands for CLI using this code:

python my_design.py -cli -h 

A example of a working code:

python my_design.py -cli --input "gif/example.gif" -o "example_folder/" -on "interpolated.gif" -m "model_weights/best.pth" -fh 3 --interpolations 2 --depth_awarenes 0 --loop 0 -p 0 --alpha 0 --check_scene_change 10 --png_compress 0 --crf 1 --pixel_upscale_downscale_before 1 --pixel_downscale_upscale_after 1 --pixel_upscale_after 1 --mute_ffmpeg 1 --split_size_x -1 --split_size_y -1 --split_pad 150 --half 0 --step_extract 1 --step_interpolate 1 --batch_size 1 --use_benchmark 0 --force_flow 1 --smooth_flow 0 --downscale -1 --fast_mode 0 

Training New Models

Currently Dain-App training code is broken, to train new models, use the DAIN github and import the models to Dain-App