ImageFilterNoise#
(Noise)
- Category:
ImageFilter
- Default object name:
noise
- Inherits from: ProjectItem > ImageFilter > PixelFilter
No corresponding User page.
Description#
Add noise to the image
Public Attributes#
Type | Name | Visual Hint | Description |
---|---|---|---|
long |
seed |
VISUAL_HINT_DEFAULT |
Parameter of the random generator. |
double |
min |
VISUAL_HINT_DEFAULT |
minimum generated noise value. |
double |
max |
VISUAL_HINT_DEFAULT |
maximum generated noise value. |
double |
amount |
VISUAL_HINT_PERCENTAGE |
Strenght of the noise added. |
bool |
monochromatic |
VISUAL_HINT_DEFAULT |
Inherited Public Attributes#
Type | Name | Visual Hint | Description |
---|---|---|---|
bool |
channel_r |
VISUAL_HINT_DEFAULT |
Whether this filter affects the red channel or not. |
bool |
channel_g |
VISUAL_HINT_DEFAULT |
Whether this filter affects the green channel or not. |
bool |
channel_b |
VISUAL_HINT_DEFAULT |
Whether this filter affects the blue channel or not. |
bool |
channel_a |
VISUAL_HINT_DEFAULT |
Whether this filter affects the alpha channel or not. |
bool |
channel_z |
VISUAL_HINT_DEFAULT |
Whether this filter affects the Z channel or not. |
CID#
class "ImageFilterNoise" "PixelFilter" {
#version 0.91
icon "../icons/object_icons/filter_noise.iconrc"
category "ImageFilter"
doc "Add noise to the image"
long "seed" {
doc "Parameter of the random generator."
animatable yes
numeric_range yes 0.0 10000000
value 1
}
double "min" {
doc "minimum generated noise value."
animatable yes
value -1
}
double "max" {
doc "maximum generated noise value."
animatable yes
value 1
}
percentage "amount" {
doc "Strenght of the noise added."
animatable yes
slider yes
numeric_range yes 0.0 10000
ui_range yes 0.0 1
value 0.25
}
bool "monochromatic" {
animatable yes
value yes
}
}