Spinner
From Avisynth wiki
Abstract | |
---|---|
Author | V.C.Mohan |
Version | 9 Apr 2018 |
Download | movePlus.7z |
Category | External filters |
License | GPLv2 |
Discussion | Spinner plugin |
Contents |
Description
Turn function rotates a frame or selected part of it about the specified fulcrum. Full description
Requirements
- AviSynth+ r2347 or later
Syntax and Parameters
- Turn (clip, clip "bg", int "r", float "angle", float "x", float "y", int "q", int "er", float "eangle", float "ex", float "ey", int "lx", int "rx", int "ty", int "by", int "elx", int "rx", int "ety", int"eby", int "p", int "p", bool "norm")
- clip =
- Input clip
- clip =
- clip =
- clip to be used as background
- clip =
- int r = half of diagonal of frame
- (Initial) radius of rotating disc
- More than 0
- (Initial) radius of rotating disc
- int r = half of diagonal of frame
- float angle = 45
- (Initial) angle of rotation in degrees
- No limit. +ve clockwise
- (Initial) angle of rotation in degrees
- float angle = 45
- float x = width/2
- (Initial) x coordinate of rotation axis
- At least part of disc should be in frame
- (Initial) x coordinate of rotation axis
- float x = width/2
- float y = height/2
- (Initial) y coordinate of rotation axis
- At least part of disc should be in frame
- (Initial) y coordinate of rotation axis
- float y = height/2
- int q = 3 (Bicubic)
- Interpolation type
- 1 = Nearest neighbor
- 2 = Bilinear
- 3 = Bicubic
- 4 = Lanczos 6x6 point
- Interpolation type
- int q = 3 (Bicubic)
- int er = r
- End radius of rotating disc
- More than 0
- End radius of rotating disc
- int er = r
- float eangle = angle
- End angle of rotation in degrees
- No limit. -ve clockwise
- End angle of rotation in degrees
- float eangle = angle
- float ex = x
- End x coordinate of rotation axis
- At least part of disc should be in frame
- End x coordinate of rotation axis
- float ex = x
- float ey = y
- End y coordinate of rotation axis
- At least part of disc should be in frame
- End y coordinate of rotation axis
- float ey = y
- int lx = 0
- (Initial) left x coordinate of rectangle to display
- Should be in frame
- (Initial) left x coordinate of rectangle to display
- int lx = 0
- int rx = width - 1
- (Initial) right x coordinate of rectangle to display
- Should be in frame
- (Initial) right x coordinate of rectangle to display
- int rx = width - 1
- int ty = 0
- (Initial) top y coordinate of rectangle to display
- Should be in frame
- (Initial) top y coordinate of rectangle to display
- int ty = 0
- int by = height - 1
- (Initial) bottom y coordinate of rectangle to display
- Should be in frame
- (Initial) bottom y coordinate of rectangle to display
- int by = height - 1
- int elx = lx
- End left x coordinate of rctangle to display
- Should be in frame
- End left x coordinate of rctangle to display
- int elx = lx
- int rx = rx
- End right x coordinate of rectangle to display
- Should be in frame
- End right x coordinate of rectangle to display
- int rx = rx
- int ety = ty
- End top y coordinate of rctangle to display
- Should be in frame
- End top y coordinate of rctangle to display
- int ety = ty
- int eby = by
- End bottom y coordinate of rectangle to display
- Should be in frame
- End bottom y coordinate of rectangle to display
- int eby = by
- int p = 50
- Location percentile accuracy
- Should be 5 to 100
- Location percentile accuracy
- int p = 50
- int p = 4
- Location precision to be maintained
- 2 to 10
- Location precision to be maintained
- int p = 4
- bool norm = false
- Location precision to be maintained
- true or false
- Location precision to be maintained
- bool norm = false
Examples
im1 = imagereader(...).ConvertToRGB24() r1 = Turn(im1, q = 0, angle = 240, eangle = 4800, lx = 100, rx = 400, ty = 200, by = 250) r2 = Turn(im1, q = 2, angle = 240, x = 210.4, y = 188.6, r = 140)
Back to External Filters ←