Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Qt how to write Security Video Surveillance system to realize onvif event subscription

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to write Qt security video surveillance system to achieve onvif event subscription". In the operation of actual cases, many people will encounter such a dilemma. Next, let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

I. Preface

Event subscription is a recently added function, mainly because there are more and more application scenarios that can receive alarm events from cameras. For example, alarm input and output interfaces will be added behind almost all cameras. If the user externally connects the alarm input, then when the alarm is triggered, the corresponding event will also be sent through onvif, which is equivalent to being compatible with the alarm event reception of all onvif camera manufacturers. This function is also very common in some application systems.

Event subscription process

Send getEvent (CreatePullPointSubscription) subscribe to the event service.

After the subscription service is successful, the PullMessages subscription event is sent.

If there is an event, the data will be replied immediately, and after the data has been processed, the PullMessages subscription event will be resent.

To and fro, if there is an event, the data will be replied after the request, which is a persistent connection by default.

The PullMessages is sent with a timeout, and once the timeout has expired, you need to resend the PullMessages.

Main functions of onvif

Search for equipment and get information about the equipment, such as manufacturer, model, etc.

Get multiple profile information profile for the device.

Get parameters such as video stream address rtsp and resolution of the corresponding configuration file.

Head control, moving up and down, left and right, focal length magnified and reduced, relative and absolute movement.

Get the preset information and trigger the preset.

Subscribe to events and receive all kinds of messages from the device, especially alarm events such as the alarm of the IO port.

Capture the picture to get the current picture of the device.

Get, create, and delete user information.

Get and device network configuration information such as IP address.

Gets and sets NTP time synchronization.

Gets and sets the device time.

Restart the device.

The processing flow of onvif

Bind a multicast IP (239.255.255.250) and a port (3702) to send a data search device in a fixed xml format.

The received data is parsed in xml format to get the Onvif address of the device.

Send the corresponding data to the Onvif address, receive the data and take out the corresponding node data.

Request Onvif address to obtain Media address and Ptz address. Media address is used to obtain detailed configuration files, and Ptz address is used for cloud control.

Ptz control is to send the corresponding data to the Ptz address.

Set up the need for user authentication to organize the user token information to be sent together, and each time it needs to be authenticated.

The data received is not standard xml data and can not be processed according to normal node parsing, so it can only be done with QXmlQuery.

The data returned by each manufacturer's equipment may not be completely consistent, but they are basically inconsistent, so it is necessary to fuzzy find the node value.

Specially uses the underlying protocol parsing, because soap is too bloated and the function name is too alternative, so it is specially lightweight.

Two must-have tools, Onvif Device Manager and Onvif Device Test Tool.

II. Functional features

Supports multi-screen switching, full-screen switching, etc., including 1 "4" 6 "8" 9 "13" 16 "25" 36 "64 screen switching.

Support alt+enter full screen, esc exit full screen.

Custom message box + error box + inquiry box + prompt box in the lower right corner (including multiple formats).

17 sets of skin styles are changed at will, all styles are unified, including menus and so on.

The head dashboard mouse moves up to highlight, and eight directions are accurately identified.

The bottom screen toolbar (screen division switch + screenshot sound, etc.) is moved up to highlight.

You can change the logo+ Chinese software name + English software name in the upper left corner of the configuration file.

Encapsulated Baidu map, view switching, motion trajectory, equipment location, mouse press to obtain longitude and latitude and so on.

Support picture map, the device button can drag freely on the picture map to automatically save location information.

On Baidu Maps and Picture Maps, double-click the video to preview the camera real-time video.

Stack forms, each form is a separate qwidget, making it easy to write your own code.

Top right mouse button menu, can dynamically control the time CPU+ upper left corner panel + lower left corner panel + upper right corner panel + lower right corner panel show and hide, support to restore the default layout.

Toolbars can place multiple small icons and close icons.

The left side and the right side can be dragged and stretched, and the width and height position can be automatically remembered and restored after restart.

Double-click the camera node to automatically play the video, double-click the node to automatically add videos in turn, automatically jump to the next one, and double-click the parent node to automatically add all the videos under that node.

