Platforms:
- Linux
- Windows
- macOS
Python versions: 2.7, 3.7, 3.8 and 3.9
OTIO 0.14.0 has 22 wheels produced and uploaded to PyPI (see https://pypi.org/project/OpenTimelineIO/#files).
Platforms:
Python versions: 2.7, 3.7, 3.8 and 3.9
OTIO 0.14.0 has 22 wheels produced and uploaded to PyPI (see https://pypi.org/project/OpenTimelineIO/#files).
| /* | |
| Nuke blinkscript implementation of a simple image Transform operator. | |
| Demonstrates pixel filter interpolation algorithms. | |
| The following pixel filters are implemented: | |
| 0 - Blackman-Harris : Similar to cubic, but better performance in high frequencies | |
| 1 - Lanczos4 : 2x2 lanczos windowed sinc function | |
| 2 - Lanczos6 : 3x3 lanczos windowed sinc function | |
| 3 - Cubic : (Bicubic interpolation) - a=0.0, b=0.0 | |
| 4 - Mitchell : (Bicubic interpolation) - a=1/3, b=1/3 |
| # Tests for antialiasing a high-frequency image in various ways | |
| # Nathan Reed, July 2014 | |
| # Written for Python 3.4; requires numpy and Pillow to be installed | |
| import concurrent.futures | |
| import math | |
| import multiprocessing | |
| import numpy as np | |
| import optparse | |
| import random |
| """ | |
| An example of minimum requirements to make MultiValueField-MultiWidget for Django forms. | |
| """ | |
| import pickle | |
| from django.http import HttpResponse | |
| from django import forms | |
| from django.template import Context, Template | |
| from django.views.decorators.csrf import csrf_exempt |