Class: Google::Apis::TranscoderV1::Denoise
- Inherits:
-
Object
- Object
- Google::Apis::TranscoderV1::Denoise
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/transcoder_v1/classes.rb,
lib/google/apis/transcoder_v1/representations.rb,
lib/google/apis/transcoder_v1/representations.rb
Overview
Denoise preprocessing configuration. Note: This configuration is not supported.
Instance Attribute Summary collapse
-
#strength ⇒ Float
Set strength of the denoise.
-
#tune ⇒ String
Set the denoiser mode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Denoise
constructor
A new instance of Denoise.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Denoise
Returns a new instance of Denoise.
508 509 510 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 508 def initialize(**args) update!(**args) end |
Instance Attribute Details
#strength ⇒ Float
Set strength of the denoise. Enter a value between 0 and 1. The higher the
value, the smoother the image. 0 is no denoising. The default is 0.
Corresponds to the JSON property strength
500 501 502 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 500 def strength @strength end |
#tune ⇒ String
Set the denoiser mode. The default is standard. Supported denoiser modes: -
standard - grain
Corresponds to the JSON property tune
506 507 508 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 506 def tune @tune end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
513 514 515 516 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 513 def update!(**args) @strength = args[:strength] if args.key?(:strength) @tune = args[:tune] if args.key?(:tune) end |