Honestly, I think it may be simplest to replace your ImageView (videoView) with another Canvas, get the GraphicsContext from that Canvas, and manually call gc.drawImage(myImage,0,0,width,height)
to draw the image whenever you need it drawn.
That way the image you display will always be starting at 0,0.
You lose the auto-scaling functionality that ImageView has by using a Canvas to display the image, but in the end auto-scaling wasn't very useful for us anyway, since we need to know how much scaling is taking place anyway!
(I helped another group with this, and it took surprisingly little time to replace the ImageView with a canvas...)