/usr/include/visp/vpImageTools.h is in libvisp-dev 2.9.0-3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 | /****************************************************************************
*
* $Id: vpImageTools.h 4604 2014-01-21 14:15:23Z fspindle $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2014 by INRIA. All rights reserved.
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact INRIA about acquiring a ViSP Professional
* Edition License.
*
* See http://www.irisa.fr/lagadic/visp/visp.html for more information.
*
* This software was developed at:
* INRIA Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
* http://www.irisa.fr/lagadic
*
* If you have questions regarding the use of this file, please contact
* INRIA at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
*
* Description:
* Image tools.
*
* Authors:
* Fabien Spindler
*
*****************************************************************************/
#ifndef vpImageTools_H
#define vpImageTools_H
/*!
\file vpImageTools.h
\brief Various image tools; sub-image extraction, modification of
the look up table, binarisation...
*/
#include <visp/vpImage.h>
#ifdef VISP_HAVE_PTHREAD
# include <pthread.h>
#endif
#include <visp/vpImageException.h>
#include <visp/vpMath.h>
#include <visp/vpRect.h>
#include <visp/vpCameraParameters.h>
#include <fstream>
#include <iostream>
#include <math.h>
#include <string.h>
/*!
\class vpImageTools
\ingroup ImageTool
\brief Various image tools; sub-image extraction, modification of
the look up table, binarisation...
*/
class VISP_EXPORT vpImageTools
{
public:
template<class Type>
static void createSubImage(const vpImage<Type> &I,
unsigned int i_sub, unsigned int j_sub,
unsigned int nrow_sub, unsigned int ncol_sub,
vpImage<Type> &S);
template<class Type>
static void createSubImage(const vpImage<Type> &I,
const vpRect &rect,
vpImage<Type> &S);
template<class Type>
static void binarise(vpImage<Type> &I,
Type threshold1, Type threshold2,
Type value1, Type value2, Type value3);
static void changeLUT(vpImage<unsigned char>& I,
unsigned char A,
unsigned char newA,
unsigned char B,
unsigned char newB);
template<class Type>
static void undistort(const vpImage<Type> &I,
const vpCameraParameters &cam,
vpImage<Type> &newI);
template<class Type>
static void flip(const vpImage<Type> &I,
vpImage<Type> &newI);
template<class Type>
static void flip(vpImage<Type> &I);
static void imageDifference(const vpImage<unsigned char> &I1,
const vpImage<unsigned char> &I2,
vpImage<unsigned char> &Idiff) ;
static void imageDifferenceAbsolute(const vpImage<unsigned char> &I1,
const vpImage<unsigned char> &I2,
vpImage<unsigned char> &Idiff);
} ;
/*!
Extract a sub part of an image
\param I : Input image from which a sub image will be extracted.
\param i_sub, j_sub : coordinates of the upper left point of the sub image
\param nrow_sub, ncol_sub : number of row, column of the sub image
\param S : Sub-image.
*/
template<class Type>
void vpImageTools::createSubImage(const vpImage<Type> &I,
unsigned int i_sub, unsigned int j_sub,
unsigned int nrow_sub, unsigned int ncol_sub,
vpImage<Type> &S)
{
unsigned int i,j ;
unsigned int imax = i_sub + nrow_sub ;
unsigned int jmax = j_sub + ncol_sub ;
if (imax > I.getHeight())
{
imax = I.getHeight() -1 ;
nrow_sub = imax-i_sub ;
}
if (jmax > I.getWidth())
{
jmax = I.getWidth() -1 ;
ncol_sub = jmax -j_sub ;
}
S.resize(nrow_sub, ncol_sub) ;
for (i=i_sub ; i < imax ; i++)
for (j=j_sub ; j < jmax ; j++)
{
S[i-i_sub][j-j_sub] = I[i][j] ;
}
}
/*!
Extract a sub part of an image
\param I : Input image from which a sub image will be extracted.
\param rect : Rectangle area in the image \e I corresponding to the
sub part of the image to extract.
\param S : Sub-image.
*/
template<class Type>
void vpImageTools::createSubImage(const vpImage<Type> &I,
const vpRect &rect,
vpImage<Type> &S)
{
double dleft = rect.getLeft();
double dtop = rect.getTop();
double dright = ceil( rect.getRight() );
double dbottom = ceil( rect.getBottom() );
if (dleft < 0.0) dleft = 0.0;
else if (dleft >= I.getWidth()) dleft = I.getWidth() - 1;
if (dright < 0.0) dright = 0.0;
else if (dright >= I.getWidth()) dright = I.getWidth() - 1;
if (dtop < 0.0) dtop = 0.0;
else if (dtop >= I.getHeight()) dtop = I.getHeight() - 1;
if (dbottom < 0.0) dbottom = 0.0;
else if (dbottom >= I.getHeight()) dbottom = I.getHeight() - 1;
// Convert the double-precision rectangle coordinates into integer positions
unsigned int left = (unsigned int) dleft;
unsigned int top = (unsigned int) dtop;
unsigned int bottom = (unsigned int) dbottom;
unsigned int right = (unsigned int) dright;
unsigned int width = right - left + 1;;
unsigned int height = bottom - top + 1;
S.resize(height, width) ;
for (unsigned int i=top ; i <= bottom ; i++) {
for (unsigned int j=left ; j <= right ; j++) {
S[i-top][j-left] = I[i][j] ;
}
}
}
/*!
Binarise an image.
- Pixels whose values are less than \e threshold1 are set to \e value1
- Pixels whose values are greater then or equal to \e threshold1 and
less then or equal to \e threshold2 are set to \e value2
- Pixels whose values are greater than \e threshold2 are set to \e value3
*/
template<class Type>
void vpImageTools::binarise(vpImage<Type> &I,
Type threshold1, Type threshold2,
Type value1, Type value2, Type value3)
{
unsigned char v;
unsigned char *p = I.bitmap;
unsigned char *pend = I.bitmap + I.getWidth()*I.getHeight();
for (; p < pend; p ++) {
v = *p;
if (v < threshold1) *p = value1;
else if (v > threshold2) *p = value3;
else *p = value2;
}
}
#ifdef VISP_HAVE_PTHREAD
#ifndef DOXYGEN_SHOULD_SKIP_THIS
template<class Type>
class vpUndistortInternalType
{
public:
Type *src;
Type *dst;
unsigned int width;
unsigned int height;
vpCameraParameters cam;
unsigned int nthreads;
unsigned int threadid;
public:
vpUndistortInternalType() {
src = dst = NULL;
width = height = 0;
nthreads = threadid = 0;
};
vpUndistortInternalType(const vpUndistortInternalType<Type> &u) {
src = u.src;
dst = u.dst;
width = u.width;
height = u.height;
cam = u.cam;
nthreads = u.nthreads;
threadid = u.threadid;
};
static void *vpUndistort_threaded(void *arg);
};
template<class Type>
void *vpUndistortInternalType<Type>::vpUndistort_threaded(void *arg)
{
vpUndistortInternalType<Type> *undistortSharedData = (vpUndistortInternalType<Type>*)arg;
int offset = (int)undistortSharedData->threadid;
int width = (int)undistortSharedData->width;
int height = (int)undistortSharedData->height;
int nthreads = (int)undistortSharedData->nthreads;
double u0 = undistortSharedData->cam.get_u0();
double v0 = undistortSharedData->cam.get_v0();
double px = undistortSharedData->cam.get_px();
double py = undistortSharedData->cam.get_py();
double kud = undistortSharedData->cam.get_kud();
double invpx = 1.0/px;
double invpy = 1.0/py;
double kud_px2 = kud * invpx * invpx;
double kud_py2 = kud * invpy * invpy;
Type *dst = undistortSharedData->dst+(height/nthreads*offset)*width;
Type *src = undistortSharedData->src;
for (double v = height/nthreads*offset;v < height/nthreads*(offset+1) ; v++) {
double deltav = v - v0;
//double fr1 = 1.0 + kd * (vpMath::sqr(deltav * invpy));
double fr1 = 1.0 + kud_py2 * deltav * deltav;
for (double u = 0 ; u < width ; u++) {
//computation of u,v : corresponding pixel coordinates in I.
double deltau = u - u0;
//double fr2 = fr1 + kd * (vpMath::sqr(deltau * invpx));
double fr2 = fr1 + kud_px2 * deltau * deltau;
double u_double = deltau * fr2 + u0;
double v_double = deltav * fr2 + v0;
//computation of the bilinear interpolation
//declarations
int u_round = (int) (u_double);
int v_round = (int) (v_double);
if (u_round < 0.f) u_round = -1;
if (v_round < 0.f) v_round = -1;
double du_double = (u_double) - (double) u_round;
double dv_double = (v_double) - (double) v_round;
Type v01;
Type v23;
if ( (0 <= u_round) && (0 <= v_round) &&
(u_round < ((width) - 1)) && (v_round < ((height) - 1)) ) {
//process interpolation
const Type* _mp = &src[v_round*width+u_round];
v01 = (Type)(_mp[0] + ((_mp[1] - _mp[0]) * du_double));
_mp += width;
v23 = (Type)(_mp[0] + ((_mp[1] - _mp[0]) * du_double));
*dst = (Type)(v01 + ((v23 - v01) * dv_double));
}
else {
*dst = 0;
}
dst++;
}
}
pthread_exit((void*) 0);
return NULL;
}
#endif // DOXYGEN_SHOULD_SKIP_THIS
#endif // VISP_HAVE_PTHREAD
/*!
Undistort an image
\param I : Input image to undistort.
\param cam : Parameters of the camera causing distortion.
\param undistI : Undistorted output image. The size of this image
will be the same than the input image \e I. If the distortion
parameter \f$K_d\f$ is null (see cam.get_kd_mp()), \e undistI is
just a copy of \e I.
\warning This function works only with Types authorizing "+,-,
multiplication by a scalar" operators.
\warning This function is time consuming :
- On "Rhea"(Intel Core 2 Extreme X6800 2.93GHz, 2Go RAM)
or "Charon"(Intel Xeon 3 GHz, 2Go RAM) : ~8 ms for a 640x480 image.
*/
template<class Type>
void vpImageTools::undistort(const vpImage<Type> &I,
const vpCameraParameters &cam,
vpImage<Type> &undistI)
{
#ifdef VISP_HAVE_PTHREAD
//
// Optimized version using pthreads
//
unsigned int width = I.getWidth();
unsigned int height = I.getHeight();
undistI.resize(height, width);
double kud = cam.get_kud();
//if (kud == 0) {
if (std::fabs(kud) <= std::numeric_limits<double>::epsilon()) {
// There is no need to undistort the image
undistI = I;
return;
}
unsigned int nthreads = 2;
pthread_attr_t attr;
pthread_t *callThd = new pthread_t [nthreads];
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
vpUndistortInternalType<Type> *undistortSharedData;
undistortSharedData = new vpUndistortInternalType<Type> [nthreads];
for(unsigned int i=0;i<nthreads;i++) {
// Each thread works on a different set of data.
// vpTRACE("create thread %d", i);
undistortSharedData[i].src = I.bitmap;
undistortSharedData[i].dst = undistI.bitmap;
undistortSharedData[i].width = I.getWidth();
undistortSharedData[i].height = I.getHeight();
undistortSharedData[i].cam = cam;
undistortSharedData[i].nthreads = nthreads;
undistortSharedData[i].threadid = i;
pthread_create( &callThd[i], &attr,
&vpUndistortInternalType<Type>::vpUndistort_threaded,
&undistortSharedData[i]);
}
pthread_attr_destroy(&attr);
/* Wait on the other threads */
for(unsigned int i=0;i<nthreads;i++) {
// vpTRACE("join thread %d", i);
pthread_join( callThd[i], NULL);
}
delete [] callThd;
delete [] undistortSharedData;
#else // VISP_HAVE_PTHREAD
//
// optimized version without pthreads
//
unsigned int width = I.getWidth();
unsigned int height = I.getHeight();
undistI.resize(height, width);
double u0 = cam.get_u0();
double v0 = cam.get_v0();
double px = cam.get_px();
double py = cam.get_py();
double kud = cam.get_kud();
//if (kud == 0) {
if (std::fabs(kud) <= std::numeric_limits<double>::epsilon()) {
// There is no need to undistort the image
undistI = I;
return;
}
double invpx = 1.0/px;
double invpy = 1.0/py;
double kud_px2 = kud * invpx * invpx;
double kud_py2 = kud * invpy * invpy;
Type *dst = undistI.bitmap;
for (double v = 0;v < height ; v++) {
double deltav = v - v0;
//double fr1 = 1.0 + kd * (vpMath::sqr(deltav * invpy));
double fr1 = 1.0 + kud_py2 * deltav * deltav;
for (double u = 0 ; u < width ; u++) {
//computation of u,v : corresponding pixel coordinates in I.
double deltau = u - u0;
//double fr2 = fr1 + kd * (vpMath::sqr(deltau * invpx));
double fr2 = fr1 + kud_px2 * deltau * deltau;
double u_double = deltau * fr2 + u0;
double v_double = deltav * fr2 + v0;
//printf("[%g][%g] %g %g : ", u, v, u_double, v_double );
//computation of the bilinear interpolation
//declarations
int u_round = (int) (u_double);
int v_round = (int) (v_double);
if (u_round < 0.f) u_round = -1;
if (v_round < 0.f) v_round = -1;
double du_double = (u_double) - (double) u_round;
double dv_double = (v_double) - (double) v_round;
Type v01;
Type v23;
if ( (0 <= u_round) && (0 <= v_round) &&
(u_round < (((int)width) - 1)) && (v_round < (((int)height) - 1)) ) {
//process interpolation
const Type* _mp = &I[(unsigned int)v_round][(unsigned int)u_round];
v01 = (Type)(_mp[0] + ((_mp[1] - _mp[0]) * du_double));
_mp += width;
v23 = (Type)(_mp[0] + ((_mp[1] - _mp[0]) * du_double));
*dst = (Type)(v01 + ((v23 - v01) * dv_double));
//printf("R %d G %d B %d\n", dst->R, dst->G, dst->B);
}
else {
*dst = 0;
}
dst++;
}
}
#endif // VISP_HAVE_PTHREAD
#if 0
// non optimized version
int width = I.getWidth();
int height = I.getHeight();
undistI.resize(height,width);
double u0 = cam.get_u0();
double v0 = cam.get_v0();
double px = cam.get_px();
double py = cam.get_py();
double kd = cam.get_kud();
if (kd == 0) {
// There is no need to undistort the image
undistI = I;
return;
}
for(int v = 0 ; v < height; v++){
for(int u = 0; u < height; u++){
double r2 = vpMath::sqr(((double)u - u0)/px) +
vpMath::sqr(((double)v-v0)/py);
double u_double = ((double)u - u0)*(1.0+kd*r2) + u0;
double v_double = ((double)v - v0)*(1.0+kd*r2) + v0;
undistI[v][u] = I.getPixelBI((float)u_double,(float)v_double);
}
}
#endif
}
/*!
Flip vertically the input image and give the result in the output image.
\param I : Input image to flip.
\param newI : Output image which is the flipped input image.
*/
template<class Type>
void vpImageTools::flip(const vpImage<Type> &I,
vpImage<Type> &newI)
{
unsigned int height = 0, width = 0;
int i = 0;
height = I.getHeight();
width = I.getWidth();
newI.resize(height, width);
for ( i = 0; i < height; i++)
{
memcpy(newI.bitmap+i*width, I.bitmap+(height-1-i)*width,
width*sizeof(Type));
}
}
/*!
Flip vertically the input image.
\param I : Input image which is flipped and modified in output.
The following example shows how to use this function:
\code
#include <visp/vpImageTools.h>
#include <visp/vpImage.h>
#include <visp/vpImageIo.h>
int main()
{
vpImage<vpRGBa> I;
#ifdef _WIN32
std::string filename("C:/temp/ViSP-images/Klimt/Klimt.ppm");
#else
std::string filename("/local/soft/ViSP/ViSP-images/Klimt/Klimt.ppm");
#endif
// Read an image from the disk
vpImageIo::read(I, filename);
// Flip the image
vpImageTools::flip(I);
vpImageIo::write(I, "Klimt-flip.ppm"); // Write the image in a PGM P5 image file format
}
\endcode
*/
template<class Type>
void vpImageTools::flip(vpImage<Type> &I)
{
unsigned int height = 0, width = 0;
unsigned int i = 0;
vpImage<Type> Ibuf;
height = I.getHeight();
width = I.getWidth();
Ibuf.resize(1, width);
for ( i = 0; i < height/2; i++)
{
memcpy(Ibuf.bitmap, I.bitmap+i*width,
width*sizeof(Type));
memcpy(I.bitmap+i*width, I.bitmap+(height-1-i)*width,
width*sizeof(Type));
memcpy(I.bitmap+(height-1-i)*width, Ibuf.bitmap,
width*sizeof(Type));
}
}
#endif
/*
* Local variables:
* c-basic-offset: 2
* End:
*/
|