Ask Your Question

BradG's profile - activity

2020-08-28 08:41:07 -0600 commented answer "GNU Radio" like GUI/Distro for OpenCV

I found another - closed source - works with (and without) Open CV) https://www.mathworks.com/discovery/matlab-opencv.h

2020-08-23 13:42:21 -0600 asked a question "GNU Radio" like GUI/Distro for OpenCV

"GNU Radio" like GUI/Distro for OpenCV It's a little "meta" - but I've been thinking about doing something like GNU Radi

2020-08-12 12:29:31 -0600 received badge  Supporter (source)
2020-08-12 12:29:27 -0600 marked best answer “Incremental” [face] training

I've been working with some face detection in OpenCV. I have a couple projects I've done - one does face detection which uses a _pre-built_ model. Some others do different things where I collect my own images and train my own models. When I do the latter, it's generally with much smaller datasets that what you'd use for face training.

On my face recognizer - many of the common faces I work with do _not_ get detected properly (due to odd properties like masks, hats, goggles, glasses, etc). So I want to re-train my own model - but grabbing the gigantic "stock" datasets, adding my images to it may take a VERY long time.

So the question is: is there a way to start with an existing model (XML file) and run the trainer in a way that would just _add_ my images to it?

2020-08-12 12:29:27 -0600 received badge  Scholar (source)
2020-08-12 09:26:44 -0600 asked a question “Incremental” [face] training

“Incremental” [face] training I've been working with some face detection in OpenCV. I have a couple projects I've done -