Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
729ebd3c
"README.md" did not exist on "cb595b7f029297750e9fd98d0a4d12f2e2c38ea4"
Commit
729ebd3c
authored
6 years ago
by
Mina
Committed by
Thilo Borgmann
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
lavfi/vf_colorconstancy: change option ranges
parent
1f18a633
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/filters.texi
+3
-3
3 additions, 3 deletions
doc/filters.texi
libavfilter/vf_colorconstancy.c
+3
-3
3 additions, 3 deletions
libavfilter/vf_colorconstancy.c
with
6 additions
and
6 deletions
doc/filters.texi
+
3
−
3
View file @
729ebd3c
...
...
@@ -9955,13 +9955,13 @@ The order of differentiation to be applied on the scene. Must be chosen in the r
@item minknorm
The Minkowski parameter to be used for calculating the Minkowski distance. Must
be chosen in the range [0,
65535
] and default value is 1. Set to 0 for getting
be chosen in the range [0,
20
] and default value is 1. Set to 0 for getting
max value instead of calculating Minkowski distance.
@item sigma
The standard deviation of Gaussian blur to be applied on the scene. Must be
chosen in the range [0,1024.0] and default value = 1.
Sigma can't be set to 0
if @var{difford} is greater than 0.
chosen in the range [0,1024.0] and default value = 1.
floor( @var{sigma} * break_off_sigma(3) )
can't be euqal to 0
if @var{difford} is greater than 0.
@end table
@subsection Examples
...
...
This diff is collapsed.
Click to expand it.
libavfilter/vf_colorconstancy.c
+
3
−
3
View file @
729ebd3c
...
...
@@ -735,9 +735,9 @@ static const AVFilterPad colorconstancy_outputs[] = {
#if CONFIG_GREYEDGE_FILTER
static
const
AVOption
greyedge_options
[]
=
{
{
"difford"
,
"set differentiation order"
,
OFFSET
(
difford
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
2
,
FLAGS
},
{
"minknorm"
,
"set Minkowski norm"
,
OFFSET
(
minknorm
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
65535
,
FLAGS
},
{
"sigma"
,
"set sigma"
,
OFFSET
(
sigma
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
1
},
0
.
0
,
1024
.
0
,
FLAGS
},
{
"difford"
,
"set differentiation order"
,
OFFSET
(
difford
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
2
,
FLAGS
},
{
"minknorm"
,
"set Minkowski norm"
,
OFFSET
(
minknorm
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
2
0
,
FLAGS
},
{
"sigma"
,
"set sigma"
,
OFFSET
(
sigma
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=
1
},
0
.
0
,
1024
.
0
,
FLAGS
},
{
NULL
}
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment