Class: Google::Apis::TranscoderV1beta1::Denoise

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/transcoder_v1beta1/classes.rb,
generated/google/apis/transcoder_v1beta1/representations.rb,
generated/google/apis/transcoder_v1beta1/representations.rb

Overview

Denoise preprocessing configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Denoise

Returns a new instance of Denoise.



477
478
479
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 477

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#strengthFloat

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

Returns:

  • (Float)


469
470
471
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 469

def strength
  @strength
end

#tuneString

Set the denoiser mode. The default is "standard". Supported denoiser modes: - 'standard' - 'grain' Corresponds to the JSON property tune

Returns:

  • (String)


475
476
477
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 475

def tune
  @tune
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



482
483
484
485
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 482

def update!(**args)
  @strength = args[:strength] if args.key?(:strength)
  @tune = args[:tune] if args.key?(:tune)
end