ofxCv icon indicating copy to clipboard operation
ofxCv copied to clipboard

Alternative approach to interfacing with OpenCv from openFrameworks.

Results 49 ofxCv issues
Sort by recently updated
recently updated
newest added

I really want to utilize the polygon approximation function approxPolyDP, which is part of opencv/imgproc [opencv doc reference here](http://docs.opencv.org/2.4/modules/imgproc/doc/structural_analysis_and_shape_descriptors.html#approxpolydp) I don't have enough knowledge currently to write the wrapper myself...

Hi Kyle. I'm fairly new to c++ so please excuse me if any of this is obvious, and apologies to post as an issue - just wasn't sure how else...

this means reddish colors may not be tracked correctly. the fix would look something like this: ``` c++ float minS = clamp(sTarget-20, 0, 255); float maxS = clamp(sTarget+20, 0, 255);...

I think `uint curLabel` gets an out of range if my thread is running during a long time. To avoid this, i create this fix. what do yo think? `unsigned...

I would like to attach my own followers on the found faces and I am trying to work out how to use the TrackerFollower extension as explained in the Tracker.h...

Hi Kyle, hope you're doing well. I found a bug in the morphological thinning algo. Check this screenshot ![screen shot 2016-01-19 at 15 00 33](https://cloud.githubusercontent.com/assets/974878/12427417/ec58de64-bebd-11e5-921e-16f6010ade70.png) Probably when using it on...

Hi Kyle, I have successfully run several examples in ofxCv. But I have been trying to run example-blink in ofxFaceTracker . And I ran in to several issues. To help...

I had a series of linking errors which I resolved by adding CoreMedia, Foundation, Quartz and AVFoundation frameworks. Then the app built but did not correctly load the movie -...

you regularly want to threshold using something like color, brightness, maybe HSB, or RGB. this is inside ContourFinder right now, but you may want to use it separately.

sometimes you know you will never have more than a certain number of objects, but you might have less (due to noisy inputs / bad data). in this case you...