diff --git a/CHANGELOG.md b/CHANGELOG.md index 36e85ca332ee0637129f5840e3498498794f67d3..64273414c16d7aaf3f1bc60e45c65cdb288f5e10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,9 +17,11 @@ This changelog aims to follow the guiding principles of ### Added - Implementation of Rotate 90 degrees clockwise. -- Remap implementations - - Nearest neighbour, for replicated borders with 1-channel u8 and u16 inputs. - - Fixed-point interpolation, for replicated borders with 1-channel u8 and u16 inputs. +- Remap implementations with + - Replicated and constant borders + - Nearest neighbour and fixed-point interpolations + - 1-channel only + - u8 and u16 inputs - WarpPerspective implementation - Nearest and Linear interpolation method, for 1-channel u8 input. diff --git a/doc/opencv.md b/doc/opencv.md index 8486b5338b534a14e702dd775b89fd620407a39a..b9db1d3050df02546b4d7c1f7923d5ae7f8c99b2 100644 --- a/doc/opencv.md +++ b/doc/opencv.md @@ -209,6 +209,7 @@ Notes on parameters: * `src.step` - must be less than 65536 * element size. * `src.width`, `src_height` - must not be greater than 32768. * `src.type()` - supports `CV_8UC1` and `CV_16UC1`. +* `dst.cols` - must be at least 8 * `borderMode` - supports `BORDER_REPLICATE` and `BORDER_CONSTANT`. \ Supported map configurations: * `map1.type()` is `CV_16SC2` and `map2` is empty: @@ -216,7 +217,7 @@ Supported map configurations: * channel #1 is x coordinates (column) * channel #2 is y coordinates (row) * supported `interpolation`: `INTER_NEAREST` only -* `map1.type()` is `CV_16SC2` and `map2.type()` is `CV_16UC1` - fixed-point representation as generated by [`cv::convertMaps`](https://docs.opencv.org/4.10.0/da/d54/group__imgproc__transform.html#ga9156732fa8f01be9ebd1a194f2728b7f): +* `map1.type()` is `CV_16SC2` and `map2.type()` is `CV_16UC1` - fixed-point representation as generated by [`cv::convertMaps`](https://docs.opencv.org/4.11.0/da/d54/group__imgproc__transform.html#ga9156732fa8f01be9ebd1a194f2728b7f): * > ⚠️ **Acceleration will not work unless OpenCV is built from source patched with `opencv-4.11.patch`** * supported `interpolation`: `INTER_LINEAR` only