File size: 13,853 Bytes
d4035c1 | 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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | /** @internal
** @file quickshift.c
** @author Brian Fulkerson
** @author Andrea Vedaldi
** @brief Quick shift image segmentation - Definition
**/
/* AUTORIGHTS
Copyright (C) 2007-09 Andrea Vedaldi and Brian Fulkerson
This file is part of VLFeat, available in the terms of the GNU
General Public License version 2.
*/
/**
@file quickshift.h
@author Brian Fulkerson
@author Andrea Vedaldi
@brief Quick shift image segmentation
- @ref quickshift-intro
- @ref quickshift-usage
- @ref quickshift-tech
@section quickshift-intro Overview
Quick shift [1] is a fast mode seeking algorithm, similar to mean
shift. The algorithm segments a color image (or any image with more
than one component) by identifying clusters of pixels in the joint
spatial and color dimensions. Segments are local (superpixels) and can
be used as a basis for further processing.
Given an image, the algorithm calculates a forest of pixels whose
branches are labeled with a distance value
(::vl_quickshift_get_parents, ::vl_quickshift_get_dists). This
specifies a hierarchical segmentation of the image, with segments
corresponding to subtrees. Useful superpixels can be identified by
cutting the branches whose distance label is above a given threshold
(the threshold can be either fixed by hand, or determined by cross
validation).
Parameter influencing the algorithm are:
- <b>Kernel size.</b> The pixel density and its modes are
estimated by using a Parzen window estimator with a Gaussian kernel of
the specified size (::vl_quickshift_set_kernel_size). The larger the
size, the larger the neighborhoods of pixels considered.
- <b>Maximum distance.</b> This (::vl_set_max_dist) is the maximum
distance between two pixels that the algorithm considers when building
the forest. In principle, it can be infinity (so that a tree is
returned), but in practice it is much faster to consider only
relatively small distances (the maximum distance can be set to a small
multiple of the kernel size).
[1] A. Vedaldi and S. Soatto. “Quick Shift and Kernel Methods
for Mode Seeking”, in <em>Proc. ECCV</em>, 2008.
@section quickshift-usage Usage
- Create a new quick shift object (::vl_quickshift_new). The object
can be reused for multiple images of the same size.
- Configure quick shift by setting the kernel size
(::vl_quickshift_set_kernel_size) and the maximum gap
(::vl_quickshift_max_dist). The latter is in principle not
necessary, but useful to speedup processing.
- Process an image (::vl_quickshift_process).
- Retrieve the parents (::vl_quickshift_get_parents) and the distances
(::vl_quickshift_get_dists). These can be used to segment
the image in superpixels.
- Delete the quick shift object (::vl_quickshift_delete).
@section quickshift-tech Technical details
For each pixel <em>(x,y)</em>, quick shift regards @f$ (x,y,I(x,y))
@f$ as a sample from a <em>d + 2</em> dimensional vector space. It
then calculates the Parzen density estimate (with a Gaussian kernel of
standard deviation @f$ \sigma @f$)
@f[
E(x,y) = P(x,y,I(x,y)) = \sum_{x'y'}
\frac{1}{(2\pi\sigma)^{d+2}}
\exp
\left(
-\frac{1}{2\sigma^2}
\left[
\begin{array}{c}
x - x' \\
y - y' \\
I(x,y) - I(x',y') \\
\end{array}
\right]
\right)
@f]
Then quick shift construct a tree connecting each image pixel to its
nearest neighbor which has greater density value. Formally, write @f$
(x',y') >_P (x,y) @f$ if, and only if,
@f[
P(x',y',I(x',y')) > P(x,y,I(x,y))}.
@f]
Each pixel <em>(x, y)</em> is connected to the closest higher density
pixel <em>parent(x, y)</em> that achieves the minimum distance in
@f[
\mathrm{dist}(x,y) =
\mathrm{min}_{(x',y') > P(x,y)}
\left(
(x - x')^2 +
(y - y')^2 +
\| I(x,y) - I(x',y') \|_2^2
\right).
@f]
**/
#include "quickshift.h"
#include "mathop.h"
#include <string.h>
#include <math.h>
#include <stdio.h>
/** -----------------------------------------------------------------
** @internal
** @brief Computes the accumulated channel L2 distance between
** i,j + the distance between i,j
**
** @param I input image buffer
** @param N1 size of the first dimension of the image
** @param N2 size of the second dimension of the image
** @param K number of channels
** @param i1 first dimension index of the first pixel to compare
** @param i2 second dimension of the first pixel
** @param j1 index of the second pixel to compare
** @param j2 second dimension of the second pixel
**
** Takes the L2 distance between the values in I at pixel i and j,
** accumulating along K channels and adding in the distance
** between i,j in the image.
**
** @return the distance as described above
**/
VL_INLINE
vl_qs_type
vl_quickshift_distance(vl_qs_type const * I,
int N1, int N2, int K,
int i1, int i2,
int j1, int j2)
{
vl_qs_type dist = 0 ;
int d1 = j1 - i1 ;
int d2 = j2 - i2 ;
int k ;
dist += d1*d1 + d2*d2 ;
/* For k = 0...K-1, d+= L2 distance between I(i1,i2,k) and
* I(j1,j2,k) */
for (k = 0 ; k < K ; ++k) {
vl_qs_type d =
I [i1 + N1 * i2 + (N1*N2) * k] -
I [j1 + N1 * j2 + (N1*N2) * k] ;
dist += d*d ;
}
return dist ;
}
/** -----------------------------------------------------------------
** @internal
** @brief Computes the accumulated channel inner product between i,j + the
** distance between i,j
**
** @param I input image buffer
** @param N1 size of the first dimension of the image
** @param N2 size of the second dimension of the image
** @param K number of channels
** @param i1 first dimension index of the first pixel to compare
** @param i2 second dimension of the first pixel
** @param j1 index of the second pixel to compare
** @param j2 second dimension of the second pixel
**
** Takes the channel-wise inner product between the values in I at
** pixel i and j, accumulating along K channels and adding in the
** inner product between i,j in the image.
**
** @return the inner product as described above
**/
VL_INLINE
vl_qs_type
vl_quickshift_inner(vl_qs_type const * I,
int N1, int N2, int K,
int i1, int i2,
int j1, int j2)
{
vl_qs_type ker = 0 ;
int k ;
ker += i1*j1 + i2*j2 ;
for (k = 0 ; k < K ; ++k) {
ker +=
I [i1 + N1 * i2 + (N1*N2) * k] *
I [j1 + N1 * j2 + (N1*N2) * k] ;
}
return ker ;
}
/** -----------------------------------------------------------------
** @brief Create a quick shift object
** @param image
** @param height
** @param width
** @param channels
**
** @return New quick shift object.
**/
VL_EXPORT
VlQS *
vl_quickshift_new(vl_qs_type const * image, int height, int width,
int channels)
{
VlQS * q = vl_malloc(sizeof(VlQS));
q->image = (vl_qs_type *)image;
q->height = height;
q->width = width;
q->channels = channels;
q->medoid = VL_FALSE;
q->tau = VL_MAX(height,width)/50;
q->sigma = VL_MAX(2, q->tau/3);
q->dists = vl_calloc(height*width, sizeof(vl_qs_type));
q->parents = vl_calloc(height*width, sizeof(int));
q->density = vl_calloc(height*width, sizeof(vl_qs_type)) ;
return q;
}
/** -----------------------------------------------------------------
** @brief Create a quick shift objet
** @param q quick shift object.
**/
VL_EXPORT
void vl_quickshift_process(VlQS * q)
{
vl_qs_type const *I = q->image;
int *parents = q->parents;
vl_qs_type *E = q->density;
vl_qs_type *dists = q->dists;
vl_qs_type *M = 0, *n = 0 ;
vl_qs_type sigma = q->sigma ;
vl_qs_type tau = q->tau;
vl_qs_type tau2 = tau*tau;
int K = q->channels, d;
int N1 = q->height, N2 = q->width;
int i1,i2, j1,j2, R, tR;
d = 2 + K ; /* Total dimensions include spatial component (x,y) */
if (q->medoid) { /* n and M are only used in mediod shift */
M = (vl_qs_type *) vl_calloc(N1*N2*d, sizeof(vl_qs_type)) ;
n = (vl_qs_type *) vl_calloc(N1*N2, sizeof(vl_qs_type)) ;
}
R = (int) ceil (3 * sigma) ;
tR = (int) ceil (tau) ;
/* -----------------------------------------------------------------
* n
* -------------------------------------------------------------- */
/* If we are doing medoid shift, initialize n to the inner product of the
* image with itself
*/
if (n) {
for (i2 = 0 ; i2 < N2 ; ++ i2) {
for (i1 = 0 ; i1 < N1 ; ++ i1) {
n [i1 + N1 * i2] = vl_quickshift_inner(I,N1,N2,K,
i1,i2,
i1,i2) ;
}
}
}
/* -----------------------------------------------------------------
* E = - [oN'*F]', M
* -------------------------------------------------------------- */
/*
D_ij = d(x_i,x_j)
E_ij = exp(- .5 * D_ij / sigma^2) ;
F_ij = - E_ij
E_i = sum_j E_ij
M_di = sum_j X_j F_ij
E is the parzen window estimate of the density
0 = dissimilar to everything, windowsize = identical
*/
for (i2 = 0 ; i2 < N2 ; ++ i2) {
for (i1 = 0 ; i1 < N1 ; ++ i1) {
int j1min = VL_MAX(i1 - R, 0 ) ;
int j1max = VL_MIN(i1 + R, N1-1) ;
int j2min = VL_MAX(i2 - R, 0 ) ;
int j2max = VL_MIN(i2 + R, N2-1) ;
/* For each pixel in the window compute the distance between it and the
* source pixel */
for (j2 = j2min ; j2 <= j2max ; ++ j2) {
for (j1 = j1min ; j1 <= j1max ; ++ j1) {
vl_qs_type Dij = vl_quickshift_distance(I,N1,N2,K, i1,i2, j1,j2) ;
/* Make distance a similarity */
vl_qs_type Fij = - exp(- Dij / (2*sigma*sigma)) ;
/* E is E_i above */
E [i1 + N1 * i2] -= Fij ;
if (M) {
/* Accumulate votes for the median */
int k ;
M [i1 + N1*i2 + (N1*N2) * 0] += j1 * Fij ;
M [i1 + N1*i2 + (N1*N2) * 1] += j2 * Fij ;
for (k = 0 ; k < K ; ++k) {
M [i1 + N1*i2 + (N1*N2) * (k+2)] +=
I [j1 + N1*j2 + (N1*N2) * k] * Fij ;
}
}
} /* j1 */
} /* j2 */
} /* i1 */
} /* i2 */
/* -----------------------------------------------------------------
* Find best neighbors
* -------------------------------------------------------------- */
if (q->medoid) {
/*
Qij = - nj Ei - 2 sum_k Gjk Mik
n is I.^2
*/
/* medoid shift */
for (i2 = 0 ; i2 < N2 ; ++i2) {
for (i1 = 0 ; i1 < N1 ; ++i1) {
vl_qs_type sc_best = 0 ;
/* j1/j2 best are the best indicies for each i */
vl_qs_type j1_best = i1 ;
vl_qs_type j2_best = i2 ;
int j1min = VL_MAX(i1 - R, 0 ) ;
int j1max = VL_MIN(i1 + R, N1-1) ;
int j2min = VL_MAX(i2 - R, 0 ) ;
int j2max = VL_MIN(i2 + R, N2-1) ;
for (j2 = j2min ; j2 <= j2max ; ++ j2) {
for (j1 = j1min ; j1 <= j1max ; ++ j1) {
vl_qs_type Qij = - n [j1 + j2 * N1] * E [i1 + i2 * N1] ;
int k ;
Qij -= 2 * j1 * M [i1 + i2 * N1 + (N1*N2) * 0] ;
Qij -= 2 * j2 * M [i1 + i2 * N1 + (N1*N2) * 1] ;
for (k = 0 ; k < K ; ++k) {
Qij -= 2 *
I [j1 + j2 * N1 + (N1*N2) * k] *
M [i1 + i2 * N1 + (N1*N2) * (k + 2)] ;
}
if (Qij > sc_best) {
sc_best = Qij ;
j1_best = j1 ;
j2_best = j2 ;
}
}
}
/* parents_i is the linear index of j which is the best pair (in matlab
* notation
* dists_i is the score of the best match
*/
parents [i1 + N1 * i2] = j1_best + N1 * j2_best + 1 ;
dists[i1 + N1 * i2] = sc_best ;
}
}
} else {
/* Quickshift assigns each i to the closest j which has an increase in the
* density (E). If there is no j s.t. Ej > Ei, then dists_i == inf (a root
* node in one of the trees of merges).
*/
for (i2 = 0 ; i2 < N2 ; ++i2) {
for (i1 = 0 ; i1 < N1 ; ++i1) {
vl_qs_type E0 = E [i1 + N1 * i2] ;
vl_qs_type d_best = VL_QS_INF ;
vl_qs_type j1_best = i1 ;
vl_qs_type j2_best = i2 ;
int j1min = VL_MAX(i1 - tR, 0 ) ;
int j1max = VL_MIN(i1 + tR, N1-1) ;
int j2min = VL_MAX(i2 - tR, 0 ) ;
int j2max = VL_MIN(i2 + tR, N2-1) ;
for (j2 = j2min ; j2 <= j2max ; ++ j2) {
for (j1 = j1min ; j1 <= j1max ; ++ j1) {
if (E [j1 + N1 * j2] > E0) {
vl_qs_type Dij = vl_quickshift_distance(I,N1,N2,K, i1,i2, j1,j2) ;
if (Dij <= tau2 && Dij < d_best) {
d_best = Dij ;
j1_best = j1 ;
j2_best = j2 ;
}
}
}
}
/* parents is the index of the best pair */
/* dists_i is the minimal distance, inf implies no Ej > Ei within
* distance tau from the point */
parents [i1 + N1 * i2] = j1_best + N1 * j2_best + 1 ;
dists[i1 + N1 * i2] = sqrt(d_best) ;
}
}
}
if (M) vl_free(M) ;
if (n) vl_free(n) ;
}
/** -----------------------------------------------------------------
** @brief Delete quick shift object
** @param q quick shift object.
**/
void vl_quickshift_delete(VlQS * q)
{
if (q) {
if (q->parents) vl_free(q->parents);
if (q->dists) vl_free(q->dists);
if (q->density) vl_free(q->density);
vl_free(q);
}
}
|