Problem with openCV cvLoadImage(), cvSaveImage()
Many error occured when I use cvLoadImage(), cvSaveImage(). #include "ofApp.h" #include <highgui.h> //-------------------------------------------------------------- void ofApp::setup(){ IplImage...
View Article[SOLVED] Reference to Method's Object, ofEvents
Hey there, I've got a ButtonClass that draws a button and creates events when the button is clicked or hovered over. In the ofApp.cpp file I've added a listener for the event, which then calls a...
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
Nice! I used this fix USER_HEADER_SEARCH_PATHS = "$(OF_PATH)/libs/openssl/include" but when I include ofxHTTP in my project the issue with openssl appeared again:...
View ArticleWhy is ofKinect example not included for ARMv7?
This might be a really silly question, but why is there no example for ofKinect in 0.9 included in the ARMv7 (RPi 2) download? The addon is there, but no example. I tried messing about with the...
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
It should be a similar fix, but applied to your ofApp's build settings instead of the openFrameworks build settings. You can do the edit in Project.xcconfig, which will be in your ofApp's folder. Or,...
View Article[SOLVED] Reference to Method's Object, ofEvents
you just need to add a & before the variable since the ofAddListener function expects a pointer, like: ofAddListener(saveButton.clickevent, &myvideo, &VideoClass::saveImage);
View ArticleofTrueTypeFont::drawString() performance
if you aren't drawing a lot of texts you shouldn't worry and it's always better to optimize later but yes drawString has to calculate all the spacing and positions for each character so if you have to...
View ArticleProblem with openCV cvLoadImage(), cvSaveImage()
we don't include the image decoders with opecv since they would clash with freeimage the library for lading images we pack which uses the same sublibraries, libpng, libjpg... to uncompress images. if...
View ArticleDPS Effects in Openframeworks
Can someone tell me what I['m doing wrong? This code is in setup(). The code compiles, but crashes when run. The FMOD_RESULT for adding the Dsp is 16, which means it can't find the Dsp? FMOD_SYSTEM...
View ArticleWhy is ofKinect example not included for ARMv7?
Typically examples that have issues during testing on the platform are removed. Most arm6/arm7 devices are too slow to support the Kinect which is probably why they are missing.
View ArticleWrong resolution iphone 6 - nightly build - xcode 7.0.1 - ios 9.0.2
Oh it was likely due to not having the Image Loading screens / LoadingScreen xib required for those devices until later when you were preparing for AppStore. Those are required for full native...
View ArticleWater Ripples
Hi Kbronsito, Your link to download ripples.rar is not valid. Is there any way to get a copy? Thanks.
View ArticleWrong resolution iphone 6 - nightly build - xcode 7.0.1 - ios 9.0.2
Yes I confirm I've experienced what @danoli3 is saying few days ago,just add launchImages at corresponding resolution in your project and your app will launch with correct resolution
View ArticleWhy is ofKinect example not included for ARMv7?
Ahhh ok. Thanks for the response. Should I infer from this that the RPi2 is not fast enough for getting 30 fps of data off the Kinect?
View ArticleXcode 7 and .hpp files
The behavior can be changed quite easily by renaming the file ___FILEBASENAME___.hpp to ___FILEBASENAME___.h in this folder: /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File\...
View ArticleOfxpatterns trobleshoot
This addon https://github.com/carlesgutierrez/ofxPatterns was updated the last time 2 years ago, maybe it is not up to date with the current OF version. I would open an issue on the github page of...
View ArticleCompiling errors of ofxmotiontracker ofxaddon
I am trying to use the ofxMotionTracker add on for openframeworks. I am building it in vs 2015While building it I get compilation errors in ofCircleSlice.cpp anybody got solution? i had been google...
View Article