Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
fea6f5e1
Commit
fea6f5e1
authored
Dec 18, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/filters: reformat and rework gradfun.
Note that examples are changed.
parent
526e2415
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
9 deletions
+25
-9
filters.texi
doc/filters.texi
+25
-9
No files found.
doc/filters.texi
View file @
fea6f5e1
...
...
@@ -2668,27 +2668,43 @@ bring back the bands.
The filter accepts a list of options in the form of @var{key}=@var{value} pairs
separated by ":". A description of the accepted options follows.
@var{strength} is the maximum amount by which the filter will change
@table @option
@item strength
The maximum amount by which the filter will change
any one pixel. Also the threshold for detecting nearly flat
regions. Acceptable values range from
.51 to 64, default value is
1.2
.
regions. Acceptable values range from
@code{0.51} to @code{64}, default value
is @code{1.2}
.
@var{radius} is the neighborhood to fit the gradient to. A larger
@item radius
The neighborhood to fit the gradient to. A larger
radius makes for smoother gradients, but also prevents the filter from
modifying the pixels near detailed regions. Acceptable values are
8-32, default value is 16.
@code{8-32}, default value is @code{16}.
@end table
Alternatively, the options can be specified as a flat string:
@var{strength}[:@var{radius}]
@subsection Examples
@itemize
@item
Apply the filter with a @code{3.5} strength and radius of @code{8}:
@example
# default parameters
gradfun=1.2:16
gradfun=3.5:8
@end example
# omitting radius
gradfun=1.2
@item
Specify radius, omitting the strength (which will fall-back to the default
value):
@example
gradfun=radius=8
@end example
@end itemize
@section hflip
Flip the input video horizontally.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment