Zivid C++ API  2.4.2+1a2e8cfb-1
Defining the Future of 3D Machine Vision
Classes | Public Types | Public Member Functions | Static Public Attributes | Friends | List of all members
Zivid::Settings::Processing::Filters::Experimental Class Reference

Experimental filters. These may be renamed, moved or deleted in the future. More...

#include <Zivid/Settings.h>

Classes

class  ContrastDistortion
 Corrects artifacts that appear when imaging scenes with large texture gradients or high contrast. These artifacts are caused by blurring in the lens. The filter works best when aperture values are chosen such that the camera has quite good focus. The filter also supports removing the points that experience a large correction. More...
 

Public Types

using Descendants = std::tuple< Settings::Processing::Filters::Experimental::ContrastDistortion, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Enabled, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Strength, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Enabled, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Threshold >
 

Public Member Functions

 Experimental ()
 Default constructor More...
 
template<typename... Args>
 Experimental (Args &&...args)
 Constructor taking variadic number of arguments More...
 
template<typename... Args>
void set (Args &&...args)
 Set multiple arguments More...
 
template<typename... Args>
Experimental copyWith (Args &&...args) const
 Returns a copy of this object with the given argument(s) set to the new value(s) More...
 
const ContrastDistortioncontrastDistortion () const
 Get ContrastDistortion More...
 
ContrastDistortioncontrastDistortion ()
 Get ContrastDistortion More...
 
Experimentalset (const ContrastDistortion &value)
 Set ContrastDistortion More...
 
Experimentalset (const ContrastDistortion::Correction &value)
 Set ContrastDistortion::Correction More...
 
Experimentalset (const ContrastDistortion::Correction::Enabled &value)
 Set ContrastDistortion::Correction::Enabled More...
 
Experimentalset (const ContrastDistortion::Correction::Strength &value)
 Set ContrastDistortion::Correction::Strength More...
 
Experimentalset (const ContrastDistortion::Removal &value)
 Set ContrastDistortion::Removal More...
 
Experimentalset (const ContrastDistortion::Removal::Enabled &value)
 Set ContrastDistortion::Removal::Enabled More...
 
Experimentalset (const ContrastDistortion::Removal::Threshold &value)
 Set ContrastDistortion::Removal::Threshold More...
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortionget () const
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Correctionget () const
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Enabled >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Enabledget () const
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Strength >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Strengthget () const
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Removalget () const
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Enabled >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Enabledget () const
 
template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Threshold >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Thresholdget () const
 
template<size_t i, typename std::enable_if< i==0, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortionget () const
 
template<typename F >
void forEach (const F &f) const
 Run the given function on each direct member with the value of the member as parameter More...
 
template<typename F >
void forEach (const F &f)
 Run the given function on each direct member with the value of the member as parameter More...
 
bool operator== (const Experimental &other) const
 Equality operator More...
 
bool operator!= (const Experimental &other) const
 Inequality operator More...
 
std::string toString () const
 Get the value as string More...
 

Static Public Attributes

static constexpr DataModel::NodeType nodeType = DataModel::NodeType::group
 The type of this node More...
 
static constexpr const char * path { "Processing/Filters/Experimental" }
 The full path for this value More...
 
static constexpr const char * name { "Experimental" }
 The name of this value More...
 
static constexpr const char * description
 The description for this value More...
 

Friends

struct DataModel::Detail::Befriend< Experimental >
 
std::ostream & operator<< (std::ostream &stream, const Experimental &value)
 Operator to send the value as string to a stream More...
 

Detailed Description

Experimental filters. These may be renamed, moved or deleted in the future.

Member Typedef Documentation

◆ Descendants

Constructor & Destructor Documentation

◆ Experimental() [1/2]

Zivid::Settings::Processing::Filters::Experimental::Experimental ( )

Default constructor

◆ Experimental() [2/2]

template<typename... Args>
Zivid::Settings::Processing::Filters::Experimental::Experimental ( Args &&...  args)
inlineexplicit

Member Function Documentation

◆ contrastDistortion() [1/2]

ContrastDistortion& Zivid::Settings::Processing::Filters::Experimental::contrastDistortion ( )
inline

◆ contrastDistortion() [2/2]

const ContrastDistortion& Zivid::Settings::Processing::Filters::Experimental::contrastDistortion ( ) const
inline

◆ copyWith()

template<typename... Args>
Experimental Zivid::Settings::Processing::Filters::Experimental::copyWith ( Args &&...  args) const
inline

◆ forEach() [1/2]

template<typename F >
void Zivid::Settings::Processing::Filters::Experimental::forEach ( const F &  f)
inline

Run the given function on each direct member with the value of the member as parameter

◆ forEach() [2/2]

template<typename F >
void Zivid::Settings::Processing::Filters::Experimental::forEach ( const F &  f) const
inline

Run the given function on each direct member with the value of the member as parameter

◆ get() [1/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [2/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Correction& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [3/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Enabled >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Enabled& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [4/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Strength >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Correction::Strength& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [5/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Removal& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [6/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Enabled >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Enabled& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [7/8]

template<typename T , typename std::enable_if< std::is_same< T, Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Threshold >::value, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion::Removal::Threshold& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ get() [8/8]

template<size_t i, typename std::enable_if< i==0, int >::type = 0>
const Settings::Processing::Filters::Experimental::ContrastDistortion& Zivid::Settings::Processing::Filters::Experimental::get ( ) const
inline

◆ operator!=()

bool Zivid::Settings::Processing::Filters::Experimental::operator!= ( const Experimental other) const

Inequality operator

◆ operator==()

bool Zivid::Settings::Processing::Filters::Experimental::operator== ( const Experimental other) const

Equality operator

◆ set() [1/8]

template<typename... Args>
void Zivid::Settings::Processing::Filters::Experimental::set ( Args &&...  args)
inline

◆ set() [2/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion value)
inline

◆ set() [3/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion::Correction value)
inline

◆ set() [4/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion::Correction::Enabled value)
inline

◆ set() [5/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion::Correction::Strength value)
inline

◆ set() [6/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion::Removal value)
inline

◆ set() [7/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion::Removal::Enabled value)
inline

◆ set() [8/8]

Experimental& Zivid::Settings::Processing::Filters::Experimental::set ( const ContrastDistortion::Removal::Threshold value)
inline

◆ toString()

std::string Zivid::Settings::Processing::Filters::Experimental::toString ( ) const

Get the value as string

Friends And Related Function Documentation

◆ DataModel::Detail::Befriend< Experimental >

friend struct DataModel::Detail::Befriend< Experimental >
friend

◆ operator<<

std::ostream& operator<< ( std::ostream &  stream,
const Experimental value 
)
friend

Operator to send the value as string to a stream

Member Data Documentation

◆ description

constexpr const char* Zivid::Settings::Processing::Filters::Experimental::description
staticconstexpr
Initial value:
{
R"description(Experimental filters. These may be renamed, moved or deleted in the future.)description"
}

The description for this value

◆ name

constexpr const char* Zivid::Settings::Processing::Filters::Experimental::name { "Experimental" }
staticconstexpr

The name of this value

◆ nodeType

constexpr DataModel::NodeType Zivid::Settings::Processing::Filters::Experimental::nodeType = DataModel::NodeType::group
staticconstexpr

The type of this node

◆ path

constexpr const char* Zivid::Settings::Processing::Filters::Experimental::path { "Processing/Filters/Experimental" }
staticconstexpr

The full path for this value


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