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
|
/* find image overlaps
*
* Copyright: 1990, N. Dessipris.
*
* Author: Nicos Dessipris
* Written on: 02/05/1990
* Modified on : 18/04/1991
* 8/7/93 JC
* - allows IM_CODING_LABQ coding
* - now calls im_incheck()
* 13/7/95 JC
* - rewritten
* - now uses im_spcor()
* 13/8/96 JC
* - order of args changed to help C++ API
* 24/1/11
* - gtk-doc
*/
/*
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
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <vips/intl.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <vips/vips.h>
#include "pmosaicing.h"
/**
* im_correl:
* @ref: reference image
* @sec: secondary image
* @xref: position in reference image
* @yref: position in reference image
* @xsec: position in secondary image
* @ysec: position in secondary image
* @hwindowsize: half window size
* @hsearchsize: half search size
* @correlation: return detected correlation
* @x: return found position
* @y: return found position
*
* This operation finds the position of @sec within @ref.
*
* The area around
* (@xsec, @ysec) is searched for the best match to the area around (@xref,
* @yref). It searches an area of size @hsearchsize for a
* match of size @hwindowsize. The position of the best match is
* returned, together with the correlation at that point.
*
* Only the first band of each image is correlated. @ref and @sec may be
* very large --- the function extracts and generates just the
* parts needed. Correlation is done with im_spcor(); the position of
* the maximum is found with im_maxpos().
*
* See also: im_match_linear(), im_match_linear_search(), im_lrmosaic().
*
* Returns: 0 on success, -1 on error
*/
int
im_correl( IMAGE *ref, IMAGE *sec,
int xref, int yref, int xsec, int ysec,
int hwindowsize, int hsearchsize,
double *correlation, int *x, int *y )
{
IMAGE *surface = im_open( "surface", "t" );
IMAGE *t1, *t2, *t3, *t4;
Rect refr, secr;
Rect winr, srhr;
Rect wincr, srhcr;
if( !surface ||
!(t1 = im_open_local( surface, "correlate:1", "p" )) ||
!(t2 = im_open_local( surface, "correlate:1", "p" )) ||
!(t3 = im_open_local( surface, "correlate:1", "p" )) ||
!(t4 = im_open_local( surface, "correlate:1", "p" )) )
return( -1 );
/* Find position of window and search area, and clip against image
* size.
*/
refr.left = 0;
refr.top = 0;
refr.width = ref->Xsize;
refr.height = ref->Ysize;
winr.left = xref - hwindowsize;
winr.top = yref - hwindowsize;
winr.width = hwindowsize*2 + 1;
winr.height = hwindowsize*2 + 1;
im_rect_intersectrect( &refr, &winr, &wincr );
secr.left = 0;
secr.top = 0;
secr.width = sec->Xsize;
secr.height = sec->Ysize;
srhr.left = xsec - hsearchsize;
srhr.top = ysec - hsearchsize;
srhr.width = hsearchsize*2 + 1;
srhr.height = hsearchsize*2 + 1;
im_rect_intersectrect( &secr, &srhr, &srhcr );
/* Extract window and search area.
*/
if( im_extract_area( ref, t1,
wincr.left, wincr.top, wincr.width, wincr.height ) ||
im_extract_area( sec, t2,
srhcr.left, srhcr.top, srhcr.width, srhcr.height ) ) {
im_close( surface );
return( -1 );
}
/* Make sure we have just one band. From im_*mosaic() we will, but
* from im_match_linear_search() etc. we may not.
*/
if( t1->Bands != 1 ) {
if( im_extract_band( t1, t3, 0 ) ) {
im_close( surface );
return( -1 );
}
t1 = t3;
}
if( t2->Bands != 1 ) {
if( im_extract_band( t2, t4, 0 ) ) {
im_close( surface );
return( -1 );
}
t2 = t4;
}
/* Search!
*/
if( im_spcor( t2, t1, surface ) ) {
im_close( surface );
return( -1 );
}
/* Find maximum of correlation surface.
*/
if( im_maxpos( surface, x, y, correlation ) ) {
im_close( surface );
return( -1 );
}
im_close( surface );
/* Translate back to position within sec.
*/
*x += srhcr.left;
*y += srhcr.top;
return( 0 );
}
int
im__chkpair( IMAGE *ref, IMAGE *sec, TIE_POINTS *points )
{
int i;
int x, y;
double correlation;
const int hcor = points->halfcorsize;
const int harea = points->halfareasize;
/* Check images.
*/
if( im_incheck( ref ) || im_incheck( sec ) )
return( -1 );
if( ref->Bands != sec->Bands || ref->BandFmt != sec->BandFmt ||
ref->Coding != sec->Coding ) {
im_error( "im_chkpair", "%s", _( "inputs incompatible" ) );
return( -1 );
}
if( ref->Bands != 1 || ref->BandFmt != IM_BANDFMT_UCHAR ) {
im_error( "im_chkpair", "%s", _( "help!" ) );
return( -1 );
}
for( i = 0; i < points->nopoints; i++ ) {
/* Find correlation point.
*/
if( im_correl( ref, sec,
points->x_reference[i], points->y_reference[i],
points->x_reference[i], points->y_reference[i],
hcor, harea,
&correlation, &x, &y ) )
return( -1 );
/* And note in x_secondary.
*/
points->x_secondary[i] = x;
points->y_secondary[i] = y;
points->correlation[i] = correlation;
/* Note each dx, dy too.
*/
points->dx[i] =
points->x_secondary[i] - points->x_reference[i];
points->dy[i] =
points->y_secondary[i] - points->y_reference[i];
}
return( 0 );
}
|