Skip to content

Commit

Permalink
* Upgrade dependencies for Leptonica 1.82.0 (pull bytedeco#1791)
Browse files Browse the repository at this point in the history
org.bytedeco.leptonica.global.lept has changed to org.bytedeco.leptonica.global.leptonica
  • Loading branch information
HolgerMassmann authored Apr 4, 2022
1 parent 8d75c0a commit e806a62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Update `FFmpegStreamingTimeout` sample to use `timeout` instead of `stimeout` for RTSP ([pull #1758](https://github.com/bytedeco/javacv/pull/1758))
* Restore static calls to `FFmpegFrameGrabber.tryLoad()` and `FFmpegFrameRecorder.tryLoad()` ([issue #1756](https://github.com/bytedeco/javacv/issues/1756))
* Enable by default on `RealSense2FrameGrabber.start()` all color, depth, and IR streams as `videoStream` ([pull #1750](https://github.com/bytedeco/javacv/pull/1750))
* Upgrade dependencies for OpenBLAS 0.3.20, Tesseract 5.1.0
* Upgrade dependencies for OpenBLAS 0.3.20, Leptonica 1.82.0 ([pull #1791](https://github.com/bytedeco/javacv/pull/1791)), Tesseract 5.1.0

### February 11, 2022 version 1.5.7
* Fix accuracy and latency issues with `FFmpegFrameGrabber.setVideoFrameNumber()` ([pull #1734](https://github.com/bytedeco/javacv/pull/1734))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.bytedeco.javacpp.Pointer;

import org.bytedeco.leptonica.*;
import static org.bytedeco.leptonica.global.lept.*;
import static org.bytedeco.leptonica.global.leptonica.*;

/**
* A utility class to map data between {@link Frame} and {@link PIX},
Expand All @@ -40,7 +40,7 @@
* @author Samuel Audet
*/
public class LeptonicaFrameConverter extends FrameConverter<PIX> {
static { Loader.load(org.bytedeco.leptonica.global.lept.class); }
static { Loader.load(org.bytedeco.leptonica.global.leptonica.class); }

PIX pix;
BytePointer frameData, pixData;
Expand Down

0 comments on commit e806a62

Please sign in to comment.