// Pixels are compatible if they have compatible color spaces and the same channel valuestemplate <HeterogeneousPixelConcept P1, HeterogeneousPixelConcept P2>
concept PixelsCompatibleConcept {
where ColorSpacesCompatibleConcept<P1::color_space_t, P2::color_space_t>;
template <size_t D> where P1::kth_channel<D>::value_type == P2::kth_channel<D>::value_type;
};
Public Member Functions
void
constraints ()
The documentation for this struct was generated from the following file: