I get x y coordinates from a vision tool as text(string). I need to add a constant value to every x - element in this string.
with this statements a get a tuple of the original values and the command of my vision- tool needs a tuple as argument
above=GetValue( ObererBogen.FittedPoints )
above=above.replace( ((( , (( )
above=above.replace( ),),) , )) )
above=eval(above)
now I have a tuple named above with x,y-coordinates. But how add a constant value to each x-value ?