View Single Post
  #10  
Old 06-05-2012, 06:07 AM
goro goro is offline
Member
 
Join Date: May 2012
Posts: 33
This simple code flips the texture but it doesn't solve the purpose..
Code:
import viz
viz.go()

ar = viz.add('artoolkit.dle')
camera = ar.addWebCamera()

camera.background.setEuler([180,0,0])
camera.background.setPosition([640,0,0])

marker = camera.addMarker('ar/patt.worldviz',width = 1000)

logo = viz.add('logo.ive')

viz.link(marker,logo)
Marker positions miss match with the image if we go with this code.
Reply With Quote