Sha256: 4b635ce833adf351342caa5ab2aef0a947f7812d6f57169be6fb506454581f9f

Contents?: true

Size: 969 Bytes

Versions: 3

Compression:

Stored size: 969 Bytes

Contents

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

3 entries across 3 versions & 1 rubygems

Version Path
tracksperanto-2.2.4 lib/import/syntheyes.rb
tracksperanto-2.2.2 lib/import/syntheyes.rb
tracksperanto-2.2.0 lib/import/syntheyes.rb