MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_transformer_name()

template<ComputeData InputType = std::vector<Kakshya::DataVariant>, ComputeData OutputType = InputType>
std::string MayaFlux::Yantra::SpectralTransformer< InputType, OutputType >::get_transformer_name ( ) const
inlineoverridevirtual

Gets the transformer name including the operation type.

Returns
String representation of the transformer name

Reimplemented from MayaFlux::Yantra::UniversalTransformer< InputType, OutputType >.

Definition at line 59 of file SpectralTransformer.hpp.

60 {
61 return std::string("SpectralTransformer_").append(Utils::enum_to_string(m_operation));
62 }
SpectralOperation m_operation
Current spectral operation.
constexpr std::string_view enum_to_string(EnumType value) noexcept
Universal enum to string converter using magic_enum (original case)
Definition EnumUtils.hpp:51