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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
/* make an xy index image
*
* 21/4/04
* - from im_grey
* 1/2/11
* - gtk-doc
* 31/10/11
* - redo as a class
*/
/*
This file is part of VIPS.
VIPS 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 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; 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 VIPS_DEBUG
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <glib/gi18n-lib.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <vips/vips.h>
#include <vips/internal.h>
#include <vips/debug.h>
#include "pcreate.h"
typedef struct _VipsXyz {
VipsCreate parent_instance;
int width;
int height;
int csize;
int dsize;
int esize;
int dimensions;
} VipsXyz;
typedef VipsCreateClass VipsXyzClass;
G_DEFINE_TYPE( VipsXyz, vips_xyz, VIPS_TYPE_CREATE );
static int
vips_xyz_gen( VipsRegion *or, void *seq, void *a, void *b,
gboolean *stop )
{
VipsXyz *xyz = (VipsXyz *) a;
VipsRect *r = &or->valid;
int le = r->left;
int to = r->top;
int ri = VIPS_RECT_RIGHT( r );
int bo = VIPS_RECT_BOTTOM( r );
int x, y, i;
for( y = to; y < bo; y++ ) {
unsigned int *q = (unsigned int *)
VIPS_REGION_ADDR( or, le, y );
unsigned int dims[5];
int r;
int h;
h = xyz->height * xyz->csize * xyz->dsize;
dims[4] = y / h;
r = y % h;
h /= xyz->dsize;
dims[3] = r / h;
r %= h;
h /= xyz->csize;
dims[2] = r / h;
r %= h;
dims[1] = r;
for( x = le; x < ri; x++ ) {
dims[0] = x;
for( i = 0; i < xyz->dimensions; i++ )
q[i] = dims[i];
q += xyz->dimensions;
}
}
return( 0 );
}
static int
vips_xyz_build( VipsObject *object )
{
VipsObjectClass *class = VIPS_OBJECT_GET_CLASS( object );
VipsCreate *create = VIPS_CREATE( object );
VipsXyz *xyz = (VipsXyz *) object;
double d;
int ysize;
if( VIPS_OBJECT_CLASS( vips_xyz_parent_class )->build( object ) )
return( -1 );
if( (vips_object_argument_isset( object, "dsize" ) &&
!vips_object_argument_isset( object, "csize" )) ||
(vips_object_argument_isset( object, "esize" ) &&
!vips_object_argument_isset( object, "dsize" )) ) {
vips_error( class->nickname, "%s",
_( "lower dimensions not set" ) );
return( -1 );
}
if( vips_object_argument_isset( object, "csize" ) ) {
xyz->dimensions += 1;
if( vips_object_argument_isset( object, "dsize" ) ) {
xyz->dimensions += 1;
if( vips_object_argument_isset( object, "esize" ) )
xyz->dimensions += 1;
}
}
d = (double) xyz->height * xyz->csize * xyz->dsize * xyz->esize;
if( d > INT_MAX ) {
vips_error( class->nickname, "%s", _( "image too large" ) );
return( -1 );
}
ysize = d;
vips_image_init_fields( create->out,
xyz->width, ysize, xyz->dimensions,
VIPS_FORMAT_UINT, VIPS_CODING_NONE,
VIPS_INTERPRETATION_MULTIBAND,
1.0, 1.0 );
if( vips_image_pipelinev( create->out, VIPS_DEMAND_STYLE_ANY, NULL ) ||
vips_image_generate( create->out,
NULL, vips_xyz_gen, NULL, xyz, NULL ) )
return( -1 );
return( 0 );
}
static void
vips_xyz_class_init( VipsXyzClass *class )
{
GObjectClass *gobject_class = G_OBJECT_CLASS( class );
VipsObjectClass *vobject_class = VIPS_OBJECT_CLASS( class );
VIPS_DEBUG_MSG( "vips_xyz_class_init\n" );
gobject_class->set_property = vips_object_set_property;
gobject_class->get_property = vips_object_get_property;
vobject_class->nickname = "xyz";
vobject_class->description =
_( "make an image where pixel values are coordinates" );
vobject_class->build = vips_xyz_build;
VIPS_ARG_INT( class, "width", 4,
_( "Width" ),
_( "Image width in pixels" ),
VIPS_ARGUMENT_REQUIRED_INPUT,
G_STRUCT_OFFSET( VipsXyz, width ),
1, VIPS_MAX_COORD, 64 );
VIPS_ARG_INT( class, "height", 5,
_( "Height" ),
_( "Image height in pixels" ),
VIPS_ARGUMENT_REQUIRED_INPUT,
G_STRUCT_OFFSET( VipsXyz, height ),
1, VIPS_MAX_COORD, 64 );
VIPS_ARG_INT( class, "csize", 6,
_( "csize" ),
_( "Size of third dimension" ),
VIPS_ARGUMENT_OPTIONAL_INPUT,
G_STRUCT_OFFSET( VipsXyz, csize ),
1, VIPS_MAX_COORD, 1 );
VIPS_ARG_INT( class, "dsize", 7,
_( "dsize" ),
_( "Size of fourth dimension" ),
VIPS_ARGUMENT_OPTIONAL_INPUT,
G_STRUCT_OFFSET( VipsXyz, dsize ),
1, VIPS_MAX_COORD, 1 );
VIPS_ARG_INT( class, "esize", 8,
_( "esize" ),
_( "Size of fifth dimension" ),
VIPS_ARGUMENT_OPTIONAL_INPUT,
G_STRUCT_OFFSET( VipsXyz, esize ),
1, VIPS_MAX_COORD, 1 );
}
static void
vips_xyz_init( VipsXyz *xyz )
{
xyz->width = 64;
xyz->height = 64;
xyz->dimensions = 2;
xyz->csize = 1;
xyz->dsize = 1;
xyz->esize = 1;
}
/**
* vips_xyz:
* @out: (out): output image
* @width: horizontal size
* @height: vertical size
* @...: %NULL-terminated list of optional named arguments
*
* Optional arguments:
*
* * @csize: size for third dimension
* * @dsize: size for fourth dimension
* * @esize: size for fifth dimension
*
* Create a two-band uint32 image where the elements in the first band have the
* value of their x coordinate and elements in the second band have their y
* coordinate.
*
* You can make any image where the value of a pixel is a function of its (x,
* y) coordinate by combining this operator with the arithmetic operators.
*
* Set @csize, @dsize, @esize to generate higher dimensions and add more
* bands. The extra dimensions are placed down the vertical axis. Use
* vips_grid() to change the layout.
*
* See also: vips_grey(), vips_grid(), vips_identity().
*
* Returns: 0 on success, -1 on error
*/
int
vips_xyz( VipsImage **out, int width, int height, ... )
{
va_list ap;
int result;
va_start( ap, height );
result = vips_call_split( "xyz", ap, out, width, height );
va_end( ap );
return( result );
}
|