A "mix-in" class that injects all arithmetic operators into the class that inherits it. More...
#include <Image/PixelsTypes.H>
A "mix-in" class that injects all arithmetic operators into the class that inherits it.
This is an example of "the curiously recurring template pattern", in which some class, say Foo, inherits from a template class instantiated on Foo, say Mixin<Foo>. In our case, we have the various pixel classes (e.g. PixRGB<T>) inheriting from this mixin class (e.g. pix_ops_mixin<PixRGB<T>, T>).
Definition at line 383 of file PixelsTypes.H.