Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
vpStatisticalTestShewhart.h
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2025 by Inria. All rights reserved.
4 *
5 * This software is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 * See the file LICENSE.txt at the root directory of this source
10 * distribution for additional information about the GNU GPL.
11 *
12 * For using ViSP with software that can not be combined with the GNU
13 * GPL, please contact Inria about acquiring a ViSP Professional
14 * Edition License.
15 *
16 * See https://visp.inria.fr for more information.
17 *
18 * This software was developed at:
19 * Inria Rennes - Bretagne Atlantique
20 * Campus Universitaire de Beaulieu
21 * 35042 Rennes Cedex
22 * France
23 *
24 * If you have questions regarding the use of this file, please contact
25 * Inria at visp@inria.fr
26 *
27 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29 */
30
35
36#ifndef VP_STATISTICAL_TEST_SHEWHART_H
37#define VP_STATISTICAL_TEST_SHEWHART_H
38
39#include <vector>
40
41#include <visp3/core/vpConfig.h>
42#include <visp3/core/vpStatisticalTestSigma.h>
43
79
81{
82public:
92
93 static std::string vpWecoRulesAlarmToString(const vpWecoRulesAlarm &alarm);
94
95#if ((__cplusplus >= 201703L) || (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L))) // Check if cxx17 or higher
96 VP_ATTRIBUTE_NO_DESTROY static inline const std::vector<bool> CONST_ALL_WECO_ACTIVATED = std::vector<bool>(COUNT_WECO -1, true);
97#else
98 VP_ATTRIBUTE_NO_DESTROY static const std::vector<bool> CONST_ALL_WECO_ACTIVATED;
99#endif
100 static const unsigned int NB_DATA_SIGNAL = 8;
101
102protected:
103 unsigned int m_nbDataInBuffer;
107 std::vector<bool> m_activatedWECOrules;
110 unsigned int m_idCurrentData;
116
120 virtual void computeLimits() VP_OVERRIDE;
121
129 virtual vpMeanDriftType detectDownwardMeanDrift() VP_OVERRIDE;
137 virtual vpMeanDriftType detectUpwardMeanDrift() VP_OVERRIDE;
138
145 virtual bool updateStatistics(const float &signal) VP_OVERRIDE;
146
152 virtual void updateTestSignals(const float &signal) VP_OVERRIDE;
153public:
163 vpStatisticalTestShewhart(const bool &activateWECOrules = true, const std::vector<bool> &activatedRules = CONST_ALL_WECO_ACTIVATED, const unsigned int &nbSamplesForStats = 30);
164
175 vpStatisticalTestShewhart(const bool &activateWECOrules, const std::vector<bool> &activatedRules, const float &mean, const float &stdev);
176
183 {
184 return m_alarm;
185 }
186
192#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
193 inline virtual float getSignal() const override
194#else
195 inline virtual float getSignal() const
196#endif
197 {
199 }
200
206 std::vector<float> getSignals() const;
207
217 void init(const bool &activateWECOrules, const std::vector<bool> &activatedRules = CONST_ALL_WECO_ACTIVATED, const unsigned int &nbSamplesForStats = 30);
218
229 void init(const bool &activateWECOrules, const std::vector<bool> &activatedRules, const float &mean, const float &stdev);
230};
231END_VISP_NAMESPACE
232#endif
vpMeanDriftType
Enum that indicates if a drift of the mean occurred.
void init()
(Re)Initialize the algorithm.
vpStatisticalTestShewhart(const bool &activateWECOrules=true, const std::vector< bool > &activatedRules=CONST_ALL_WECO_ACTIVATED, const unsigned int &nbSamplesForStats=30)
Construct a new vpStatisticalTestShewhart object.
virtual bool updateStatistics(const float &signal) VP_OVERRIDE
Update m_s and if enough values are available, compute the mean, the standard deviation and the limit...
static const unsigned int NB_DATA_SIGNAL
virtual vpMeanDriftType detectUpwardMeanDrift() VP_OVERRIDE
Detects if an upward mean drift occurred on the mean.
static VP_ATTRIBUTE_NO_DESTROY const std::vector< bool > CONST_ALL_WECO_ACTIVATED
virtual vpMeanDriftType detectDownwardMeanDrift() VP_OVERRIDE
Detects if a downward mean drift occurred.
vpWecoRulesAlarm getAlarm() const
Get the alarm raised by the last test due to the WECO's rules.
virtual void updateTestSignals(const float &signal) VP_OVERRIDE
Update the test signals.
virtual float getSignal() const override
Get the last value of the signal.
vpStatisticalTestSigma(const float &h=3.f, const unsigned int &nbSamplesForStats=30)
Construct a new vpStatisticalTestSigma object.
virtual float getSignal() const
Get the last value of the signal.
virtual void computeLimits()
Compute the upper and lower limits of the test signal.