openFrameworks IDE plugins
@tactif Your solution worked for me.I still do not get why the property cpp.cxxLanguageVersion: "c++11" does not work. @edapx Does it give you any errors listed under Issues? I successfully imported...
View ArticleopenFrameworks IDE plugins
@thomasgeissl, sorry, my mistake. Closing Qt creator ad re-opening the same project with the changes to the .qbs file fixes the problem wth the invisibles files, and the "build" button is now enabled,...
View Article2d array and index looping
Hi everyone,I have a 2d array of cells (like a chessboard), the problem is that it seems that it keeps counting the indexes despite the edges of the grid.This is happening in vertical but not in...
View ArticleExtending ofxGui with new widgets
hi @frauzufall, quick update: I continued working ofxNumEdit. it's now called ofxInputField because ... it can handle text / labels as well. combining it with a ofxSlider could be the next step (like...
View Article2d array and index looping
Hi,What do you expect to happen in your second example?I guess you want only a cell to turn yellow, the one at j+3.You have to check the bounds of the array before adressing a cell.For example: //...
View ArticleopenFrameworks IDE plugins
@edapx Same problem here... I managed to get my own stuff compiled and running (an app only using ofxXmlSettings and ofxOsc), but tried with two examples without success... I get the same link errors...
View ArticleFirefly RK3288 (armv7) help need
i tried to build some example, like ImageSequence example give me 40fps.I noticed that the application start with the window frame, i dont it's correct cause the driver support fbdev. If i compile the...
View ArticleBackground Subtraction with changing light
Hi,Perhaps this method:Take only a part of the camera image, for example the part bounded by the green rectangle in your youtube video- (1) compute the difference level between the current frame and a...
View ArticleBackground Subtraction with changing light
I gave it a simple try:RoughFrameDifference.zip (2.2 KB)I don't use opencv to compute the difference level, I just average the absolute difference between two ofPixels frames.Seems to work.
View ArticleAccessing single element in shared pointer
Hi all! I'm trying to access the final circle in this ofxBox2d joint and have it rotate around my mouse; ultimately I want it to look as if it was coiling around it but I'm not sure how to get there....
View ArticleofxPd
Awesome, thanks! I've been using a somewhat hacky way of doing this in the past, but this solution is much better. I'll give it a try when I can get a few minutes.
View ArticleAccessing single element in shared pointer
Don't forget that arrays are zero based... So, accessing circles[30] means : retrieve the 31th element of the array, not the 30th (whose index is 29).
View Article0.9.0 Release Candidate 2
@zach for addons that break with these upgrades there are two obvious ways to deal with that, 1. have a branch per version and possibly a tag for each release or2. use preprocessor guards, eg. #if...
View ArticleAccessing single element in shared pointer
Ah, you're right. It works now; I really appreciate it. Is that specifically what the EXC_BAD_ACCESS refers to, though? Or are there other instances where I might get that error?
View ArticleAccessing single element in shared pointer
Generally it means that you are asking your code to access a memory address that is not valid. This often happens when you try to access elements outside of your array or if you try to dereference a...
View ArticleBackground subtraction competence
Hi, I am working on a people counter project. The main problem I am facing is background subtraction. Looking for some OpenCV expert in order to give me support/solution (under payiment). regards, Pippo
View ArticleBackground subtraction competence
I'm not an expert, but I'm collaborating on a project fully based on OpenCv and may able to give you some pointers. We've dealt with quite a few issues and found solutions for all of them. Drop me a...
View ArticleGCC5 with QtCreator on Mac?
Hi, Any plans for this?As an alternative to Apple's clang.Thanks /u/l/bin ❯❯❯ ./gcc-5 --versiongcc-5 (Homebrew gcc 5.2.0) 5.2.0Copyright (C) 2015 Free Software Foundation, Inc.This is free software;...
View ArticleGCC5 with QtCreator on Mac?
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/Availability.h:164:0, from...
View Article[SOLVED] Firefly RK3288 (armv7) help need
YEEEEE SOLVED!! I explain here my steps, tomorrow im gonna do a more detailed post to help ppl with RK3288 chip. Compile kernel with latest ARM kernel driver LINK Replace mali repo library with ARM...
View Article