Since no one else responded, I'll give you some information to chew on.
The basic idea behind motion detection is a sum of the number of pixels that have changed their RGB color value from one frame to the next.
In ZoneMinder, the RGB threshold (the difference) between the color values is called minimum pixel threshold. That number is usually a number between 20-25.
The next fields to know about are the minimum alarmed/filtered/blob areas. By default, the units in these fields are in percent, so if I put a 5 in the minimum alarmed pixels (again these are pixels zm noticed the RGB color difference changed) that means ZoneMinder will trigger a motion alarm if the number of pixels counted is > 5%. The Filtered and Blob fields work the same, only we've tried to make an attempt to filter out unwanted events or noise and then we count pixels again.
So now we have arrived at your question. If you get an alarm, and the stats say a particular frame has a score of 10, that means 10% of the pixels in the camera's field of view changed their RGB color value enough to cause ZoneMinder to count them as "motion". In your event stats, this value is going to match the percent value found in either alarm, filtered, or blob pixels depending on which of three options you have enabled. The logic goes something like this:
if ( blobs enabled ) {
score = % blob pixels
} else if ( filtered enabled ) {
score = % filtered pixels
} else if ( alarmed enaled ) {
score = % alarmed pixels
}
When you are configuring a camera's motion zone for the first time, here are some general rules to follow:
- The presets work ok for indoor fields of view, but don't expect them to work outside with a wide field of view
- change your units from percent to pixels for greater precision. Highly recommended for outdoor cameras.
- Begin with a zone that is highly sensitive so it picks up unwanted events. Then tune the zone to become less sensitive. Going the other way (less sensitive -> more sensitive) is more difficult because zoneminder does not record stats for non-alarmed events.
- Start off simple! Start off with *one* active zone (and no other zone types), test it, then make small changes. Tuning your zones is a process of days/weeks. Make a change then observe how it works through changing light/weather conditions.
This is explained further in our documentation:
https://wiki.zoneminder.com/Defining_Zones
https://wiki.zoneminder.com/How_to_setu ... _detection