1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//!
//! # Scope
//!
//! The generic `read_image` / `decode_image` / `write_image` entry points
//! exposed by the `kornia-py` Python bindings are Python-only convenience
//! helpers. This crate exposes strictly typed per-format functions under the
//! [`jpeg`], [`png`], and [`tiff`] modules (and `jpegturbo` when enabled),
//! plus [`functional::read_image_any_rgb8`] for a single-path RGB8 convenience.
/// Module to handle the error types for the io module.
/// Module to handle the camera frame rate.
/// High-level read and write functions for images.
/// TurboJPEG image encoding and decoding.
/// PNG image encoding and decoding.
/// JPEG image encoding and decoding.
/// WEBP image encoding and decoding
/// GStreamer video module for real-time video processing.
// NOTE: remove in future release
pub use gstreamer as stream;
/// TIFF image encoding and decoding.
/// Image metadata helpers (EXIF parsing)
/// V4L2 video module for real-time video processing.
/// RVL (Run-Length Variable) lossless depth codec.
/// Internal utility functions for image bit depth conversion.
pub use crate;