Giter VIP home page Giter VIP logo

hcnetpythonsdk-linux's Introduction

海康威视Python封装

Usage

将此代码复制或安装到你的项目即可

Example

 
import random
from hikvision.hikvision import HIKVisionSDK

LIB_DIR = '/home/baloneo/PythonProject/HCNetPythonSDK-Linux/hklib'

sdk = HIKVisionSDK(lib_dir=LIB_DIR,
                   username='admin',
                   ip='192.168.1.124',
                   password='Admin12345')
try:
    sdk.init()
except Exception as e:
    print(e)
    print('Errcode ', sdk.err_code)
else:
    ok = sdk.take_picture('/tmp/jjjj.jpg', release_resources=False)
    print('ok1', ok)
    ok = sdk.take_picture('/tmp/jjjj3.jpg', release_resources=False)
    print('ok2', ok)
    value = sdk.get_zoom(release_resources=False)
    print('zoom value', value)
    ok = sdk.set_zoom(zoom=10, release_resources=True)
    print('zoom ok', ok)


print(sdk.get_infrared_value())

Bugs

  • 如果不在和setup.py同级目录执行install会失败
  • 使用python的logging模块可能会出现bug
  • libiconv.so.2 链接的时候可能会失败 删掉即可

hcnetpythonsdk-linux's People

Contributors

byte-voyager avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.