[SOLVED] ofParameter update vector coordinates
Hello, i have an ofVec3f as an ofParameter and i don't know how to update just one coordinate value. for example i have : ofParameter<ofVec3f> position; I am able to get separate values using...
View ArticleSkeleton tracking without calibration (psi pose)
That can't be right about the microsoft SDK as it is only available on windows, hence the reason for libfreenect and openNI I'll assure you using the kinect natively is much much easier but obviously...
View Article[SOLVED] ofParameter update vector coordinates
Hum... well... ok !I love ofParameter thanks
View Article[SOLVED] ofParameter update vector coordinates
Well, in fact i am facing this problem : Read-only variable is not assignable
View ArticleopenMP
@divyanshu_grover, I know it's not a solution, but I recommend you to use Visual Studio 2015 (I guess it's free) and oF0.9.0 rc. I have used Visual Studio with OpenMP and works well. You just need to...
View Article[SOLVED] ofParameter update vector coordinates
mm.ive never needed to do such but, anyways, as it doesn't work for ofVectry the following. ofVec3f v = position.get(); v.x = ofGetMouseX(); position.set(v) ; best
View Article[SOLVED] ofParameter update vector coordinates
Yep, i will do like that as a turnaround.thank you If by any chance somebody knows a straighter solution...
View ArticleVery slow file listing with Visual Studio
I am trying to reuse some code of an OF project done with CodeBlocks in Windows in a new VS project, and I've notice that listing the files in a directory takes much more time. For example the code:...
View ArticleAlternative to ofxAwesomium to render HTML
despite failing to find an alternative, I can say I am happy to continue using ofxAwesomium. What I did was to remove certain types of transition in .css. The performance improved considerably...
View Article[SOLVED] ofParameter update vector coordinates
there's no way to update individual components of ofParameter, the cause is that ofParameter is meant to always notify it's event when it changes but there's no way for ofParameter to know which would...
View Article[SOLVED] ofParameter update vector coordinates
ok. Thanks for the great explanation.I will do like suggested. thanks again
View ArticleSkeleton tracking without calibration (psi pose)
I guess I am showing my ignorance when i mention the Microsoft SDK being relevant to the setup problems I am having. Thanks for the info either way @DomAmato and yes you are right, that is exactly how...
View ArticleUsing ofParameter to modify ofRect within a class with Gui
Hello, I am stuck in my project. A bit hard to explain but i will try to make it clear. I am using a kinect to detect blobs.I have two classes. one that handles the kinect sensor : class kinectTracker...
View ArticleError using Kinect - [Stream 70]
hello, i am building an app using ofxKinect.Everything is building fine but i can't get any image from kinect and log console keep throwing : [Stream 70] Expected max 1748 data bytes, but got 1908....
View ArticleUsing ofParameter to modify ofRect within a class with Gui
i think the easiest until there's some control that allows to use ofParmater<ofRectangle> would be to have ofParamters for x,y,w,h and add a listener function to all of them, when any of them...
View Article[SOLVED] Smoothing position coordinates
Hello, I am using a Kinect and openCV to detect blobs.I grab the position of the blob (centroid) but because of noise in the image detection, this position is noisy and unstable. what would be the way...
View ArticleUsing ofParameter to modify ofRect within a class with Gui
ok. Thanks for the info.I will try like you suggest. Thanks
View Article[SOLVED] Smoothing position coordinates
position = position * 0.9 + newCentroid * 0.1; or any other low pass filter, but this is probably the simplest.
View ArticleProblems combining bullet 3d with openrameworks
Hello Im a new user here and I need help compiling Bullet 3d with openframeworks. After trying two addons I gave up and decided to generate a new project and follow the steps in this tutorial....
View Article