File: vfluid.hh

package info (click to toggle)
mia 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 13,532 kB
  • ctags: 16,800
  • sloc: cpp: 137,909; python: 1,057; ansic: 998; sh: 146; xml: 127; csh: 24; makefile: 13
file content (124 lines) | stat: -rw-r--r-- 2,846 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
/* -*- mia-c++  -*-
 *
 * This file is part of MIA - a toolbox for medical image analysis 
 * Copyright (c) Leipzig, Madrid 1999-2014 Gert Wollny
 *
 * MIA is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with MIA; if not, see <http://www.gnu.org/licenses/>.
 *
 */

#ifndef __vfluid_h
#define __vfluid_h

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <memory>

#include <mia/2d/image.hh>
#include <mia/2d/vectorfield.hh>
#include <mia/2d/interpolator.hh>

#include "Pixel.hh"

#define MIN_STEP 0.1
#define MAX_STEP 4.0

#define OMEGA    1.8
#define LAMBDA   1
#define MU       1
#define PDE_NIT  200
#define TEMP_NIT 200
#define THRESH 4

NS_MIA_BEGIN


class TFluidReg {
	C2DFVectorfield v;			// velocity field
	C2DFVectorfield B;			// force field
	C2DFVectorfield u;			// displacement field
	C2DFVectorfield r;			// perturbation field

	C2DFImage Ref;
	C2DFImage Model;
	C2DFImage Template;
	std::shared_ptr<T2DInterpolator<float> >  target_interp;


	float min_stepsize;
	C2DBounds Start,End;

	bool final_level;
	float epsilon;
	float  	delta;  		// step size
	float  	stepSize;		// step size
	float  	lambda, mu;		// elasticity constants
  	float   omega;			// overrelaxation factor
	float  	a_,a, b, c, a_b,b_4;		// integration constants
	float  regrid_thresh;
public:
	TFluidReg(const C2DFImage& _Ref, const C2DFImage& _Model, float __regrid_thresh, int level,
		  float __epsilon, float __lambda, float __mu);
	~TFluidReg();


	float  solveAt(unsigned int x, unsigned int y);
	void	solvePDE(unsigned int nit);
	//	void	solvePDE(C2DFVectorfield& v, const C2DFVectorfield& B, unsigned int nit);


	C2DFVector  forceAt(const C2DFVector &p, float s);
	void	calculateForces();
	float  calculateMismatch(bool apply);
	bool	decreaseStep();
	void	increaseStep();
	void work(C2DFVectorfield *Shift, const C2DInterpolatorFactory& ipfac);

private:

float  perturbationAt(unsigned int x, unsigned int y);
float  calculatePerturbation();
float  jacobianAt(unsigned int x, unsigned int y);
float  calculateJacobian();





};


inline bool TFluidReg::decreaseStep()
{
	stepSize *= 0.5;
	if (stepSize >= min_stepsize) {
		return true;
	}else {
		stepSize = min_stepsize;
		return false;
	}
}

inline void TFluidReg::increaseStep()
{
	stepSize *= 1.5;
	if (stepSize > MAX_STEP)
		stepSize = MAX_STEP;
}

#endif

NS_MIA_END