ah ok. yes then this should be a pretty good approximation
really interested to see how it goes, i'm really interested in using PTZ cameras as high res camera devices
as long as your training data is pretty good, then you'll also be able to up the order of the polynomial fit (e.g. 4th order)
for Lit Tree, I did a 4D input -> 3D output triangular basis polyfit with ofxPolyfit, to create a stereo (2 points in 2D space of 2 cameras) to 3D point in world space, which worked pretty well.
If you need to go for a better fit, you'll need to use something like ofxNonLinearFit. You can see how I use ofxNonLinearFit to fit the pan-tilt values of a moving head to 3D points in space here : https://github.com/elliotwoods/ofxRulr/blob/master/Nodes/src/ofxRulr/Nodes/Procedure/Calibrate/MovingHeadToWorld.cpp
best of luck! I hope this helps