From 022a647d8f1d9cbe6a9bc7ce40b9704913d5693b Mon Sep 17 00:00:00 2001 From: kashish2710 Date: Mon, 15 Dec 2025 11:56:25 +0530 Subject: [PATCH] [bgsegm] Fix typo: impemented -> implemented --- modules/bgsegm/include/opencv2/bgsegm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bgsegm/include/opencv2/bgsegm.hpp b/modules/bgsegm/include/opencv2/bgsegm.hpp index 6c894f8fb2f..302e98450f7 100644 --- a/modules/bgsegm/include/opencv2/bgsegm.hpp +++ b/modules/bgsegm/include/opencv2/bgsegm.hpp @@ -147,7 +147,7 @@ class CV_EXPORTS_W BackgroundSubtractorGMG : public BackgroundSubtractor rate. 0 means that the background model is not updated at all, 1 means that the background model is completely reinitialized from the last frame. - @note This method has a default virtual implementation that throws a "not impemented" error. + @note This method has a default virtual implementation that throws a "not implemented" error. Foreground masking may not be supported by all background subtractors. */ CV_WRAP virtual void apply(InputArray image, InputArray knownForegroundMask, OutputArray fgmask, double learningRate=-1) CV_OVERRIDE = 0;