Skip to content

Commit dda33bd

Browse files
authored
Release 0.5.0 (#62)
* Apply clippy fix * Apply more fixes and remove warnings * Release 0.5.0
1 parent 6ac5e26 commit dda33bd

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

CHANGELOG.md

+5-14
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
# Change Log
22

3-
## [Unreleased]
4-
3+
## [0.5.0]
54
### Added
6-
75
- The `ThresholdApplyExt` trait to apply user-defined threshold
86
- The `threshold_apply` method to the `ArrayBase` and `Image` types
97

10-
## [0.4.0] 2022-02-17
11-
128
### Changed
9+
- Completely revamped transform module adding a new `Transform` and `ComposedTransform`
10+
trait and fixing implementation issues
1311

12+
## [0.4.0] 2022-02-17
13+
### Changed
1414
- Remove discrete levels - this overflowed with the 64 and 128 bit types
1515

1616
## [0.3.0] 2021-11-24
17-
1817
### Changed
19-
2018
- Fixed orientation of sobel filters
2119
- Fixed remove limit on magnitude in sobel magnitude calculation
2220

2321
## [0.2.0] 2020-06-06
24-
2522
### Added
26-
2723
- Padding strategies (`NoPadding`, `ConstantPadding`, `ZeroPadding`)
2824
- Threshold module with Otsu and Mean threshold algorithms
2925
- Image transformations and functions to create affine transform matrices
@@ -32,7 +28,6 @@
3228
- Morphology module with dilation, erosion, union and intersection of binary images
3329

3430
### Changed
35-
3631
- Integrated Padding strategies into convolutions
3732
- Updated `ndarray-stats` to 0.2.0 adding `noisy_float` for median change
3833
- [INTERNAL] Disabled code coverage due to issues with tarpaulin and native libraries
@@ -42,15 +37,11 @@
4237
- Various performance enhancements in convolution and canny functions
4338

4439
## [0.1.1] - 2019-07-31
45-
4640
### Changed
47-
4841
- Applied zero padding by default in convolutions
4942

5043
## [0.1.0] - 2019-03-24
51-
5244
### Added
53-
5445
- Image type
5546
- Colour Models (RGB, Gray, HSV, CIEXYZ, Channel-less)
5647
- Histogram equalisation

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-vision"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["xd009642 <[email protected]>"]
55
description = "A computer vision library built on top of ndarray"
66
repository = "https://github.com/xd009642/ndarray-vision"

0 commit comments

Comments
 (0)