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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
/************************************************************************
*
* Copyright (C) 2009-2023 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 "image.hpp"
#include <core/tools/dispatcher.hpp>
namespace sight::filter::image
{
//------------------------------------------------------------------------------
struct roi_applier_param
{
data::image::sptr img;
data::image::sptr roi;
};
//------------------------------------------------------------------------------
template<typename IMAGE_TYPE>
struct roi_applier
{
//------------------------------------------------------------------------------
template<typename ROI_TYPE>
void operator()(roi_applier_param& _p)
{
using img_t = IMAGE_TYPE;
using roi_t = ROI_TYPE;
SIGHT_ASSERT("Null image pointer", _p.img && _p.roi);
const auto img_dump_lock = _p.img->dump_lock();
const auto roi_dump_lock = _p.roi->dump_lock();
SIGHT_ASSERT("Null data buffers", _p.img->buffer() && _p.roi->buffer());
auto im_it = _p.img->begin<img_t>();
const auto im_end = _p.img->end<img_t>();
auto roi_it = _p.roi->begin<roi_t>();
const auto roi_end = _p.roi->end<roi_t>();
for( ; im_it != im_end && roi_it != roi_end ; ++im_it, ++roi_it)
{
if(*roi_it == 0)
{
*im_it = 0;
}
}
}
};
//------------------------------------------------------------------------------
struct roi_applier_caller
{
//------------------------------------------------------------------------------
template<typename IMAGE_TYPE>
void operator()(roi_applier_param& _p)
{
core::tools::dispatcher<core::tools::supported_dispatcher_types, roi_applier<IMAGE_TYPE> >::invoke(
_p.roi->type(),
_p
);
}
};
//------------------------------------------------------------------------------
void apply_roi(data::image::sptr _image, data::image::sptr _roi)
{
SIGHT_ASSERT("Null image pointers", _image && _roi);
SIGHT_ASSERT("images have different size", _image->size() == _roi->size());
roi_applier_param param;
param.img = _image;
param.roi = _roi;
// Due to link failure, we use two dispatcher calls instead of one with a cross-product type list
core::tools::dispatcher<core::tools::supported_dispatcher_types, roi_applier_caller>::invoke(
_image->type(),
param
);
}
//------------------------------------------------------------------------------
struct roi_tester_param
{
data::image::sptr img;
data::image::sptr img_roi_applied;
data::image::sptr roi;
bool result {};
};
//------------------------------------------------------------------------------
template<typename IMAGE_TYPE>
struct roi_tester
{
//------------------------------------------------------------------------------
template<typename ROI_TYPE>
void operator()(roi_tester_param& _p)
{
bool& result = _p.result;
result = true;
using img_t = IMAGE_TYPE;
using roi_t = ROI_TYPE;
const auto img_dump_lock = _p.img->dump_lock();
const auto img_roi_applied_dump_lock = _p.img_roi_applied->dump_lock();
const auto roi_dump_lock = _p.roi->dump_lock();
SIGHT_ASSERT(
"Null data buffers",
_p.img->buffer() && _p.roi->buffer() && _p.img_roi_applied->buffer()
);
auto im_it = _p.img->begin<img_t>();
const auto im_end = _p.img->end<img_t>();
auto roi_it = _p.roi->begin<roi_t>();
auto im_roi_it = _p.img_roi_applied->begin<img_t>();
for( ; result && im_it != im_end ; ++im_it, ++roi_it, ++im_roi_it)
{
result = result && ((*roi_it == 0) ? (*im_roi_it == 0) : (*im_it == *im_roi_it));
}
}
};
//------------------------------------------------------------------------------
struct roi_tester_caller
{
//------------------------------------------------------------------------------
template<typename IMAGE_TYPE>
void operator()(roi_tester_param& _p)
{
core::tools::dispatcher<core::tools::supported_dispatcher_types, roi_tester<IMAGE_TYPE> >::invoke(
_p.roi->type(),
_p
);
}
};
//------------------------------------------------------------------------------
bool is_roi_applied(data::image::sptr _image, data::image::sptr _roi, data::image::sptr _img_roi_applied)
{
SIGHT_ASSERT("Null image pointers", _image && _img_roi_applied && _roi);
SIGHT_ASSERT(
"images have different size",
_image->size() == _img_roi_applied->size() && _image->size() == _roi->size()
);
roi_tester_param param;
param.img = _image;
param.img_roi_applied = _img_roi_applied;
param.roi = _roi;
// Due to link failure, we use two dispatcher calls instead of one with a cross-product type list
core::tools::dispatcher<core::tools::supported_dispatcher_types, roi_tester_caller>::invoke(
_image->type(),
param
);
return param.result;
}
//------------------------------------------------------------------------------
} // namespace sight::filter::image
|