The camera node is dragged to the corresponding form to play the video, and the local file can be dragged to play directly.

The video screen form supports dragging and swapping and instant response.

Double-click the node + drag the node + drag the form to change the position, and the url.txt is automatically updated.

Support loading channel video playback from url.txt, automatically memorizing the video corresponding to the last channel, and automatically opening and playing after the software starts.

Lower right corner volume bar control, lose focus automatically hide, volume bar with mute icon.

Integrate Baidu online map and offline map, you can add the corresponding location of the device, automatically generate the map, support zooming and adding coverings and so on.

Drag the video out of the channel form to automatically delete the video.

The right mouse button can delete the current + all videos and take screenshots of current + all videos.

Video recorder management, camera management, you can add, delete, modify, import and export print information, and immediately apply new equipment information to generate a tree list without restarting.

In the pro file, you are free to open or load the map.

Video playback can be switched freely by two kernels, vlc+ffmpeg, both of which can be set in pro.

You can set 1 "4" 9 "16 screen polling, you can set the polling interval and the polling stream type, etc. Click the start polling button on the right side of the toolbar at the bottom of the main interface, and click stop polling again.

By default, the mouse pointer is automatically hidden without operation for more than 10 seconds.

Support onvif search equipment, support any onvif camera, including but not limited to Haikang Dahuayu Shitian Weiye Huawei and so on.

Support onvif pan control, can move the head camera up and down, including reset and focal length adjustment, etc.

It also supports sqlite, mysql, postsql and other databases.

Can save video, can be selected for storage or single file storage, optional storage interval.

The video stream communication mode tcp+udp can be set, and the video decoding can be set as speed priority, quality priority, balance and so on.

Can set hard decoding type, support qsv, dxva2, d3d11va and so on.

Opengl is used by default to draw video, ultra-low CPU resource consumption, support for yuyv and nv12 two formats to draw, very powerful.

Highly customizable, users can easily derive their own functions on this basis, supporting linux and mac systems.

Third, effect picture

4. Core code QString OnvifDevice::getEvent (const QString & timeout) {QString file = OnvifHelper::getFile (": / send/getEvent.xml"); file = file.arg (request- > getUserToken ()) .arg (timeout); QByteArray dataSend = file.toUtf8 (); QNetworkReply * reply = request- > post (deviceUrl, dataSend); emit sendData (dataSend, deviceUrl); QByteArray dataReceive; bool ok = checkData (reply, dataReceive, "subscribe event Service") If (ok) {OnvifQuery query; query.setData (dataReceive); eventUrl = query.getEventUrl (); / / start the timer to request event content if (! timerPullMessage- > isActive ()) {timerPullMessage- > start (); QTimer::singleShot (100, this, SLOT (pullMessage ();} return eventUrl } QString OnvifDevice::pullMessage (const QString & timeout) {QString message; if (eventUrl.isEmpty ()) {return message;} emit receiveInfo ("request event content"); / / there are two types of messages, QString file; if (messageIndex = = 0) {/ / messageIndex = 1; file = OnvifHelper::getFile (": / send/pullMessage.xml") } else if (messageIndex = = 1) {messageIndex = 0; file = OnvifHelper::getFile (": / send/pullMessage2.xml");} QString uuid = OnvifHelper::getUuid (); file = file.arg (request- > getUserToken ()) .arg (uuid) .arg (timeout); QByteArray dataSend = file.toUtf8 (); QNetworkReply * reply = request- > post (eventUrl, dataSend); emit sendData (dataSend, eventUrl); QByteArray dataReceive Bool ok = checkData (reply, dataReceive, "request event content"); if (ok) {OnvifQuery query; query.setData (dataReceive); message = query.getEventMessage (); if (! message.isEmpty ()) {emit receiveInfo (message) / / received the event data and replied to continue the request, as it is possible to have the event data until you have finished taking the pullMessage ();}} return message;} "how to write Qt to implement onvif event subscription in the security video surveillance system". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report