//# Copyright (C) 1998,1999,2000,2001,2003
//# Associated Universities, Inc. Washington DC, USA.
//# This program is free software; you can redistribute it and/or modify it
//# under the terms of the GNU General Public License as published by the Free
//# Software Foundation; either version 2 of the License, or (at your option)
//# This program is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
//# You should have received a copy of the GNU General Public License along
//# with this program; if not, write to the Free Software Foundation, Inc.,
//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//# Correspondence concerning AIPS++ should be addressed as follows:
//# Internet email: aips2-request@nrao.edu.
//# Postal address: AIPS++ Project Office
//# National Radio Astronomy Observatory
//# Charlottesville, VA 22903-2475 USA
#include <imageanalysis/ImageAnalysis/ImageMaskHandler.h>
#include <imageanalysis/ImageAnalysis/ImageFactory.h>
#include <casacore/casa/Exceptions/Error.h>
#include <casacore/images/Images/ImageExprParse.h>
#include <casacore/images/Images/ImageProxy.h>
#include <casacore/images/Regions/RegionHandler.h>
template <class T> ImageMaskHandler<T>::ImageMaskHandler(SPIIT image)
template <class T> ImageMaskHandler<T>::~ImageMaskHandler() {}
template <class T> void ImageMaskHandler<T>::set(const casacore::String& name) {
_image->setDefaultMask(name);
template <class T> casacore::String ImageMaskHandler<T>::defaultMask() const {
return _image->getDefaultMask();
template <class T> void ImageMaskHandler<T>::deleteMasks(
const std::set<casacore::String>& masks
ThrowIf(masks.empty(), "You have not supplied any mask names");
for (const auto& mask: masks) {
_image->removeRegion(mask, casacore::RegionHandler::Masks, false);
template <class T> void ImageMaskHandler<T>::rename(
const casacore::String& oldName, const casacore::String& newName
_image->renameRegion(newName, oldName, casacore::RegionHandler::Masks, false);