opencv/modules/imgproc/perf
Pierre Chatelier 5e5a035c5b
Merge pull request #24621 from chacha21:remap_relative
First proposal of cv::remap with relative displacement field (#24603) #24621

Implements #24603

Currently, `remap()` is applied as `dst(x, y) <- src(mapX(x, y), mapY(x, y))` It means that the maps must be filled with absolute coordinates.

However, if one wants to remap something according to a displacement field ("warp"), the operation should be `dst(x, y) <- src(x+displacementX(x, y), y+displacementY(x, y))`

It is trivial to build a mapping from a displacement field, but it is an undesirable overhead for CPU and memory.

This PR implements the feature as an experimental option, through the optional flag WARP_RELATIVE_MAP than can be ORed to the interpolation mode.

Since the xy maps might be const, there is no attempt to add the coordinate offset to those maps, and everything is postponed on-the-fly to the very last coordinate computation before fetching `src`. Interestingly, this let `cv::convertMaps()` unchanged since the fractional part of interpolation does not care of the integer coordinate offset.

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [X] I agree to contribute to the project under Apache 2 License.
- [X] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [X] The PR is proposed to the proper branch
- [X] There is a reference to the original bug report and related work
- [X] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [ ] The feature is well documented and sample code can be built with the project CMake
2024-02-28 17:20:33 +03:00
..
opencl Merge pull request #24333 from definitelyuncertain:CvtRGB2YUV422 2023-10-12 10:18:24 +03:00
perf_accumulate.cpp imgproc:simd Enable VSX and wide universal intrinsics for accumulate operations 2018-10-11 04:37:12 +02:00
perf_bilateral.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_blur.cpp add stackblur for imgproc. 2022-09-28 17:47:32 +08:00
perf_canny.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_contours.cpp Performance test for bounding rect estimation 2019-01-18 15:50:21 +03:00
perf_corners.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_cvt_color.cpp Merge pull request #24333 from definitelyuncertain:CvtRGB2YUV422 2023-10-12 10:18:24 +03:00
perf_distanceTransform.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_filter2d.cpp perf: ignore _ovx tests 2019-03-06 15:52:23 +03:00
perf_floodfill.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_goodFeaturesToTrack.cpp Merge pull request #19392 from amirtu:OCV-165_finalize_goodFeaturesToTrack_returns_also_corner_value_PR 2021-02-15 19:55:57 +00:00
perf_histogram.cpp Add CV_16UC1 support for cuda::CLAHE 2019-02-06 17:21:55 +00:00
perf_houghcircles.cpp Backport C-API cleanup (imgproc) from 5.x 2023-01-16 23:29:50 +03:00
perf_houghlines.cpp Fix modules/ typos 2019-08-16 17:34:29 +03:00
perf_integral.cpp Merge pull request #23109 from seanm:misc-warnings 2023-10-06 13:33:21 +03:00
perf_intelligent_scissors.cpp Merge pull request #23698 from cpoerschke:4.x-pr-21959-perf 2023-05-29 11:02:59 +03:00
perf_main.cpp Merge pull request #11897 from Jakub-Golinowski:hpx_backend 2018-08-31 16:23:26 +03:00
perf_matchTemplate.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_moments.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_morph.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_phasecorr.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_precomp.hpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_pyramids.cpp perf: ignore _ovx tests 2019-03-06 15:52:23 +03:00
perf_remap.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_resize.cpp Ensure interarea algorithm usage in resize perfomance test. 2023-10-17 09:43:15 +03:00
perf_sepfilters.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_spatialgradient.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_threshold.cpp ts: refactor OpenCV tests 2018-02-03 19:39:47 +00:00
perf_warp.cpp Merge pull request #24621 from chacha21:remap_relative 2024-02-28 17:20:33 +03:00