76 lines
2.2 KiB
PHP
76 lines
2.2 KiB
PHP
<?php
|
|
if ( !canView( 'Events' ) )
|
|
{
|
|
$view = "error";
|
|
return;
|
|
}
|
|
$result = mysql_query( "select S.*,E.*,Z.Name as ZoneName,M.Name as MonitorName,M.Width,M.Height from Stats as S left join Events as E on S.EventId = E.Id left join Zones as Z on S.ZoneId = Z.Id left join Monitors as M on E.MonitorId = M.Id where S.EventId = '$eid' and S.FrameId = '$fid' order by S.ZoneId" );
|
|
if ( !$result )
|
|
die( mysql_error() );
|
|
while ( $row = mysql_fetch_assoc( $result ) )
|
|
{
|
|
$stats[] = $row;
|
|
}
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>ZM - Stats <?= $eid."-".$fid ?></title>
|
|
<link rel="stylesheet" href="zm_styles.css" type="text/css">
|
|
<script language="JavaScript">
|
|
window.focus();
|
|
function closeWindow()
|
|
{
|
|
window.close();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<table width="96%" border="0">
|
|
<tr>
|
|
<td align="left" class="smallhead"><b>Image <?= $eid."-".$fid ?></b></td>
|
|
<td align="right" class="text"><a href="javascript: closeWindow();">Close</a></td>
|
|
</tr>
|
|
<tr><td colspan="2"><table width="100%" border="0" bgcolor="#7F7FB2" cellpadding="3" cellspacing="1"><tr bgcolor="#FFFFFF">
|
|
<td class="smallhead">Zone</td>
|
|
<td class="smallhead" align="right">Alarm Px</td>
|
|
<td class="smallhead" align="right">Filter Px</td>
|
|
<td class="smallhead" align="right">Blob Px</td>
|
|
<td class="smallhead" align="right">Blobs</td>
|
|
<td class="smallhead" align="right">Blob Sizes</td>
|
|
<td class="smallhead" align="right">Alarm Limits</td>
|
|
<td class="smallhead" align="right">Score</td>
|
|
</tr>
|
|
<?php
|
|
if ( count($stats) )
|
|
{
|
|
foreach ( $stats as $stat )
|
|
{
|
|
?>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td class="text"><?= $stat[ZoneName] ?></td>
|
|
<td class="text" align="right"><?= $stat[AlarmPixels] ?></td>
|
|
<td class="text" align="right"><?= $stat[FilterPixels] ?></td>
|
|
<td class="text" align="right"><?= $stat[BlobPixels] ?></td>
|
|
<td class="text" align="right"><?= $stat[Blobs] ?></td>
|
|
<td class="text" align="right"><?= $stat[MinBlobSize]."-".$stat[MaxBlobSize] ?></td>
|
|
<td class="text" align="right"><?= $stat[MinX].",".$stat[MinY]."-".$stat[MaxX].",".$stat[MaxY] ?></td>
|
|
<td class="text" align="right"><?= $stat[Score] ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
else
|
|
{
|
|
?>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td class="text" colspan="8" align="center"><br>There are no statistics recorded for this event/frame<br><br></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|