Sha256: a49c0f75e4326ac2916e7b1a8a2a6901c645a183ee55627adf534c41687c353d
Contents?: true
Size: 815 Bytes
Versions: 11
Compression:
Stored size: 815 Bytes
Contents
# Export for Shake .txt tracker blobs class Tracksperanto::Export::ShakeText < Tracksperanto::Export::Base PREAMBLE = "TrackName %s\n Frame X Y Correlation\n" POSTAMBLE = "\n" # Should return the suffix and extension of this export file (like "_flame.stabilizer") def self.desc_and_extension "shake_trackers.txt" end def self.human_name "Shake trackers in a .txt file" end def start_tracker_segment(tracker_name) @io.puts PREAMBLE % tracker_name end def end_tracker_segment @io.puts POSTAMBLE end def export_point(frame, abs_float_x, abs_float_y, float_residual) # Shake starts from frame 1, not 0 line = " %.2f %.3f %.3f %.3f" % [frame + 1, abs_float_x, abs_float_y, 1 - float_residual] @io.puts line end end
Version data entries
11 entries across 11 versions & 1 rubygems