ONE - On-device Neural Engine
Loading...
Searching...
No Matches
luci::Filter Class Referencefinal

#include <AttrFilter.h>

Public Member Functions

 Filter ()
 
uint32_t w () const
 
void w (uint32_t w)
 
void w (int32_t w)
 
uint32_t h () const
 
void h (uint32_t h)
 
void h (int32_t h)
 

Detailed Description

Definition at line 25 of file AttrFilter.h.

Constructor & Destructor Documentation

◆ Filter()

luci::Filter::Filter ( )
inline

Definition at line 28 of file AttrFilter.h.

28: _w(1), _h(1) {}

Member Function Documentation

◆ h() [1/3]

◆ h() [2/3]

void luci::Filter::h ( int32_t  h)

Definition at line 30 of file AttrFilter.cpp.

31{
32 assert(h >= 0);
33 _h = static_cast<uint32_t>(h);
34}
uint32_t h() const
Definition AttrFilter.h:34

References h().

◆ h() [3/3]

void luci::Filter::h ( uint32_t  h)
inline

Definition at line 35 of file AttrFilter.h.

35{ _h = h; }

References h().

Referenced by h().

◆ w() [1/3]

◆ w() [2/3]

void luci::Filter::w ( int32_t  w)

Definition at line 24 of file AttrFilter.cpp.

25{
26 assert(w >= 0);
27 _w = static_cast<uint32_t>(w);
28}
uint32_t w() const
Definition AttrFilter.h:30

References w().

◆ w() [3/3]

void luci::Filter::w ( uint32_t  w)
inline

Definition at line 31 of file AttrFilter.h.

31{ _w = w; }

References w().

Referenced by w().


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