update readme, changelog

This commit is contained in:
l1npengtul
2021-09-27 22:08:26 +09:00
parent 8dc6825dea
commit d613e9c8cb
2 changed files with 10 additions and 0 deletions
+9
View File
@@ -1,3 +1,12 @@
# 0.4.0
- Added AVFoundation, MSMF, WASM
- `.get_info()` returns a `&CameraInfo`
- Added Threaded Camera
- Added JSCamera
- Changed `new` to use `CaptureAPIBackend::Auto` by default. Old functionally still possible with `with_backend()`
- Added `query()`, which uses `CaptureAPIBackend::Auto` by default.
- Fixed/Added examples
# 0.3.2
- Bumped `ouroboros` to avoid potential UB
- [INTERNAL] Removed `Box<T>` from many internal struct fields of `UVCCaptureDevice`
+1
View File
@@ -63,6 +63,7 @@ As a general rule of thumb, you would want to keep at least `input-uvc` or other
`input-*` features:
- `input-v4l`: Enables the `Video4Linux` backend. (linux)
- `input-msmf`: Enables the `MediaFoundation` backennd. (Windows 7 or newer)
- `input-avfoundation`: Enables the `AVFoundation` backend. (MacOSX 10.7)
- `input-uvc`: Enables the `libuvc` backend. (cross-platform, libuvc statically-linked)
- `input-opencv`: Enables the `opencv` backend. (cross-platform)
- `input-ipcam`: Enables the use of IP Cameras, please see the `NetworkCamera` struct. Note that this relies on `opencv`, so it will automatically enable the `input-opencv` feature.