| 462 | } |
| 463 | |
| 464 | void ImageWriter::channelsToWrite( vector<string> &channels, const CompoundObject *operands ) const |
| 465 | { |
| 466 | ImageOutputPtr out = createImageOutput( fileName() ); |
| 467 | const CompoundObject *args = (bool)operands ? operands : parameters()->getTypedValue<CompoundObject>(); |
| 468 | ::channelsToWrite( getImage(), out.get(), args, channels ); |
| 469 | } |
| 470 | |
| 471 | const ImagePrimitive *ImageWriter::getImage() const |
| 472 | { |
nothing calls this directly
no test coverage detected