Ask Your Question

BigJinge's profile - activity

2018-08-07 19:59:05 -0600 commented question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

Thanks muchly.

2018-08-06 21:53:19 -0600 commented question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

I'm using Python.

2018-08-06 21:13:50 -0600 received badge  Editor (source)
2018-08-06 21:13:50 -0600 edited question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

The Integrated Catflap : Fine Tuning Cascade Hi, I've built into a stock catflap, a prey sensing Raspberry Pi OpenCV ca

2018-08-06 21:12:59 -0600 received badge  Supporter (source)
2018-08-06 21:12:45 -0600 commented answer The Integrated Catflap : Fine Tuning Cascade / Deep Learning

Thanks, that's the great help. I have been doing some reading about deep learning since posting the original question a

2018-08-06 20:29:57 -0600 commented question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

I'm looking at neural nets now, so I'll add that to the list. :)

2018-08-06 19:38:21 -0600 commented question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

Thanks sjhalayka. I started it a couple of years ago but due to life commitments have only spent 6 months or so on it t

2018-08-06 19:09:49 -0600 received badge  Nice Question (source)
2018-08-06 12:08:28 -0600 received badge  Student (source)
2018-08-05 09:05:12 -0600 commented question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

In answer to the person who made the quote about the cascade being a binary classifier. The no cat, cat, cat with prey i

2018-08-04 10:53:43 -0600 asked a question The Integrated Catflap : Fine Tuning Cascade / Deep Learning

The Integrated Catflap : Fine Tuning Cascade Hi, I've built into a stock catflap, a prey sensing Raspberry Pi OpenCV ca

2017-05-28 15:27:34 -0600 asked a question detectMultiScale Python syntax : Stumped

Dear Hive Mind,

I've been been doing test haar cascades and have found the right values to give the results I need.

The problem is with syntax of detectMultiScale in Python for OpenCV 3.1. I need to put a minimum and maximum value for size and I'm not sure which order to put them in / flags to use.

My values are :

Scale factor = 1.05 Minimum neighbours = 3 Minimum size 48x48 Maximum size 120x120

I've seen an example that looks something like this :-

detectMultiScale(img, faces, 1.1, 3, CV_HAAR_FIND_BIGGEST_OBJECT, Size(30, 30), Size(200,200)) and regarding CV_HAAR_FIND_BIGGEST_OBJECT it says you may or may not require it.

So, can you throw some light on what is the correct detectMultiScale syntax I should use.

Many thanks

BigJinge

2017-03-09 11:59:58 -0600 received badge  Enthusiast
2017-03-02 18:43:36 -0600 commented question The Integrated Catflap : Best cascade for under cat mouth identification?

In theory the benefit of only having mouse parts detected rather than the cat per se is there may be reuse of the cascade XML for people who don't have the same cat facial features.

I got hold of Cascade Trainer GUI by Amin Ahmadi. I'm going to use that to make both a Haar and LBP cascade to see which gives better results.

Of course, if we can help each other, that would be great.

Best wishes

BigJinge

2017-03-02 18:38:36 -0600 commented question The Integrated Catflap : Best cascade for under cat mouth identification?

Hi Nicoenz,

Sorry for not getting back to you earlier but I wasn't notified that someone had replied to my question.

If you are getting results then I take it you've built the cascade. I'm at the point where I now have nearly 10000 negative pics and am going to build mine.

I had read that it's best not to include blurry pics in the positives as the recognition isn't great. I was going to go for the "prey in the mouth" front under shot but as I found over the months of the picture capture being active that the cat very rarely approaches straight towards the flap. I've got plenty of side head tilts, face down etc. What has been noticeable within the prey pics is mouse feet and the shape of the mouse at different angles. I'm going to highlight those.

2017-01-21 19:52:16 -0600 asked a question The Integrated Catflap : Best cascade for under cat mouth identification?

Hello,

I've built into a standard Petsafe cat flap, the innards to be able to take a photo underneath the cats mouth, to see if has an item of prey in it.

If it does then the flap will trigger a servo and lock the flap.

I've had the flap recording since September each time the cat goes back and forth through it. I now have 500+ pictures of prey in different positions in the cat mouth.

The plan is to create an Open CV Haar Cascade from these images which Open CV will use to lock the flap.

Question is, is using a Haar Cascade the best option for recognition? Would LBP be better?

Many thanks

BigJinge