Menu
Your Cart

HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera

HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera
HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera
  • Price: TK 2,050/-
  • Stock: In Stock
  • Model: DS-2CE10DF0T-F
TK 2,050/-
Ex Tax: TK 2,050/-

Key Features

    • Model: DS-2CE10DF0T-F
    • 24/7 color imaging with F1.0 aperture
    • 2MP, 1920× 1080 Resolution
    • 3D DNR technology
    • Up to 20m white light distance
    Specification
    Camera Info
    BrandHikvision
    ModelDS-2CE10DF0T-F
    Image Sensor2 MP CMOS
    Electronic Shutter SpeedPAL: 1/25 s to 1/50,000 s;NTSC: 1/30 s to 1/50,000 s
    Minimum Illumination0.001 Lux @ (F1.0, AGC ON), 0 Lux with white light
    IR DistanceUp to 20 m white light distance for bright night imaging
    Camera Lens
    Focal Length2.8 mm, 3.6 mm, 6 mmfixed focal lens
    Mount TypeM12
    Max Aperture24/7 color imaging with F1.0 aperture
    Angle of ViewPan: 0° to 360°, Tilt: 0° to 90°, Rotation: 0° to 360°
    Recording
    Resolution1920 (H) × 1080 (V)
    Warranty Information
    Warranty01 Year
    Description

    HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera in bd 

    The HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera is an innovative surveillance solution designed to provide full-color video 24/7. Equipped with ColorVu technology, this camera captures vivid and detailed images even in low-light environments, ensuring enhanced security for your home or business.

    With its 2MP high-definition resolution, this camera delivers crystal-clear visuals, while its advanced lens and supplemental lighting guarantee true color representation in all lighting conditions. Its compact mini bullet design makes it easy to install and discreet enough for various settings, both indoor and outdoor.

    Built to withstand challenging conditions, the camera features a weatherproof IP67 rating, ensuring reliable performance in rain, dust, or extreme temperatures. It also comes with wide dynamic range (WDR) to handle challenging lighting scenarios effectively.


    Why Choose from Dear IT Solution?

    At Dear IT Solution, we are committed to providing the best price in Bangladesh for the HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera. You can trust us for the best quality product insured in Bangladesh to meet your security needs.

    Upgrade your surveillance system with the HikVision DS-2CE10DF0T-F 2MP ColorVu Fixed Mini Bullet Camera today and experience unmatched performance and reliability. Place your order now from Dear IT Solution for a seamless shopping experience

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};