User Tools

Site Tools


start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
start [2011/05/10 11:24]
kel
start [2013/02/21 17:12]
deeilozano
Line 1: Line 1:
-Multiple Choices Algorithm - by Mark Kelly+Important Top features of CCTV video cameras.
  
-Another in the Fun with Algorithms series 
  
-Stuff Pty Ltd sells stuff. The unit cost of the stuff varies according to the quantity ordered. Customers can order any number ​of items Stuff Pty Ltd use this scale: +Matrix dimension (inch) * size inside inches angled, which in turn establishes the viewpoint regarding look at when utilizing a new contact lens chemical whatever central length. The most common monitoring digicam which has a 1/2 ", 1/3", 1/4 ". The larger the size of the actual matrix, ​the higher the height and width of the camera, along with the measurements of the actual matrix by no means modify the performance associated with picture quality[http://​accsecurity.com/ ​ CCTV installation manchester] Quality (TVL) -- parameter characterizing the actual thorough imagesin a word, the higher the quality, the higher the actual noticeable little particulars,​ such as the variety ​of the auto, persons faceTested within Television lines (TVL), as well as the mean horizontally solution because top to bottom solution ​of the standard digital camera just like and is also tied to the identical amount (300 Tv set collections for your regular CCIR Or Buddy and 330 Television collections regarding EIA / NTSC).[http://​accsecurity.com/ ​ cctv installation liverpool] ​ Monochrome security cameras possess a quality of ordinary description TV traces 380-420560-570 Television traces associated with high definition, coloration digital cameras 280-350 TVL, high definition as much as Four hundred sixty Tv set traces along with a digital camera signal running (DSP) in order to 560 TVL to S-VHS productivity . Sensitivity (lux) : your lowest a higher level lighting effects (within lux), where the camera supplies a well-known videoThis is the the majority of perplexing option as there is no obvious description. Generally ​by the sensitivity for the minimal lighting effects at the site, because calculated through zoom lens speed of just one.4For normal black-and-white camcorders it really is 2. read about [http://​accsecurity.com/  CCTV installation manchester] ​ Four ~ 0.10 lux (evening), for very responsive to Zero.00015 lux (dark night), regarding shade Zero.Two ~ 3 lux. At times manufacturers specify the particular minimum lighting on the warning, that's 10 times higher. It can be worthy of referfing to that the sensitivity of black-and-white camcorders not simply impacts the spectrum associated with seen lighting, but ir area, allowing regarding home lighting effects ​in low gentle situationsSignal-to-Noise Rate (dB) * a great amplitude proportion sign and sound inside the logarithmic sizeErsus Per D Equals Something like 20 record (transmission Per noises).[http://​accsecurity.com/  cctv installation liverpool] ​ In a nutshell Azines Or In 60 dB signifies that the amplitude from the video clip transmission on the noise amplitude at 316 timesIt's possible to discover the answers, using a valuation on Ersus Or In Equals Forty five dB modest apparent disturbance,​ particularly in reduced light conditionsAt Utes And D Equals Twenty dB on-screen is a reliable "​ripple"​Electronic shutter ​(utes: other phrase the actual exposure matrix ​for your common illumination of the picture inside a vibrant variable lighting situations. This can be done as soon as  build up in the cellular material with the CCD, which can be in brilliant mild can easily achieve 1/100000 securities and exchange commission, ​as a result mimicking the auto eye contact. [http://​accsecurity.com/ ​ cctv installation liverpool] ​ Average as well as optimum coverage time for the actual matrix transmission CCIR Per Buddy will be 1/50 securities ​and exchange commission, ​for that EIA And NTSC 1/60 securities ​and exchange commissionPower source cameras typically Twelve volt Digicam as well as Air conditioning 24/220BSyncing digital cameras will be Several varietiesIn most cases, make use of internal crystal sync.[http://​accsecurity.com/ ​ CCTV installers manchester] ​ In some instances, cellular matrix that supply the particular Air conditioning synchronization ​is used Linelock, a continuing voltage offer - outside synchronizationBacklight payment (BLC) -- a new hardware characteristic that allows view the item inside a bright gentleDigital indication control ​(DSP) in the CCTV cameras can substantially expand the actual powerful varietymake use of a action detectorsswitching over the "day-night",​ monochrome and also colour, apply a perform PTZ (Movethe displacement of remark).[http://​accsecurity.com/ ​ CCTV installers manchester] ​
-1-9 items = $100 each +
-10-19 items = $97 each +
-20-29 items = $92 each +
-30-39 items = $88 each +
-40-49 items = $85 each +
-50 or more = $82 each +
- +
-Task: using pseudocodecreate an algorithm to calculate ​the unit cost of the items at different quantities. Then calculate ​total cost with 10% GST added  +
-Convert ​the pseudocode into code. +
-Create test data to fully test all aspects ​of the solution’s functionality. +
-Note:  ​Input data need not be validatedand the interface can be very basic. +
-  +
-Sample VB2010 solution +
-Public Class Form1 +
-    ' Multiple options algorithm +
-    ' ​by M.Kelly 10 May 2011 +
-    ' Version 1.+
-    ' To Do Nextnil +
- +
-    Private Sub btnCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnCalc.Click +
-        Dim Qty As Integer = CInt(txtQty.Text) +
-        Dim inctax As Single = 0  ​'declare ​and initialise ​in one hit +
-        ' deliberately lacks validation of qty +
-        Select Case Qty +
-            Case 1 To 9 +
-                lblCostper.Text = 100 +
-            Case 10 To 19 +
-                lblCostper.Text = 97 +
-            Case 20 To 29 +
-                lblCostper.Text = 92 +
-            Case 30 To 39 +
-                lblCostper.Text 88 +
-            Case 40 To 49 +
-                lblCostper.Text = 85 +
-            Case Else +
-                lblCostper.Text = 82 +
-        End Select +
- +
-        lblSubtotal.Text = Qty * CInt(lblCostper.Text '​using labels ​for output +
- +
-        '​inctax is here as a sample use of variables ​for calculations ​and  +
-        'using labels just for display purposes. +
-        'Using variables mean less converting back & forth between text and number. +
- +
-        inctax = CInt(lblSubtotal.Text) * 1.1           '​add GST   +
-        'The final total is nicely formatted currency just to show how it's done. +
-        'Nice formatting is not needed in U3O2. +
-        lblIncTax.Text = Format(inctax"$#,####.#0"+
-    End Sub +
- +
-     +
-    Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgsHandles Button1.Click +
-        End +
-    End Sub +
- +
-End Class +
- +
-  +
- +
-Sample output +
-Perhaps more decorative that it needs to be for U3O2, but I can’t abide messy interfaces. +
-  +
-<​can'​t insert image!>​ +
- +
-:-( +
- +
----------------------------------------------------------------------------------------------+