Add support for true in-place convolution to filter2D (Feature #3741)
Description
The documentation for filter2D claims that "in-place operation is supported.". However, this is not really the case, and OpenCV seems to create a temporary copy somewhere to serve as input to the filter. This is unfortunate, since it precludes the possibility of designing true IIR filters using this operator (where you want the previous output to affect the next input).
It would be nice to add a flag to allow specifying true in-place convolution.
Associated revisions
Merge pull request #3741 from StevenPuttemans:fix_3028_master
History
Updated by Daniil Osokin over 10 years ago
- Category set to imgproc, video
Updated by Maksim Shabunin over 9 years ago
Issue has been transferred to GitHub: https://github.com/Itseez/opencv/issues/4767