File size: 1,076 Bytes
b897210 dff680f 57db94b aea9fc1 57db94b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
---
license: mit
language:
- en
tags:
- animation
- stroke
- interpolation
- 2D
- image
- video
---
# Stroke Interpolation Model
To read the paper: https://drive.google.com/file/d/1EESd81NSs93OJYb42DartC5udTlOShRp/view?usp=sharing
## Example

The model predicts the inbetween frames (mid frame), given two key frames.
## Installation
```
pip install opencv-python
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
```
## Run the Program
```
py combined.py
```
This will load the model from checkpoints.
## Evaluate
```
py generate_eval.py
```
This generates images for evaluation.
```
py eval.py
```
This evaluates the generated images.
## Test
```
py test.py
```
Add frames in test_frames folder.
```
py video.py
```
This combines those 3 frames into .mp4 format.
## Dataset
Dataset is available at: [Google Drive Link](https://drive.google.com/file/d/1vyu_ePFN9sFjqxc-sPdSWuSCLnWFVUT7/view?usp=sharing) |