File: 2davgmasked.cc

package info (click to toggle)
mia 2.4.3-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 14,964 kB
  • ctags: 18,491
  • sloc: cpp: 153,197; python: 1,254; sh: 311; xml: 127; makefile: 27; csh: 24; ansic: 9
file content (166 lines) | stat: -rw-r--r-- 4,904 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
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
/* -*- mia-c++  -*-
 *
 * This file is part of MIA - a toolbox for medical image analysis 
 * Copyright (c) Leipzig, Madrid 1999-2016 Gert Wollny
 *
 * MIA 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 3 of the License, or
 * (at your option) any later version.
 *
 * 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 more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MIA; if not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
#include <stdexcept>

#include <mia/core.hh>
#include <mia/2d/imageio.hh>



NS_MIA_USE
using namespace std;
using namespace boost;

const SProgramDescription g_description = {
	{pdi_group, "Analysis, filtering, combining, and segmentation of 2D images"}, 
	{pdi_short, "Evaluate average intensities of an image series."}, 
	{pdi_description, "Evaluate average intensities of an image series"
	 "This program is used to evaluate the average intensity and its variation of a series "
	 "of images in a given masked region."}, 
}; 

struct C2DStat : public TFilter<bool> {

	typedef pair<size_t, double> TCollector;
	typedef map<size_t, TCollector> TSliceStat;

	C2DStat(const C2DUBImage& mask):
		m_mask(mask)
	{
	}

	template <typename T>
	bool operator ()(const T2DImage<T>& image)
	{
		if (image.get_size() != m_mask.get_size())
			throw invalid_argument("Input image and mask differ in size");

		typename T2DImage<T>::const_iterator i = image.begin();
		typename T2DImage<T>::const_iterator e = image.end();

		C2DUBImage::const_iterator m = m_mask.begin();

		TSliceStat slice;

		while (i != e) {
			if (*m) {
				size_t idx = *m - 1;
				++slice[idx].first;
				slice[idx].second += *i;
			}
			++i;
			++m;
		}

		m_counter.push_back(slice);
		cvmsg() << "Got " << m_counter.size() << "slices\n";
		return true;
	}

	const vector<TSliceStat>&  result() const {
		return m_counter;
	}

private:
	C2DUBImage m_mask;
	vector<TSliceStat>  m_counter;
};

/* Revision string */
const char revision[] = "not specified";

int do_main( int argc, char *argv[] )
{

	string in_filename;
	string mask_filename;

	const auto& image2dio = C2DImageIOPluginHandler::instance();

	CCmdOptionList options(g_description);
	options.add(make_opt( in_filename, "in-files", 'i', "input image(s)", 
			      CCmdOptionFlags::required_input, &image2dio));
	options.add(make_opt( mask_filename, "mask-file", 'm', "mask image, must be of type byte", 
			      CCmdOptionFlags::required_input, &image2dio));
	options.set_stdout_is_result();
	if (options.parse(argc, argv, "image") != CCmdOptionList::hr_no) 
		return EXIT_SUCCESS; 

	if (!options.get_remaining().empty())
		throw runtime_error("unknown option given ...");


	CHistory::instance().append(argv[0], revision, options);

	size_t start_filenum = 0;
	size_t end_filenum  = 0;
	size_t format_width = 0;

	std::string src_basename = get_filename_pattern_and_range(in_filename, start_filenum, end_filenum, format_width);
	if (start_filenum >= end_filenum)
		throw invalid_argument(string("no files match pattern ") + src_basename);

	char new_line = cverb.show_debug() ? '\n' : '\r';

	C2DImageIOPluginHandler::Instance::PData  mask_image_list = image2dio.load(mask_filename);
	if (!mask_image_list.get() || mask_image_list->empty())
		throw invalid_argument("no mask found");

	const C2DImage *mask_image = mask_image_list->begin()->get(); 
	const C2DUBImage *mask = dynamic_cast<const C2DUBImage *>( mask_image );

	if (!mask) 
		throw create_exception<invalid_argument>("Mask image must be an image with pixel type byte, but pixel type '", 
						      CPixelTypeDict.get_name(mask_image->get_pixel_type()), 
						      "' was provided."); 
	C2DStat stat(*mask);

	for (size_t i = start_filenum; i < end_filenum; ++i) {

		string src_name = create_filename(src_basename.c_str(), i);
		cvmsg() << new_line << "Read: " << i <<" out of "<< "[" 
			<< start_filenum<< "," << end_filenum << "] = " << src_name ;
		C2DImageIOPluginHandler::Instance::PData  in_image_list = image2dio.load(src_name);

		if (in_image_list.get() && in_image_list->size()) {
			accumulate(stat, **in_image_list->begin());
		}
	}
	cvmsg() << "\n";

	const vector<C2DStat::TSliceStat>& ss = stat.result();

	for (vector<C2DStat::TSliceStat>::const_iterator i = ss.begin(); i != ss.end(); ++i) {
		for (C2DStat::TSliceStat::const_iterator k = i->begin(); k != i->end(); ++k) {
			cout << k->second.second / k->second.first << " ";
		}
		cout << "\n";
	}

	return EXIT_SUCCESS;
}

#include <mia/internal/main.hh>
MIA_MAIN(do_main);