libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
pappso::FilterMorphoMaxMin Class Reference

transform the trace with the maximum of the minimum equivalent of the erode filter for pictures More...

#include <filtermorpho.h>

Inheritance diagram for pappso::FilterMorphoMaxMin:
pappso::FilterInterface

Public Member Functions

 FilterMorphoMaxMin (std::size_t half_window_size)
 
 FilterMorphoMaxMin (const FilterMorphoMaxMin &other)
 
virtual ~FilterMorphoMaxMin ()
 
FilterMorphoMaxMinoperator= (const FilterMorphoMaxMin &other)
 
Tracefilter (Trace &data_points) const override
 
std::size_t getMaxMinHalfEdgeWindows () const
 
- Public Member Functions inherited from pappso::FilterInterface
virtual ~FilterInterface ()
 

Private Attributes

FilterMorphoMin m_filterMin
 
FilterMorphoMax m_filterMax
 

Detailed Description

transform the trace with the maximum of the minimum equivalent of the erode filter for pictures

Definition at line 137 of file filtermorpho.h.

Constructor & Destructor Documentation

◆ FilterMorphoMaxMin() [1/2]

FilterMorphoMaxMin::FilterMorphoMaxMin ( std::size_t half_window_size)

Definition at line 242 of file filtermorpho.cpp.

243 : m_filterMin(half_window_size), m_filterMax(half_window_size)
244{
245}
FilterMorphoMax m_filterMax
FilterMorphoMin m_filterMin

◆ FilterMorphoMaxMin() [2/2]

FilterMorphoMaxMin::FilterMorphoMaxMin ( const FilterMorphoMaxMin & other)

Definition at line 246 of file filtermorpho.cpp.

248{
249}

◆ ~FilterMorphoMaxMin()

virtual pappso::FilterMorphoMaxMin::~FilterMorphoMaxMin ( )
inlinevirtual

Definition at line 146 of file filtermorpho.h.

146{};

Member Function Documentation

◆ filter()

Trace & FilterMorphoMaxMin::filter ( Trace & data_points) const
overridevirtual

Implements pappso::FilterInterface.

Definition at line 261 of file filtermorpho.cpp.

262{
263 qDebug();
264 m_filterMin.filter(data_points);
265 m_filterMax.filter(data_points);
266 qDebug();
267 return data_points;
268}
virtual Trace & filter(Trace &data_points) const override

References pappso::FilterMorphoWindowBase::filter(), m_filterMax, and m_filterMin.

Referenced by pappso::TraceDetectionZivy::detect().

◆ getMaxMinHalfEdgeWindows()

std::size_t FilterMorphoMaxMin::getMaxMinHalfEdgeWindows ( ) const

Definition at line 270 of file filtermorpho.cpp.

271{
272 return ((FilterMorphoMax)m_filterMax).getMaxHalfEdgeWindows();
273}
transform the trace into its maximum over a window

References m_filterMax.

Referenced by pappso::TraceDetectionZivy::detect(), and pappso::TraceDetectionZivy::getMaxMinHalfEdgeWindows().

◆ operator=()

FilterMorphoMaxMin & FilterMorphoMaxMin::operator= ( const FilterMorphoMaxMin & other)

Definition at line 252 of file filtermorpho.cpp.

253{
254 m_filterMin = other.m_filterMin;
255 m_filterMax = other.m_filterMax;
256
257 return *this;
258}

References m_filterMax, and m_filterMin.

Member Data Documentation

◆ m_filterMax

FilterMorphoMax pappso::FilterMorphoMaxMin::m_filterMax
private

Definition at line 141 of file filtermorpho.h.

Referenced by filter(), getMaxMinHalfEdgeWindows(), and operator=().

◆ m_filterMin

FilterMorphoMin pappso::FilterMorphoMaxMin::m_filterMin
private

Definition at line 140 of file filtermorpho.h.

Referenced by filter(), and operator=().


The documentation for this class was generated from the following files: