My company provides security and surveillance services to its clients and i was asked to do R&D on how we can use onvif api. I visited their operations page and relevant wsdl definitions for some of the operations. My quest so far suggests that onvif has created set of standards for security equipment and conformant devices implement the services listed on onvif api and specification page. I think that the way to go about it is that i create web service client stubs by using wsdl definitions from onvif site and use device's ip as endpoint to get its functionality. Are my assumptions correct? Furthermore, if someone could refer me some initial reading to get going with this, i would be really thankful.
How to use Onvif Api with surveillance cameras
28.3k Views Asked by Muhammad Adeel Zahid At
2
There are 2 best solutions below
0
Derzu
On
I developed an open C++ solution ONVIF NVC (Network Video Client) and PVR (Personal Video Recorder).
It can be used with surveillance cameras. But you need to set the rtsp address of the cameras on this solution.
Available at GitHub: https://github.com/derzu/ONVIF-PVR
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in CAMERA
- matlab crash during acquisition of pointgrey images
- My application has the camera access permission by default.How can i turned it off and ask for permission?
- 3d mouse aim camera 3rd person vertical C#
- Saving images as a burst on iOS
- Camera position based on model size?
- Three.js, Camera rotation around a point
- Android camera2.params.face rectangle placement on canvas
- Error with image view when displaying an image by camera capturing
- AVFoundation: toggle camera fails at CanAddInput
- CWAC-camera exception "Method called after release()" after exiting
- How to exactly fit camera preview to the screen
- Lock Camera orientation to portrait
- UICollectionView not showing images from CameraImage - Objective C
- Picture taken in portrait mode rotates
- android unable to resume activity on result using camera
Related Questions in SURVEILLANCE
- Vehicle Counting Based on BackgroundSubtractorMOG
- Finding significant images in a set of surveillance camera images
- How to surveil variables in XCode4.2's debugger
- How to correctly have or extract the created datetime for a recorded video for a smart CCTV camera (TP Link - Tapo TC70)?
- What is the difference between human action recognition and human activity recognition?
- Video Scene Detection for .Net windows app
- Python: Automatically reconnect IP camera
- Image comparison in python to detect motion detection in a video
- Exponentially weighted moving average- without mean or standard deviation?
- Android recording video and transmit to a PC via Socket
- How can I connect a TCP/IP Camera to the PC?
- Database of surveillance camera locations
- cv_exports in blobtracking for video surveillance
- How do I get the data from a surveillance camera to a storage I can stream from?
- How to use Onvif Api with surveillance cameras
Related Questions in ONVIF
- Configuration of recording target by using the onvif interface
- ONVIF GetStreamURL C#
- Unable to replicate SHA1 and Base64 Output of Onvif API Example
- ONVIF c# - set osd or camera title
- Why CreateRecording for onvif doesn't work?
- ONVIF IP camera discovery with c++
- Unable to connect Onvif camera
- ONVIF WS-Discover 1.0 - Client and Event Handlers
- Network Camera Streaming Capabilities via ONVIF
- Onvif device (camera) is not found during discovery
- ONVIF video stream on camera side (not client side)
- ONVIF - beginning of Device discovery
- How insert element to generated request?
- Gsoap, ONVIF and discovery
- ONVIF: Authentication failure with AXIS P3301 using ONVIF protocol
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
For ONVIF Client (NVC - Network Video Client), you can refer onvifdm. OnvifDM is a one of NVC.
It has many functions based on ONVIF specification:
At the moment, ONVIF latest version is 2.2.
But in the market most of ONVIF conformant device support v1.02 and v2.0 (v2.1?).
NVC (like as onvifdm) needs NVT (Network Video Transmitter) for interoperation.
NVT will be IP camera or NVR (traditional or hybrid), it has various functionalities and capabilites.
ONVIF standard consists of many mandatory items and some optional items.
So, for Inter-operation, you must check the ONVIF version and NVC/NVT capabilities.
If you register as ONVIF member, you can get a ONVIF Conformance Tool (latest ver1.02).
The conformance tool is for NVT compatibility check and you can refer it as a client.
If any NVT pass the test process with ONVIF Conformance Tool, it can be a conformant product.
You can find any ONVIF conformant product in the ONVIF's website.
You can find a open source library in the onvifdm, code-based on .NET.
For more detail look into http://en.synesis.ru/en/surveillance/onvifdm/.