Raspberry for monitoring system

0

Personal.

I would like to make a security system with cameras that would monitor an environment and recognize if anything unusual.

In fact, I would like to use machine learning so that, by showing some risks, it can distinguish a normal scenario from the same scenario with a risk.

I thought about using Raspberry Pi with a camera that would take the pictures and compare, but there are many things I do not know about Raspberry:

-Does she only take several photos from time to time or can she also compare live videos with the images she has learned?

- Is it possible to leave AI software running (to compare images) on a Raspberry, that is, is not it too fragile for such a heavy service?

- Can I program this using Python and Prolog or does Raspberry have any pre-defined language?

Someone has done something like this, can you give me information to do this?

    
asked by anonymous 01.10.2018 / 15:19

3 answers

1

In general terms, it is possible. It only depends on how you will describe and identify what is something out of the ordinary ... But things like identifying that there are people is very simple. Search for openCV.

  

-Does she only take several photos from time to time or can she also compare live videos with the images learned?

Yes, you can "compare images"

  

- Is it possible to leave AI software running (to compare images) on a Raspberry, that is, is it not too fragile for such a heavy service?

In the physical matter, it is very fragile. Do not leave outdoors. But it does make some image processing and run neural networks.

  

- Can I program this using Python and Prolog or does Raspberry have any pre-defined language?

There is no definite language. It's a linux computer ...

    
01.10.2018 / 15:38
1

Raspberry is actually a normal computer that comes with a linux version, so you can use whatever language you can compile on that operating system. About image recognition standards, google has a nice api for this purpose . Looking online I saw this tutorial pretty cool about working with cameras on raspberry.

    
01.10.2018 / 15:27
1

Hello, raspberry is a computer, so you just need to create a program for your desired purpose. There is a library called OpenCV, it exists for several languages ... I recommend python for the fact that phython contains several libraries for raspberry. Links: link  - link  - link  - link

    
01.10.2018 / 15:42