H80295NA | Κάμερα Dome Varifocal 2MP 2.8÷12mm ∙ Sony CMOS
Κωδικός Προϊόντος: HE080295NA
H80295NA | Κάμερα Dome Varifocal 2MP 2.8÷12mm ∙ Sony CMOS
Κατασκευαστής: HawkeyeΚωδικός Προϊόντος: HE080295NA
- Κάμερα Dome με varifocal φακό Sony 2MP (2.8÷12mm).
- Full HD ανάλυση 1920x1080P.
- Πολύ χαμηλού φωτισμού.
- Παρακολούθηση σε πραγματικό χρόνο σε αποστάσεις έως και 300m.
- Έλεγχος OSD μενού μέσω ομοαξονικού καλωδίου.
- Μεταλλική κατασκευή.
- Βαθμός προστασίας IP67.
- Προαιρετική εφαρμογή φακού, μονάδας ήχου.
- Ημέρα/Νύχτα (ICR), ATW, AGC, DNR, D-WDR.
- Leds: 14 (Smd) / 25 m.
- Τροφοδοσία 12 Vdc.
- Διαστάσεις 119Δ×98Ymm
- Αισθητήρας εικόνας: 1/2,9" 2.0 MP Sony IMX323 CMOS.
- Chipset: ΙΜΧ323 + FH8536H.
- Ενεργά pixels: 1984(Y) x 1115(V).
- Ανάλυση Video 1080P(H) x1105(V).
- Αυτόματο κλείστρο: 1/50s ~ 1/60.000s.
- Ελάχιστος φωτισμός: Color 0.1lux @ F1.2(AGC ON); B/W 0 lux @ IR ON.
- Σήμα Video: PAL/NTSC.
- Έξοδος Video: 1 κανάλι, HDCVI, HDTVI, AHD, CVBS, ρυθμιζόμενο.
- Εναλλαγή σήματος Video: Μέσω μικρό-διακοπτών (deep-switch).
- Λειτουργία Ημέρας/Νύχτας: Αυτόματο/Έγχρωμο/Ασπρόμαυρο/Εξωτερικό.
- WDR: Ψηφιακό.
- Έξυπνος έλεγχος υπέρυθρων: Υποστηρίζεται.
- Ισορροπία λευκού: ATW, AGC, BLC.
- DNR: 3D, NR.
- OSD Μenu: Πολλαπλές γλώσσες, έλεγχος μέσω ομοαξονικού καλωδίου (UTC).
- LEDs: 18 smd.
- Απόσταση υπέρυθρων: 25 μέτρα.
- Φακός: Varifocal 2.8÷12mm 2MP.
- Zoom: 4×.
- Τροφοδοσία: 12Vdc ±10%.
- Κατανάλωση: <5W.
- bestEarlyLeftScore ) ) { bestMask = mask; bestDifference = difference; bestSwitches = switches; bestEarlyLeftScore = earlyLeftScore; } } return bestMask; } function findGreedyFallbackMask(heights) { var groupCount = heights.length; var indices = []; for (var index = 1; index < groupCount; index++) { indices.push(index); } indices.sort(function(a, b) { return heights[b] - heights[a]; }); var mask = 1; var leftHeight = heights[0]; var rightHeight = 0; indices.forEach(function(groupIndex) { if (leftHeight <= rightHeight) { mask |= (1 << groupIndex); leftHeight += heights[groupIndex]; } else { rightHeight += heights[groupIndex]; } }); if (leftHeight < rightHeight) { /* * Keep group 0 left and move the smallest suitable right-side group * to the left until the left column is not shorter. */ var rightIndices = indices.filter(function(groupIndex) { return (mask & (1 << groupIndex)) === 0; }); rightIndices.sort(function(a, b) { return heights[a] - heights[b]; }); rightIndices.some(function(groupIndex) { mask |= (1 << groupIndex); leftHeight += heights[groupIndex]; rightHeight -= heights[groupIndex]; return leftHeight >= rightHeight; }); } return mask; } function syncOpenAccordionHeight(panel) { var button = panel.previousElementSibling; if ( button && button.classList.contains('accordion') && button.classList.contains('active') ) { panel.style.maxHeight = panel.scrollHeight + 'px'; } } function balanceRaksonAttributesPanel(panel) { var grid = panel.querySelector('[data-rakson-attributes-grid]'); if (!grid) { return; } var leftColumn = grid.querySelector('.rakson-attributes-column-left'); var rightColumn = grid.querySelector('.rakson-attributes-column-right'); if (!leftColumn || !rightColumn) { return; } var groups = getOrderedGroups(grid); if (!groups.length) { return; } restoreOriginalOrder(groups, leftColumn, rightColumn); if ( window.innerWidth < RAKSON_ATTRIBUTES_BREAKPOINT || groups.length < 2 ) { window.requestAnimationFrame(function() { syncOpenAccordionHeight(panel); }); return; } /* * All groups are currently inside the half-width left column, * so every measured height matches its final column width. */ var heights = groups.map(getOuterHeight); var bestMask; if (groups.length <= RAKSON_EXACT_SEARCH_MAX_GROUPS) { bestMask = findBestExactMask(heights); } else { bestMask = findGreedyFallbackMask(heights); } placeGroupsByMask(groups, leftColumn, rightColumn, bestMask); window.requestAnimationFrame(function() { syncOpenAccordionHeight(panel); }); } function balanceAllRaksonAttributes() { var panels = document.querySelectorAll('.rakson-attributes-panel'); Array.prototype.forEach.call(panels, function(panel) { balanceRaksonAttributesPanel(panel); }); } function initializeRaksonBalancedPanels() { prepareAllRaksonInformationPanels(); syncAllRaksonInformationParagraphSpacing(); balanceAllRaksonAttributes(); } window.raksonPrepareInformationPanel = prepareRaksonInformationPanel; window.raksonPrepareAllInformationPanels = prepareAllRaksonInformationPanels; window.raksonSyncInformationParagraphSpacing = syncRaksonInformationParagraphSpacing; window.raksonSyncAllInformationParagraphSpacing = syncAllRaksonInformationParagraphSpacing; window.raksonBalanceAttributesPanel = balanceRaksonAttributesPanel; window.raksonBalanceAllAttributes = balanceAllRaksonAttributes; window.raksonInitializeBalancedPanels = initializeRaksonBalancedPanels; if (document.readyState === 'loading') { document.addEventListener( 'DOMContentLoaded', initializeRaksonBalancedPanels ); } else { initializeRaksonBalancedPanels(); } window.addEventListener('load', initializeRaksonBalancedPanels); if (document.fonts && document.fonts.ready) { document.fonts.ready.then(initializeRaksonBalancedPanels); } window.addEventListener('resize', function() { window.clearTimeout(raksonAttributesResizeTimer); raksonAttributesResizeTimer = window.setTimeout(function() { syncAllRaksonInformationParagraphSpacing(); balanceAllRaksonAttributes(); }, 120); }); })(); var acc = document.getElementsByClassName("accordion"); var i; for (i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { this.classList.toggle("active"); var panel1 = this.nextElementSibling; if (this.classList.contains("active")) { if ( panel1.classList.contains("rakson-information-panel") && typeof window.raksonPrepareInformationPanel === "function" ) { window.raksonPrepareInformationPanel(panel1); if ( typeof window.raksonSyncInformationParagraphSpacing === "function" ) { window.raksonSyncInformationParagraphSpacing(panel1); } } if ( panel1.classList.contains("rakson-attributes-panel") && typeof window.raksonBalanceAttributesPanel === "function" ) { window.raksonBalanceAttributesPanel(panel1); } panel1.style.maxHeight = panel1.scrollHeight + "px"; window.requestAnimationFrame(function() { panel1.style.maxHeight = panel1.scrollHeight + "px"; }); } else { panel1.style.maxHeight = null; } }); }


