1.海康威视明眸门禁接口调用
2.Android+Onenet基础学习(一)门禁报警之安卓开发
3.门禁卡读出来的门禁门禁16进制数解析(dump数据)
4.在JAVA中如何实现长时间任务
5.除了python之外,你还应该来了解一下java的源码源码图像处理和人脸识别库:javacv
6.《JavaCV音视频开发宝典》专栏介绍和目录
海康威视明眸门禁接口调用
在实现设备抓拍功能前,需先完成设备的人脸初始化、注册、识别监听和布防。门禁门禁这些步骤详细内容将在后续文章中阐述。源码源码棋牌源码学习
目标是人脸使用Springboot与海康SDK协同,构建以人为核心的识别门禁系统,记录人脸成功或失败的门禁门禁识别情况。
系统通过门禁设备捕捉人脸,源码源码并将捕获的人脸人脸与其相关数据上传。
服务器环境基于Linux银河麒麟操作系统,识别搭载飞腾 ARM架构CPU。门禁门禁
开发环境在Windows 上进行。源码源码
SDK下载地址为海康威视官网的人脸下载中心,提供针对Windows开发版和Linux发布的版本。
SDK接口文档解析如下:
1. 初始化SDK(NET_DVR_Init):加载海康提供的开发库,调整库的路径。
2. 设置报警回调函数(NET_DVR_SetDVRMessageCallBack_V):在初始化后,配置报警回调函数,用于处理人脸抓拍后,设备上传报警信息至SDK的逻辑。
3. 用户注册(NET_DVR_Login_V):填写设备参数进行注册,成功后获取lUserID,后续操作将使用此ID。
4. 获取设备能力集(NET_DVR_GetDeviceAbility):获取智能通道分析能力集,判断设备是否支持特定功能。
5. 设置人脸抓拍参数(NET_DVR_SetDVRConfig)与获取人脸抓拍参数(NET_DVR_GetDVRConfig):可选步骤,调整设备抓拍设置。
6. 报警布防(NET_DVR_SetupAlarmChan_v):建立设备与客户端间的报警信息上传通道,确保设备报警后能顺利上传数据。string java源码
7. 报警回调函数处理数据(COMM_ALARM_ACS, NET_DVR_ACS_ALARM_INFO):接收并处理设备上传的报警信息。
8. 报警撤防(NET_DVR_CloseAlarmChan_v)与注销用户(NET_DVR_logout)与释放资源(NET_DVR_Cleanup):结束报警状态与释放SDK资源。
将SDK与Springboot集成,通过引入MAVEN并导入HCNetSDK.java,实现初始化库路径、登录、启用布防、设置报警回调、检查设备在线状态、撤掉布防、注销与释放资源以及回调函数实现等功能。
Android+Onenet基础学习(一)门禁报警之安卓开发
3. 门禁报警之安卓开发流程
1)build.gradle(project)
2)build.gradle(app)
3)gradle_wrapper
4)AndroidManifest
5)JAVA
①MainActivity.java
②Data.java
③Datapoints.java
④Datastreams.java
⑤JsonBootBean.java
6)Drawable
①ic开头皆为内部创建图标或格式
创建流程如下:
②round.xml
7)Layout
8)values
参考学习B站UP主:①花麻拐Zz②oubit
门禁卡读出来的进制数解析(dump数据)
是这样的 Java c 都有进制的 数据类型的,看你的意思好像是要把一个门禁卡开很多门是吗?
如果是的话,我只能说是做不到的,你看到很多一个卡可以开很多门,那是他的码在很多开门的系统同录入过,他们的系统中有这个卡的权限,所以可以开很多门,如果你想一个卡开很多门,那么你就得复制这样的卡,如果只是各种门禁的卡拿到一块,你想一张卡开这么多卡可开的们是实现不了的
在JAVA中如何实现长时间任务
摘要:在软件开发中,我们经常面临着处理长时间任务的多线程编程问题。在我们的ezOne平台的开发中就多处涉及到,如JPC数据服务JPC数据处理服务、报警联动、门禁系统等。本人在编写DEMO程序的过程中几易其稿,煞费心机,但依然感觉有许多地方需要改进,图形绘制源码为了减少多线程编程带来的风险,我尝试翻译整理了一个类似问题的解决方案框架以达到一劳永逸。 为了便于阅读,保留原文。 一、问题背景Quite often, you need a class to perform tasks like data processing, listening to events, or checking another class' activities during the application’s lifetime. To achieve this, you probably use threads with a set of locks and notifications. Java Thread API is well documented, but you need a great deal of code and experience to make your thread work properly and efficiently. You can avoid writing such classes from scratch every time you need them and build a more robust application by applying the framework we'll discuss in this article. 在应用程序中我们经常需要一个类去完成像数据处理、监听事件或检查另一个类的活动等任务。为了达到这个目标,我们可能使用带有一套锁和消息通知的线程。JAVA 线程API已经很好的文档化,但为了使线程能够正确而高效地运行,程序员仍然需要丰富的编程经验并编写大量的代码。通过应用本篇文章中讨论的框架,程序员能够避免忍受煎熬写大量的代码,快速创建健壮的应用程序。 二、长时间运行任务的程序框架Framework for long-running tasks The primary thing about a long-lived task is that it should somehow be kept running during the application lifetime. The right way to accomplish this is to provide a thread of execution for a particular task. You create a task as a thread or as an implementation of the java.lang.Runnable interface. If you implement Runnable, you can gain better object-oriented design and avoid the single-inheritance problems. You can also more efficiently manipulate with Runnable instances, for example, using a thread pool that usually needs a Runnable instance, not a thread, to run. 关于长时间运行的任务的主要事情是如何在应用程序的生命期使它一直保持运行。实现的恰当方法是提供一个线程来执行这个特定的任务。我们可以通过继承Thread类或实现java.lang.Runnable接口来达到该目标。如果采用实现Runnable接口的方式,就可以能够获得更好的面向对象的设计,同时可以避免JAVA中的单继承问题。另外,我们也能更有效的处理Runnable实例(例如使用线程池通常需要一个Runnable实例而不是线程来运行)。 The essence of the framework is the abstract class Worker ( Listing A), which implements the Runnable interface and provides the helper methods for efficient task handling. Some of the methods are fully implemented, like the run() method, but some are abstract and have to be filled by you. If you want to create a long-running class, you need only to extend the Worker class and implement several abstract methods. Let’s look at these methods in more detail. 框架的基础是一个叫Worker的抽象类,它实现了Runnable接口,并提供了有效处理任务的好方法。这些方法有些已经被实现,如run()方法,但有些是仿单读源码抽象方法,开发人员必须自己来实现。如果要创建一个长时间运行的类,你只需要继承Worker类并实现几个抽象方法。让我们看看这些方法的细节。 The run() method of the Worker class is designed to continuously execute the work() method until it is stopped. The work() method can be responsible for data processing, reaction to some event, file reading or writing, SQL execution, etc. It can throw an exception, so it is a good practice to propagate it and let the run() method handle it. Worker 类的run()方法被设计成只要不停止运行就持续的执行work()方法。work()方法可以负责数据处理、事件响应、文件读写、,执行SQL命令等操作。这样work()方法能够抛出异常,并将异常传给run(),然后由run()方法来处理这些异常。 The run() method has two levels of try-catch clause: outside and inside the while-loop. The first try-catch clause is meant to catch all nonprogrammed exceptions and guarantee that the run() method never exits. The second clause will catch any kind of exceptions belonging to business logic and behave accordingly. If some waiting operation takes place in the work() method (e.g., waiting on an InputStream or a Socket), it is advisable to propagate an InterruptedException. The thing to keep in mind is that the work() method does not need to have any while-loop to keep it going as long as an application runs. The Worker does this for you. run()方法有内外两层try-catch语句:一层处于while-loop循环外,一层在while-loop循环内。前一个try-catch用于捕获非编程异常以确保run()方法不退出。后一个try-catch语句捕获关于业务逻辑和相应行为的各种异常。如果在work()方法中发生了一些等待操作(例如等待一个输入流或一个Socket),抛出一个InterruptedException的方法是可取的。要记住的是只要应用程序在运行,work()方法不需要任何while-loop循环去维持它运行,这一切由Worker代办了。 When the run() method starts, it calls the prepareWorker() which is designed to prepare all resources needed for a long-running task (Listing A). In this method call, you can, for example, establish a database connection or open a file that will be used further. It is especially good to place here some blocking operations like opening a socket, because they will be done in a separate thread and thus will not block the main thread of execution. run()开始时,调用prepareWorker()方法来准备长时间运行任务需要的所有资源(参考程序清单A)。例如 ,在这个方法中可以打开一个将要用到的数据库连接或文件。尤其对于那些像建立一个socket这样的阻塞操作放在这儿是很好的。因为若让它们在一个独立的线程中运行,则不会阻塞主线程的执行。 Theasp源码 钛 opposite of the previous method is the releaseWorker() which is called when the run() method is about to exit (Listing A). Here, you can put the code to dispose of system resources used by this task or to perform other cleanup. This method is similar to java.lang.Object.finalize(), but it is explicitly called before a thread terminates. 与前面方法相反的是releaseWorker(),它在run()方法准备退出时被调用(参考程序清单A)。在该方法中你可以编写那些释放系统资源或执行其它清除动作的代码。该方法类似于java.lang.Object.finalize(),但它在线程中止时被显式的调用。 三、框架中的错误处理机制Handling errors in the framework Another important method is the handleError(), which takes a java.lang.Throwable as a parameter. This method is called each time an error situation occurs within the run() method. It is up to you how to implement error handling. One way is to log errors and control task termination by calling halt() method (Listing A). 另一个重要的方法是handleError(),它带有一个java.lang.Throwable的输入参数。在run()方法每次发生错误时调用这个方法。这依赖于你怎么实现错误处理。方法之一是写错误日志并通过调用halt()方法中止任务(参考程序清单A)。 The isCondition() method is used to tell whether execution of the work() method can be started, thus allowing granular control over a task. It is useful in event-triggered frameworks when execution of the work() method is pending until some condition?for example, a buffer is not empty?is fulfilled. In Worker’s implementation, the condition is checked upon a lock notification and periodically with a time interval you specify in the setTimeout() method (Listing A). If you don’t need any waiting blocks in a task, just make the isCondition() method always return true. isCondition()方法用于判断work()方法是否能够被执行。因此允许细粒度地控制任务。这在事件触发的框架中非常有用。当work()方法的执行条件未满足时,work方法将被挂起,直到条件完全满足(例如,缓存区非空)。在Worker的实现中这个条件将按在方法setTimeout()中指定的时间周期地检查一个锁通知。如果在任务中不需要任何等待阻塞,仅仅只要使isCondition()方法总是返回真值。 四、任务终止时机When to terminate You'll also need the isRunning(), broadcast(), and halt() methods. Querying isRunning(), you can check whether a task is still running and make a decision whether to terminate it. The broadcast() method just notifies the lock object and makes a task proceed if it has been waiting on this lock. The halt() method stops a task, so the run() method will exit as soon as the next isRunning() status is checked. Because this method notifies only one lock that may block this task’s thread, it is advisable to use the same lock object when you do blocking operations within the work() method ( Listing B). If you can't use the same lock object, such as when you're blocking on the java.io.InputStream.read() method, you should add explicit notification of all possible locks or add java.lang.Thread.interrupt() to your halt() method. The java.lang.Thread.interrupt() works if an object you are blocked on processes this signal correctly. For example, it works for InputStream.read() but doesn’t work for java.sql.PreparedStatement.execute(), so you have to test halt() method in each particular situation. 你还需要isRunning(), broadcast(), halt()方法。通过访问isRunning()方法,你将能检查某个任务是否正在运行,并决定是否中止它。broadcast()方法正确地通知锁对象,并且如果这个对象一直等待这个锁,那么就激活这个任务。halt()方法中止一个任务,因此下一isRunning()状态一旦被调用,run()方法就退出,因为这个方法只通知那个可能阻塞这个任务线程的锁。当在work()方法中执行阻塞作业时用相同的锁是明智的。如果你不能用相同的锁对象时,例如在执行java.io.InputStream.read()方法遇到阻塞时,你就应该添加所有可能锁的显式通知或者增加java.lang.Thread.interrupt()到halt()中。如果一个你阻塞的对象被正确处理,java.lang.Thread.interrupt()将会起作用。例如,它在InputStream.read()执行时有作用,但在执行java.sql.PreparedStatement.execute()不起作用,因此在每个特殊的条件下你必须测试halt()方法。 Once you are familiar with the Worker class, you can easily create your own implementation (Listing B). To run this class as a thread, simply use a new Thread(new WaitedWorker()).start. Applying Thread.interrupt() or Worker.halt() or a combination of them, you can control task execution precisely. For example, you can stop all workers when JVM shuts down by placing corresponding code in the java.lang.Runtime.addShutdownHook() method. 一旦你熟悉Worker类,你就很容易创建你自己的实现(参考程序清单B),为了把这类当作一个线程运行,仅仅只需简单地使用 new Thread(new WaitedWorker()).start。应用Thread.interrupt()或Worker.halt()或它们的组合,你就可以准确的控制任务的执行。例如当JVM通过在java.lang.Runtime.addShutdownHook()方法中放相应的代码停止时,你就能停止所有的任务。 四、结论Conclusion We've examined the long-running task framework and seen how to create new tasks based on its abstract class. Its architecture is clear and flexible and was designed with extensibility in mind. With this framework, you can avoid creating classes from scratch, and you'll be able to develop more efficient and reliable applications. 我们已经检查了长时间运行任务框架,并且看到怎样通过从创建一个基于它的抽象类的任务。它的构架是清晰和灵活的,并且被设计成可扩展的。用这个框架你能避免为创作类而绞尽脑汁,并且帮助你能够开发出高效、可靠的应用程序。 参考文献1、<> Simon Brown 2、<> Joseph L.Weber 致谢非常感谢曾一起工作的同事和为JAVA技术发展做出贡献的人们,没有他们的努力成果,我就不可能感受到JAVA语言的魅力;同时也要感谢我的上司周洪波博士和卢盛融总工程师,他们给予我许多有益的帮助。 关于译者胡继锋,软件工程师,清华同方应用信息系统本部ezONE研究院研发人员。曾经从事DEPHI、VB、VC、C、PHP、ASP、Oracle等的开发,现在热衷于JAVA技术。同时对资本市场有一定的兴趣。
除了python之外,你还应该来了解一下java的图像处理和人脸识别库:javacv
javacv技术栈究竟有何作用?
大家对于javacv充满好奇,恰巧博主对javacv有所研究,以下就来为各位介绍javacv的功能及其在各个领域的优势。
javacv不仅能处理图像,其强大的跨平台性和快速开发能力使其在Windows、Mac、Linux、树莓派嵌入式等多种平台上都能轻松应对图像处理、人脸检测识别、字符识别、音视频流媒体、树莓派(嵌入式)和深度学习等领域。
图像处理与识别
在图像处理与识别方面,javacv通过jni技术实现了opencv图像检测识别和tesseract字符识别的跨平台使用,无需再次封装。
其他方面,如矩阵计算和深度学习,了解不多,不再赘述。
音视频处理(ffmpeg)
在音视频处理方面,javacv支持ffmpeg的编解码、装封装等功能,两者并无太大差异。
嵌入式开发(树莓派等):
许多人在树莓派等基于arm芯片的板子上使用javacv,通过外接摄像头或音频设备即可实现音视频上传、图像处理、图像识别等功能。
应用场景广泛,包括各种图像采集设备、机器人视觉、人脸打卡和小区门禁等领域。
音视频流媒体:
利用javacv的流媒体优势,可实现音视频采集、推流、编解码、装封装等操作。
深度学习:
deeplearn4j为主的java深度学习框架,在深度学习领域具有一定知名度。
人脸检测识别:
关于人脸检测识别的文章在网络上颇为常见,javacv官网的首页demo也展示了人脸检测的实例,其功能与opencv相当。
文字识别:
通过Tesseract-OCR可轻松实现字符库训练、字符识别。同时,javacv的流媒体属性和嵌入式开发特性也支持摄像头的字符识别和视频图像的字符识别等场景。
javacv技术栈的应用场景
很多人好奇,javacv在哪些应用场景下得到广泛应用?
javacv具备跨平台特性,可在Windows、Linux、macOS等服务器或客户端机器上运行,并在各种嵌入式板上也能良好工作。
《JavaCV音视频开发宝典》专栏介绍和目录
《JavaCV音视频开发宝典》是专注于音视频开发的宝典手册,旨在让开发者轻松上手音视频项目。通过本宝典,用户可以实现多种音视频功能,包括但不限于: 创建直播平台、监控安防平台、接入GB和海康大华等设备、处理各种嵌入式和流媒体服务。JavaCV默认不再包含GPL v2许可协议的代码库,这使得用户无需担心违反许可协议的风险。 对于“电子门禁”的人脸识别开门、实时视频和录像等重要功能,JavaCV为各种开发板和树莓派等嵌入式开发者提供了便捷的实现途径。服务端开发者可以自行实现流媒体转发服务或统一码流转码接入分发服务,如easymedia通过JavaCV实现了自己的流媒体服务,无需依赖第三方服务。 对于安卓或PC客户端开发者,JavaCV支持开发推流软件和视频剪辑软件。利用完整的FFmpeg和OpenCV底层能力,开发者可以实现GPU硬件加速的图像处理识别、视频转码,以及桌面画面录屏、摄像头采集和各种麦克风设备声音采集。 《JavaCV音视频开发宝典》专栏提供了详细的目录导航,包括:拉流和推流:如JavaCV音视频开发宝典:rtsp转推到rtmp、rtsp转推到rtsp、rtsp转推到rtp。
GB、海康大华网络摄像机SDK接入和视频平台SDK接入。
GPU硬件加速:JavaCV使用GPU硬件加速,支持多种显卡在不同平台下的音视频硬解码和硬编码。
视频分片录制:实现rtsp拉流转码方式录制生成HLS切片、m3u8清单/TS切片录制,解决HLS_time无效问题。
桌面屏幕录屏和麦克风采集:使用JavaCV实现Windows、Linux、苹果MacOS屏幕录屏和麦克风声音采集。
此外,JavaCV还支持gif动态图的制作,实现Windows桌面屏幕图像录制成gif动态,支持任意区域生成gif。