1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/************************************************************************
*
* Copyright (C) 2009-2025 IRCAD France
* Copyright (C) 2012-2020 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "io/itk/inr_image_writer.hpp"
#include "core/spy_log.hpp"
#include "io/itk/helper/progress_itk_to_fw.hpp"
#include "io/itk/itk.hpp"
#include <core/base.hpp>
#include <core/tools/dispatcher.hpp>
#include <itkImageFileWriter.h>
#include <itkNiftiImageIOFactory.h>
#include <filesystem>
namespace sight::io::itk
{
//------------------------------------------------------------------------------
void inr_image_writer::write(sight::core::progress::observer::sptr _progress)
{
SIGHT_ASSERT("Object expired", !m_object.expired());
SIGHT_ASSERT("Object null", m_object.lock());
auto do_write =
[]<class PIXEL_TYPE>(
data::image::csptr _data_image,
const std::string& _filename,
core::progress::observer::sptr _progress
)
{
SIGHT_DEBUG("itk::ImageFileWriter with PIXEL_TYPE " << core::type::get<PIXEL_TYPE>().name());
// Reader IO (*1*)
typename ::itk::ImageIOBase::Pointer image_io_write = ::itk::ImageIOFactory::CreateImageIO(
_filename.c_str(),
::itk::ImageIOFactory::WriteMode
);
assert(image_io_write.IsNotNull());
// create writer
using itk_image_type = ::itk::Image<PIXEL_TYPE, 3>;
using writer_t = typename ::itk::ImageFileWriter<itk_image_type>;
typename writer_t::Pointer writer = writer_t::New();
progressor progress(writer, _progress);
// set observation (*2*)
::itk::LightProcessObject::Pointer cast_helper = (::itk::LightProcessObject*) (image_io_write.GetPointer());
assert(cast_helper.IsNotNull());
// create itk Image
typename itk_image_type::Pointer itk_image = io::itk::move_to_itk<itk_image_type>(_data_image);
writer->SetFileName(_filename.c_str());
writer->SetInput(itk_image);
writer->SetImageIO(image_io_write); // (*3*)
// save image;
writer->Update();
};
auto file = this->get_file();
auto image = get_concrete_object();
using sight::core::tools::dispatcher;
using sight::core::tools::supported_dispatcher_types;
dispatcher<supported_dispatcher_types, decltype(do_write)>::invoke(image->type(), image, file.string(), _progress);
}
//------------------------------------------------------------------------------
std::string inr_image_writer::extension() const
{
if(get_file().empty() || (get_file().string().find(".inr.gz") != std::string::npos))
{
return ".inr.gz";
}
return get_file().filename().extension().string();
}
//------------------------------------------------------------------------------
} // namespace sight::io::itk
|