1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Merge branch 4.x

This commit is contained in:
Alexander Smorkalov
2026-02-11 13:54:39 +03:00
committed by Alexander Smorkalov
468 changed files with 16647 additions and 11284 deletions
@@ -117,7 +117,7 @@ public:
CV_WRAP virtual int getNMixtures() const = 0;
/** @brief Sets the number of gaussian components in the background model.
The model needs to be reinitalized to reserve memory.
The model needs to be reinitialized to reserve memory.
*/
CV_WRAP virtual void setNMixtures(int nmixtures) = 0;//needs reinitialization!
@@ -268,7 +268,7 @@ public:
CV_WRAP virtual int getNSamples() const = 0;
/** @brief Sets the number of data samples in the background model.
The model needs to be reinitalized to reserve memory.
The model needs to be reinitialized to reserve memory.
*/
CV_WRAP virtual void setNSamples(int _nN) = 0;//needs reinitialization!
@@ -700,6 +700,16 @@ public:
/** @copybrief getFinestScale @see getFinestScale */
CV_WRAP virtual void setFinestScale(int val) = 0;
/** @brief Sets the coarsest scale
@param val Coarsest level of the Gaussian pyramid on which the flow is computed.
If set to -1, the auto-computed coarsest scale will be used.
*/
CV_WRAP virtual void setCoarsestScale(int val) = 0;
/** @brief Gets the coarsest scale
*/
CV_WRAP virtual int getCoarsestScale() const = 0;
/** @brief Size of an image patch for matching (in pixels). Normally, default 8x8 patches work well
enough in most cases.
@see setPatchSize */