File: nifti_image_writer.cpp

package info (click to toggle)
sight 25.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,180 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (95 lines) | stat: -rw-r--r-- 3,234 bytes parent folder | download
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
/************************************************************************
 *
 * Copyright (C) 2009-2025 IRCAD France
 *
 * 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/nifti_image_writer.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 <core/tools/type_key_type_mapping.hpp>

#include <itkImageFileWriter.h>
#include <itkNiftiImageIO.h>

#include <filesystem>

namespace sight::io::itk
{

//------------------------------------------------------------------------------

void nifti_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 PIXELTYPE>(const data::image::csptr _image,
                            const std::string& _filename,
                            core::progress::observer::sptr _progress)
        {
            SIGHT_DEBUG("itk::ImageFileWriter with PIXELTYPE " << core::type::get<PIXELTYPE>().name());

            // Reader IO (*1*)
            auto image_io_write = ::itk::NiftiImageIO::New();

            // create writer
            using itk_image_type = ::itk::Image<PIXELTYPE, 3>;
            using writer_t       = typename ::itk::ImageFileWriter<itk_image_type>;
            auto writer = writer_t::New();
            progressor progress(writer, _progress);

            // create itk Image
            auto itk_image = io::itk::move_to_itk<itk_image_type>(_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 nifti_image_writer::extension() const
{
    if(get_file().empty() || (get_file().string().find(".nii") != std::string::npos))
    {
        return ".nii";
    }

    return get_file().filename().extension().string();
}

//------------------------------------------------------------------------------

} // namespace sight::io::itk