File: histogram.c

package info (click to toggle)
vips 8.18.0-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 54,344 kB
  • sloc: ansic: 172,638; cpp: 12,257; python: 5,077; sh: 773; perl: 40; makefile: 25; javascript: 6
file content (249 lines) | stat: -rw-r--r-- 6,486 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
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/* base class for all histogram operations
 */

/*

	Copyright (C) 1991-2005 The National Gallery

	This library 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 2.1 of the License, or (at your option) any later version.

	This library 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 this library; if not, write to the Free Software
	Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
	02110-1301  USA

 */

/*

	These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk

 */

/*
#define DEBUG
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <glib/gi18n-lib.h>

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#include <vips/vips.h>
#include <vips/internal.h>

#include "phistogram.h"

G_DEFINE_ABSTRACT_TYPE(VipsHistogram, vips_histogram, VIPS_TYPE_OPERATION);

/* sizealike by expanding in just one dimension and copying the final element.
 */
static int
vips__hist_sizealike_vec(VipsImage **in, VipsImage **out, int n)
{
	int i;
	int max_size;

	g_assert(n >= 1);

	max_size = VIPS_MAX(in[0]->Xsize, in[0]->Ysize);
	for (i = 1; i < n; i++)
		max_size = VIPS_MAX(max_size,
			VIPS_MAX(in[0]->Xsize, in[0]->Ysize));

	for (i = 0; i < n; i++)
		if (in[i]->Ysize == 1) {
			if (vips_embed(in[i], &out[i], 0, 0, max_size, 1,
					"extend", VIPS_EXTEND_COPY,
					NULL))
				return -1;
		}
		else {
			if (vips_embed(in[i], &out[i], 0, 0, 1, max_size,
					"extend", VIPS_EXTEND_COPY,
					NULL))
				return -1;
		}

	return 0;
}

static int
vips_histogram_build(VipsObject *object)
{
	VipsHistogram *histogram = VIPS_HISTOGRAM(object);
	VipsObjectClass *class = VIPS_OBJECT_GET_CLASS(object);
	VipsHistogramClass *hclass = VIPS_HISTOGRAM_GET_CLASS(histogram);

	VipsImage **decode;
	VipsImage **format;
	VipsImage **band;
	VipsImage **size;
	VipsImage **memory;

	VipsPel *outbuf;
	VipsPel **inbuf;
	int i;

#ifdef DEBUG
	printf("vips_histogram_build: ");
	vips_object_print_name(object);
	printf("\n");
#endif /*DEBUG*/

	if (VIPS_OBJECT_CLASS(vips_histogram_parent_class)->build(object))
		return -1;

	g_assert(histogram->n > 0);

	/* Must be NULL-terminated.
	 */
	g_assert(!histogram->in[histogram->n]);

	decode = (VipsImage **) vips_object_local_array(object, histogram->n);
	format = (VipsImage **) vips_object_local_array(object, histogram->n);
	band = (VipsImage **) vips_object_local_array(object, histogram->n);
	size = (VipsImage **) vips_object_local_array(object, histogram->n);
	memory = (VipsImage **) vips_object_local_array(object, histogram->n);

	g_object_set(histogram, "out", vips_image_new(), NULL);

	for (i = 0; i < histogram->n; i++)
		if (vips_image_decode(histogram->in[i], &decode[i]) ||
			vips_check_hist(class->nickname, decode[i]))
			return -1;

	/* Cast our input images up to a common format, bands and size. If
	 * input_format is set, cast to a fixed input type.
	 */
	if (hclass->input_format != VIPS_FORMAT_NOTSET) {
		for (i = 0; i < histogram->n; i++)
			if (vips_cast(decode[i], &format[i],
					hclass->input_format, NULL))
				return -1;
	}
	else {
		if (vips__formatalike_vec(decode, format, histogram->n))
			return -1;
	}

	if (vips__bandalike_vec(class->nickname,
			format, band, histogram->n, 1) ||
		vips__hist_sizealike_vec(band, size, histogram->n))
		return -1;

	if (vips_image_pipeline_array(histogram->out,
			VIPS_DEMAND_STYLE_THINSTRIP, size))
		return -1;

	/* Need a copy of the inputs in memory.
	 */
	if (!(inbuf = VIPS_ARRAY(object, histogram->n + 1, VipsPel *)))
		return -1;
	for (i = 0; i < histogram->n; i++) {
		if (!(memory[i] = vips_image_copy_memory(size[i])))
			return -1;
		inbuf[i] = VIPS_IMAGE_ADDR(memory[i], 0, 0);
	}
	inbuf[i] = NULL;

	/* Keep a copy of the memory images here for subclasses.
	 */
	histogram->ready = memory;

	histogram->out->Xsize = VIPS_IMAGE_N_PELS(histogram->ready[0]);
	histogram->out->Ysize = 1;
	if (hclass->format_table)
		histogram->out->BandFmt =
			hclass->format_table[histogram->ready[0]->BandFmt];
	histogram->out->Type = VIPS_INTERPRETATION_HISTOGRAM;

	if (!(outbuf = vips_malloc(object,
			  VIPS_IMAGE_SIZEOF_LINE(histogram->out))))
		return -1;

	hclass->process(histogram, outbuf, inbuf, histogram->ready[0]->Xsize);

	if (vips_image_write_line(histogram->out, 0, outbuf))
		return -1;

	return 0;
}

static void
vips_histogram_class_init(VipsHistogramClass *class)
{
	GObjectClass *gobject_class = G_OBJECT_CLASS(class);
	VipsObjectClass *vobject_class = VIPS_OBJECT_CLASS(class);

	gobject_class->set_property = vips_object_set_property;
	gobject_class->get_property = vips_object_get_property;

	vobject_class->nickname = "histogram";
	vobject_class->description = _("histogram operations");
	vobject_class->build = vips_histogram_build;

	class->input_format = VIPS_FORMAT_NOTSET;

	/* Inputs set by subclassess.
	 */

	VIPS_ARG_IMAGE(class, "out", 10,
		_("Output"),
		_("Output image"),
		VIPS_ARGUMENT_REQUIRED_OUTPUT,
		G_STRUCT_OFFSET(VipsHistogram, out));
}

static void
vips_histogram_init(VipsHistogram *histogram)
{
	/* Sanity check this above.
	 */
	histogram->n = -1;
}

/* Called from iofuncs to init all operations in this dir. Use a plugin system
 * instead?
 */
void
vips_histogram_operation_init(void)
{
	extern GType vips_maplut_get_type(void);
	extern GType vips_case_get_type(void);
	extern GType vips_percent_get_type(void);
	extern GType vips_hist_cum_get_type(void);
	extern GType vips_hist_norm_get_type(void);
	extern GType vips_hist_equal_get_type(void);
	extern GType vips_hist_plot_get_type(void);
	extern GType vips_hist_match_get_type(void);
	extern GType vips_hist_local_get_type(void);
	extern GType vips_hist_ismonotonic_get_type(void);
	extern GType vips_hist_entropy_get_type(void);
	extern GType vips_stdif_get_type(void);

	vips_maplut_get_type();
	vips_case_get_type();
	vips_percent_get_type();
	vips_stdif_get_type();
	vips_hist_cum_get_type();
	vips_hist_norm_get_type();
	vips_hist_equal_get_type();
	vips_hist_plot_get_type();
	vips_hist_match_get_type();
	vips_hist_local_get_type();
	vips_hist_ismonotonic_get_type();
	vips_hist_entropy_get_type();
}