1.24.2 Alarm events not ending
1.24.2 Alarm events not ending
Hi guys
I'm using a TV-IP422 camera on a local network, no problems there.
I got one zone, and events are triggered ok. The problem is that
recording dosn't stop when there is no more alarm frames.
Even when the event is only a few minutes, i get durations more
than one hour.
Any clues to why this occur?
I'm using a TV-IP422 camera on a local network, no problems there.
I got one zone, and events are triggered ok. The problem is that
recording dosn't stop when there is no more alarm frames.
Even when the event is only a few minutes, i get durations more
than one hour.
Any clues to why this occur?
Enjoy
TrasherDK
TrasherDK
@cordel
I'm assuming it's the Zones table you want:
Thanks.
I'm assuming it's the Zones table you want:
Code: Select all
-- MySQL dump 10.13
--
-- Host: localhost Database: zoneminder
-- ------------------------------------------------------
-- Server version 5.1.22-rc-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `Zones`
--
DROP TABLE IF EXISTS `Zones`;
SET @saved_cs_client = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `Zones` (
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`MonitorId` int(10) unsigned NOT NULL DEFAULT '0',
`Name` varchar(64) NOT NULL DEFAULT '',
`Type` enum('Active','Inclusive','Exclusive','Preclusive','Inactive') NOT NULL DEFAULT 'Active',
`Units` enum('Pixels','Percent') NOT NULL DEFAULT 'Pixels',
`NumCoords` tinyint(3) unsigned NOT NULL DEFAULT '0',
`Coords` tinytext NOT NULL,
`Area` int(10) unsigned NOT NULL DEFAULT '0',
`AlarmRGB` int(10) unsigned DEFAULT '0',
`CheckMethod` enum('AlarmedPixels','FilteredPixels','Blobs') NOT NULL DEFAULT 'Blobs',
`MinPixelThreshold` smallint(5) unsigned DEFAULT NULL,
`MaxPixelThreshold` smallint(5) unsigned DEFAULT NULL,
`MinAlarmPixels` int(10) unsigned DEFAULT NULL,
`MaxAlarmPixels` int(10) unsigned DEFAULT NULL,
`FilterX` tinyint(3) unsigned DEFAULT NULL,
`FilterY` tinyint(3) unsigned DEFAULT NULL,
`MinFilterPixels` int(10) unsigned DEFAULT NULL,
`MaxFilterPixels` int(10) unsigned DEFAULT NULL,
`MinBlobPixels` int(10) unsigned DEFAULT NULL,
`MaxBlobPixels` int(10) unsigned DEFAULT NULL,
`MinBlobs` smallint(5) unsigned DEFAULT NULL,
`MaxBlobs` smallint(5) unsigned DEFAULT NULL,
`OverloadFrames` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`Id`),
KEY `MonitorId` (`MonitorId`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;
--
-- Dumping data for table `Zones`
--
LOCK TABLES `Zones` WRITE;
/*!40000 ALTER TABLE `Zones` DISABLE KEYS */;
INSERT INTO `Zones` VALUES (3,2,'office','Active','Percent',4,'27,153 623,157 623,376 29,374',130527
,16711680,'AlarmedPixels',20,0,6526,0,5,5,29669,0,24724,0,1,0,0);
/*!40000 ALTER TABLE `Zones` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2010-02-27 17:29:24
Enjoy
TrasherDK
TrasherDK
@whatboy
Buffers are as follow:
Thanks.
Buffers are as follow:
Code: Select all
Image Buffer Size (frames) 20
Warmup Frames 5
Pre Event Image Count 10
Post Event Image Count 10
Stream Replay Image Buffer 10
Alarm Frame Count 5
Enjoy
TrasherDK
TrasherDK
Got it... http://www.zoneminder.com/wiki/index.ph ... uffers_Tab
Warm-up Frames
This specifies how many frames the analysis daemon should process but not examine when it starts. This allows it to generate an accurate reference image from a series of images before looking too carefully for any changes. I use a value of 25 here, too high and it will take a long time to start, too low and you will get false alarms when the analysis daemon starts up.
Warm-up Frames
This specifies how many frames the analysis daemon should process but not examine when it starts. This allows it to generate an accurate reference image from a series of images before looking too carefully for any changes. I use a value of 25 here, too high and it will take a long time to start, too low and you will get false alarms when the analysis daemon starts up.
Thanks for your reply.
I have changed warm-up frames to 20 and Alarm Frames to 10.
It's capturing at 2.2 FPS. Now i can sit back and wait for the
next event to fire. The server/camera is in Copenhagen, Denmark
and i'm sitting in Pattaya, Thailand so it's not like i can provoke
an event myself
The server is an old Pentium III 800MHz 512MB RAM, and it's
running MySQL, Apache, Sendmail, Cyrus IMAP in addition
to ZoneMinder, so it's kinda busy
I have changed warm-up frames to 20 and Alarm Frames to 10.
It's capturing at 2.2 FPS. Now i can sit back and wait for the
next event to fire. The server/camera is in Copenhagen, Denmark
and i'm sitting in Pattaya, Thailand so it's not like i can provoke
an event myself
The server is an old Pentium III 800MHz 512MB RAM, and it's
running MySQL, Apache, Sendmail, Cyrus IMAP in addition
to ZoneMinder, so it's kinda busy
Enjoy
TrasherDK
TrasherDK
-
- Posts: 5111
- Joined: Wed Jun 08, 2005 8:07 pm
- Location: Midlands UK
is your monitor too sensitive and never leaves event states
James Wilson
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk