Windows에서 "비디오 컨트롤러"에 대한 Java 액세스 (Java Access To "Video Controller" In Windows)


문제 설명

Windows에서 "비디오 컨트롤러"에 대한 Java 액세스 (Java Access To "Video Controller" In Windows)

Java에서 비디오 컨트롤러로 분류된 장치에 액세스하는 방법이 있습니까? 내가 만든 애플릿을 통해 웹캠에서 캡처할 수 있지만 Windows 장치 관리자가 "비디오 컨트롤러"로 분류하는 보안 카메라에서 이미지를 캡처해야 합니다.

웹캠에 사용한 것과 동일한 코드가 작동할 거라고 생각했는데 실망이 컸습니다.

아이디어가 있습니까?


참조 솔루션

방법 1:

Beside going to the JNI route, I would definitely take a look to OpenCV, that would do it for you effortless.

OpenCV provide a DLL that you can easily invoke from Java. You can then use it to capture and manipulate images coming from a webcam, in real‑time.

But the really interesting part of OpenCV reside in the fact that it is a Computer Vision API. As such, you can for e.g. easily perform motion detection, face recognition, etc, what sounds to me to be a must in the video security software world.

To capture an image from a camera, see the VideoCapture method. Example of usage here.

(by bkeahlHey StackExchange)

참조 문서

  1. Java Access To "Video Controller" In Windows (CC BY‑SA 2.5/3.0/4.0)

#capture #image #video #Windows #java






관련 질문

Java 제네릭: 캡처를 사용한 컴파일 실패 (Java generics: compilation failure using captures)

Python 함수 호출에서 stdout 출력을 캡처하는 방법은 무엇입니까? (How to capture stdout output from a Python function call?)

캡처한 이미지 캡처 및 공유를 구현하고 싶습니다. (I want to implement capture and sharing captured image)

Ambilight용 Python 화면 캡처(더 적은 리소스 집약적) (Python Screen Capture for Ambilight (less resource intensive))

Windows에서 "비디오 컨트롤러"에 대한 Java 액세스 (Java Access To "Video Controller" In Windows)

libpcap으로 PPP 패킷을 스니핑하는 방법은 무엇입니까? (How to sniff PPP packet with libpcap?)

DVB-T 스틱에서 AVI 파일로 캡처하는 방법 (How to capture from a DVB-T Stick to an AVI-File)

xlib를 사용하여 키 누름 이벤트 캡처 (capture key press event using xlib)

앱에서 HTTPS 트래픽을 캡처하고 싶지만 작동하지 않습니다. (I want to Capture HTTPS Traffic from app but it does not work)

Selenium-wire Python을 사용하여 네트워크 트래픽을 캡처하는 동안 다른 형식의 로그 보기 (Seeing logs in a different format while capturing network traffic using selenium-wire python)

Android 애플리케이션의 특정 프레임 내 자동 촬영 기능 (Auto picturing feature within specific frame in Android application)

안드로이드 스튜디오 캡처 이미지 더 빠르게 (android studio capture image faster)







코멘트