我试图在java中创建一个应用程序,使用OpenCV从web服务中获取视频流,这是一个带有两个摄像头和一个记录设备的摄像机系统。
我找到了地址"rtsp://login:pass@IP address:Port/cam/realmonitor?channel=1&subtype=0“”,用于访问通道1上的摄像机。
对于打开相机流,我使用了以下代码(现在它捕获了一个本地usb摄像机):
VideoCapture帽;Mat2Image mat2Img =新Mat2Image();
public VideoGrabber(){
cap = new VideoCapture(0);
try {
System.out.println("Sleeping..");
Thread.sleep(4000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Camera on..");
cap.open("0");
if(!cap.isOpened()){
System.out.println("Camera Error");
}
else{
System.out.println("Camera OK?");
}
}在抓取视频流后,我将其放入JFrame中。
我想我应该把视频流服务地址放在cap.open中(.)但是使用rtsp://login:pass@http://192.168.1.14:8006/cam/realmonitor?channel=1&subtype=0给了我“线程中的异常”AWT 0“java.lang.IllegalArgumentException: Width (0)和height (0)必须>0”。
请帮帮忙,
编辑我已经发现,rtsp://login:pass@http://192.168.1.14554/cam/realmonitor?channel=1&subtype=0工作在vlc,但仍然没有运气在opencv。
编辑#2好。在使用了vlcl、gstreamer和大多数流行的解决方案之后,它才刚刚开始工作。我不知道这是不是糟糕的rtsp地址。代码:
static {
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
//load the library of opencv
}
VideoCapture cap;
Mat2Image mat2Img = new Mat2Image();
Mat matFilter = new Mat();
public VideoGrabber(){
cap = new VideoCapture();
try {
System.out.println("Sleeping..");
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Camera on..");
cap.open("rtsp://login:pass@192.168.1.14:554/cam/realmonitor?channel=1&subtype=0");
if(!cap.isOpened()){
System.out.println("Camera Error");
}
else{
System.out.println("Camera OK?");
}
}发布于 2017-01-14 16:02:31
回答我的问题,对于Fouad,我发布了工作代码:我猜答案是加载ffmpeg dll。
//all the imports
public class App {
static {
String path = null;
try {
//I have copied dlls from opencv folder to my project folder
path = "E:\\JAVA Projects\\OpenCv\\RTSP Example\\libraries";
System.load(path+"\\opencv_java310.dll");
System.load(path+"\\opencv_ffmpeg310_64.dll");
} catch (UnsatisfiedLinkError e) {
System.out.println("Error loading libs");
}
}
public static void main(String[] args) {
App app = new App();
//Address can be different. Check your cameras manual. :554 a standard RTSP port for cameras but it can be different
String addressString = "rtsp://login:password@192.168.1.14:554/cam/realmonitor?channel=11&subtype=0";
Mat mat = new Mat();
VideoCapture capturedVideo = new VideoCapture();
boolean isOpened = capturedVideo.open(addressString);
app.openRTSP(isOpened, capturedVideo, mat);
}
public void openRTSP(boolean isOpened, VideoCapture capturedVideo, Mat cameraMat) {
if (isOpened) {
boolean tempBool = capturedVideo.read(cameraMat);
System.out.println("VideoCapture returned mat? "+tempBool);
if (!cameraMat.empty()) {
System.out.println("Print image size: "+cameraMat.size());
//processing image captured in cameraMat object
} else {
System.out.println("Mat is empty.");
}
} else {
System.out.println("Camera connection problem. Check addressString");
}
}
}https://stackoverflow.com/questions/39190282
复制相似问题