Class: Tracksperanto::Tool::Pad

Inherits:
Base
  • Object
show all
Defined in:
lib/tools/pad.rb

Overview

This tool pads the comp or crops it if given negative values. Use it to say unpad some fucked-up telecine transfers. The padding is in fractional units of the total width and height

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

inherited, #initialize

Methods included from Parameters

#parameter, #parameters

Methods included from SimpleExport

#just_export

Methods included from ConstName

#const_name

Methods included from BlockInit

#initialize

Methods included from Casts

#cast_to_bool, #cast_to_float, #cast_to_int, #cast_to_string

Constructor Details

This class inherits a constructor from Tracksperanto::Tool::Base

Class Method Details

.action_descriptionObject



11
12
13
# File 'lib/tools/pad.rb', line 11

def self.action_description
  "Pad or crop the image by a fraction of it's original size"
end

Instance Method Details

#export_point(frame, float_x, float_y, float_residual) ⇒ Object



22
23
24
# File 'lib/tools/pad.rb', line 22

def export_point(frame, float_x, float_y, float_residual)
  super(frame, float_x - @shift_left, float_y - @shift_bottom, float_residual)
end

#start_export(w, h) ⇒ Object



15
16
17
18
19
20
# File 'lib/tools/pad.rb', line 15

def start_export(w, h)
  @shift_left, @shift_bottom = w * left_pad, h * bottom_pad
  w_mult = 1 + left_pad + right_pad
  h_mult = 1 + bottom_pad + top_pad
  super((w * w_mult).ceil, (h * h_mult).ceil)
end