Sha256: 930c21067c65b67b21203222d5703a8f67b0baf752b28a77dd57471f11d16c50

Contents?: true

Size: 1002 Bytes

Versions: 16

Compression:

Stored size: 1002 Bytes

Contents

# -*- encoding : utf-8 -*-
class Tracksperanto::Import::Syntheyes < Tracksperanto::Import::Base
  include Tracksperanto::UVCoordinates
  
  def self.human_name
    "Syntheyes 2D tracker paths file"
  end
  
  def each
    @io.each_line do | line |
      name, frame, x, y, frame_status = line.split
      
      # Do we already have this tracker?
      unless @last_tracker && @last_tracker.name == name
        yield(@last_tracker) if @last_tracker
        report_progress("Allocating tracker #{name}")
        @last_tracker = Tracksperanto::Tracker.new{|t| t.name = name }
      end
      
      # Add the keyframe
      k = Tracksperanto::Keyframe.new do |e| 
        e.frame = frame
        e.abs_x = convert_from_uv(width, x)
        e.abs_y = height - convert_from_uv(height, y) # Convert TL to BL
      end
      
      @last_tracker.push(k)
      report_progress("Adding keyframe #{frame} to #{name}")
    end
    
    yield(@last_tracker) if @last_tracker && @last_tracker.any?
    
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
tracksperanto-2.12.0 lib/import/syntheyes.rb
tracksperanto-2.11.3 lib/import/syntheyes.rb
tracksperanto-2.11.2 lib/import/syntheyes.rb
tracksperanto-2.11.1 lib/import/syntheyes.rb
tracksperanto-2.11.0 lib/import/syntheyes.rb
tracksperanto-2.10.0 lib/import/syntheyes.rb
tracksperanto-2.9.9 lib/import/syntheyes.rb
tracksperanto-2.9.8 lib/import/syntheyes.rb
tracksperanto-2.9.7 lib/import/syntheyes.rb
tracksperanto-2.9.6 lib/import/syntheyes.rb
tracksperanto-2.9.5 lib/import/syntheyes.rb
tracksperanto-2.9.4 lib/import/syntheyes.rb
tracksperanto-2.9.3 lib/import/syntheyes.rb
tracksperanto-2.9.2 lib/import/syntheyes.rb
tracksperanto-2.9.1 lib/import/syntheyes.rb
tracksperanto-2.9.0 lib/import/syntheyes.rb