Example #1
0
void Pixel::operator=(const ImageAccessor accessor)
{
    (*this) = accessor.read();
}
Example #2
0
Pixel::Pixel(const ImageAccessor accessor)
{
     (*this) = accessor.read();
}