You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I got around to playing with Rulr over the weekend and was able to get the calibration working properly without much issue. Awesome! Everything looked good when using the NodeThroughView to test the alignment.
When I used ofxRay::Camera::beginAsCamera() to apply the calibration matrices, I had a weird, large horizontal offset. After drawing into an FBO first, however, and then drawing that to screen, everything was good to go. Perhaps ofFbo::begin() is doing something with the viewport to make it work? I was testing on 0.9.x -- I think 0.9.3.
The text was updated successfully, but these errors were encountered:
sounds very strange, not something i've come across.
really curious where the issue comes from but don't have time to look into it
things that might be different inside the fbo:
getWidth/getHeight functions
different screen setup function in advance (although i thought i clear all that)
different viewport settings
to be honest, i'm just fascinated that anybody has been able to get rulr compiling..
The answer about compiling Rulr is simpler than you think: I didn't. I used the 0.5 20161031 release :) And I watched through various videos in the hackpad to understand the Kinect-Projector calibration procedure (sorry, I didn't actually specify what I was calibrating in the original post).
Indeed, things did come out flipped, but passing flipY = true into beginAsCamera() takes care of that. I agree it's probably a size/viewport mismatch, but no need to worry about it now as drawing into an FBO seems to fix it. I just wanted to post in case anyone else runs into the issue 👌
mattfelsen
changed the title
Need to draw into FBO for calibration to be applied properly
Need to draw into FBO for Kinect-projector calibration to be applied properly
Nov 14, 2017
Hello! I got around to playing with Rulr over the weekend and was able to get the calibration working properly without much issue. Awesome! Everything looked good when using the NodeThroughView to test the alignment.
When I used
ofxRay::Camera::beginAsCamera()
to apply the calibration matrices, I had a weird, large horizontal offset. After drawing into an FBO first, however, and then drawing that to screen, everything was good to go. PerhapsofFbo::begin()
is doing something with the viewport to make it work? I was testing on 0.9.x -- I think 0.9.3.The text was updated successfully, but these errors were encountered: