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

◆ set_transformation_parameter()

template<ComputeData InputType = Kakshya::DataVariant, ComputeData OutputType = InputType>
virtual void MayaFlux::Yantra::UniversalTransformer< InputType, OutputType >::set_transformation_parameter ( const std::string &  name,
std::any  value 
)
inlineprotectedvirtual

Transformation-specific parameter handling (override for custom parameters)

Parameters
nameParameter name
valueParameter value

Base implementation stores parameters in a map. Derived classes should override to handle transformer-specific parameters with proper type checking and validation.

Reimplemented in MayaFlux::Yantra::ConvolutionTransformer< InputType, OutputType >, MayaFlux::Yantra::MathematicalTransformer< InputType, OutputType >, MayaFlux::Yantra::SpectralTransformer< InputType, OutputType >, and MayaFlux::Yantra::TemporalTransformer< InputType, OutputType >.

Definition at line 530 of file UniversalTransformer.hpp.

531 {
532 m_parameters[name] = std::move(value);
533 }
std::map< std::string, std::any > m_parameters
Generic parameter storage for transformer-specific settings.