Search found 9 matches

by JCAK
Sat Jan 29, 2022 3:53 pm
Forum: ZoneMinder 1.36.x
Topic: How can I execute a filter based on the condition from last event and apply this to the last event and not to all events
Replies: 3
Views: 4155

Re: How can I execute a filter based on the condition from last event and apply this to the last event and not to all ev

Magic919 wrote: Sat Jan 29, 2022 7:40 am Base it on the email alert filer and use an event start time clause.
I'm not using email.
Are there any possibility to run a filter in background to read events happened on the last 10 seconds?
Start Time -10 seconds, or how can I do it?

Thanks
by JCAK
Sat Jan 29, 2022 6:35 am
Forum: ZoneMinder 1.36.x
Topic: How can I execute a filter based on the condition from last event and apply this to the last event and not to all events
Replies: 3
Views: 4155

How can I execute a filter based on the condition from last event and apply this to the last event and not to all events

Hi, I'm working with object detection and I want execute a script only if event is new and contains the text note "person". When match the condition the script triggers an alarm. My problem is, I can't find the way to create a condition only for the new event, the filter search on all reco...
by JCAK
Fri Jan 28, 2022 2:57 am
Forum: ZoneMinder 1.36.x
Topic: How can I create a filter based on object detection (person, car, bike, etc)
Replies: 7
Views: 4404

Re: How can I create a filter based on object detection (person, car, bike, etc)

You need to limit your confidence in ZMES the objectconfig i think. 'object_min_confidence' if you set to 60 it will only label the notes if its above 60% confident. Then your filter based on notes with person will trigger any time there is a person detected. Thank you, is a good idea, I will try. ...
by JCAK
Tue Jan 25, 2022 10:04 pm
Forum: ZoneMinder 1.36.x
Topic: How can I create a filter based on object detection (person, car, bike, etc)
Replies: 7
Views: 4404

Re: How can I create a filter based on object detection (person, car, bike, etc)

add a rule for Notes contains.... Notes was my first try, I could search for the text "Persons" inside Notes, but doesn't have or I can't found a way to create a condition which trigger the filter in background only if Person >=60% How can I read "percent" and create a condition ?
by JCAK
Tue Jan 25, 2022 5:58 am
Forum: ZoneMinder 1.36.x
Topic: How can I create a filter based on object detection (person, car, bike, etc)
Replies: 7
Views: 4404

How can I create a filter based on object detection (person, car, bike, etc)

Hi, I want execute a script file when the event match with a object detection, for example: person >= 60% I don't know how achieve this, because ZM filter don't have an option to create a filter based on objects detections (person, car, bike, etc) I'm reading on event server documentation, have &quo...
by JCAK
Fri Jan 21, 2022 4:53 am
Forum: ZoneMinder 1.36.x
Topic: Cannot create new events. Database errors.
Replies: 4
Views: 6302

Re: Cannot create new events. Database errors.

I've seen this when events were being deleted immediately after creation. Check your filters. Any filter that deletes events or does much of anything should have an End Date/Time NOT NULL rule so that it only matches finished events. I had the same problem and I could fix it following your suggest....
by JCAK
Mon Dec 20, 2021 12:44 pm
Forum: ZoneMinder 1.36.x
Topic: ModuleNotFoundError: No module named 'numpy' (zmeventnotification)
Replies: 6
Views: 4175

Re: ModuleNotFoundError: No module named 'numpy' (zmeventnotification)

Looks like you don't have pip3 - which is used by default to install the packages sudo apt-get install python3-pip And then try install again and make sur everything works I have "python3-pip" installed in the same way as you suggest. I tried also with virtual environments, and with pytho...
by JCAK
Mon Dec 20, 2021 11:19 am
Forum: ZoneMinder 1.36.x
Topic: ModuleNotFoundError: No module named 'numpy' (zmeventnotification)
Replies: 6
Views: 4175

Re: ModuleNotFoundError: No module named 'numpy' (zmeventnotification)

Magic919 wrote: Mon Dec 20, 2021 8:58 am You are missing numpy. Do pip install numpy.
This is not the right way, because numpy is not the only missing module, after this line the installation process stop. If i do a manual installation of numpy and run the Hook installation process again it asks me for another module and stop again.
by JCAK
Mon Dec 20, 2021 3:42 am
Forum: ZoneMinder 1.36.x
Topic: ModuleNotFoundError: No module named 'numpy' (zmeventnotification)
Replies: 6
Views: 4175

ModuleNotFoundError: No module named 'numpy' (zmeventnotification)

Hi I'm trying a Zoneminder 1.36.x and Zmeventnotification (latest version) on ubuntu 18.04.6. All from scratch. I installed python3.7 and python3-pip and then followed the steps on the links below: https://zoneminder.readthedocs.io/en/latest/installationguide/ubuntu.html#easy-way-ubuntu-18-04-bionic...