Skip to content

Commit

Permalink
* Fix OpenCVFrameConverter error in IPCameraFrameGrabber (pull #…
Browse files Browse the repository at this point in the history
  • Loading branch information
dm8abramov authored and saudet committed Aug 22, 2019
1 parent 2b1b1e1 commit 89e699b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Fix `OpenCVFrameConverter` error in `IPCameraFrameGrabber` ([pull #1278](https://github.com/bytedeco/javacv/pull/1278))
* Allow setting properties for `OpenCVFrameGrabber` and `OpenCVFrameRecorder` with `setOption()` ([issue #1269](https://github.com/bytedeco/javacv/issues/1269))
* Add missing `requires java.desktop` to `module-info.java` ([issue #1265](https://github.com/bytedeco/javacv/issues/1265))
* Upgrade dependencies for OpenCV 4.1.1, FFmpeg 4.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static void tryLoad() throws Exception {
}
}

private final FrameConverter converter = new OpenCVFrameConverter.ToIplImage();
private final FrameConverter converter = new OpenCVFrameConverter.ToMat();
private final URL url;
private final int connectionTimeout;
private final int readTimeout;
Expand Down

0 comments on commit 89e699b

Please sign in to comment.