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
|
/*=========================================================================
Program: ITK-SNAP
Module: $RCSfile: IntensityCurveVTK.cxx,v $
Language: C++
Date: $Date: 2009/09/16 20:03:13 $
Version: $Revision: 1.3 $
Copyright (c) 2007 Paul A. Yushkevich
This file is part of ITK-SNAP
ITK-SNAP 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 this program. If not, see <http://www.gnu.org/licenses/>.
-----
Copyright (c) 2003 Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "IntensityCurveVTK.h"
#include "SNAPCommon.h"
#include <assert.h>
using namespace std;
IntensityCurveVTK
::IntensityCurveVTK()
{
m_Spline = vtkKochanekSpline::New();
m_Spline->SetLeftConstraint(2);
m_Spline->SetRightConstraint(2);
m_Spline->SetDefaultContinuity(-1);
m_Spline->SetDefaultTension(0);
m_Spline->SetDefaultBias(0);
}
IntensityCurveVTK
::~IntensityCurveVTK()
{
m_Spline->Delete();
}
void
IntensityCurveVTK
::Initialize(unsigned int nControlPoints)
{
// Set up the intervals for the control points
float interval = 1.0 / (nControlPoints - 1);
float t = 0;
// Initialize the control points
m_ControlPoints.clear();
m_Spline->RemoveAllPoints();
for(unsigned int i=0;i<nControlPoints;i++,t+=interval)
{
ControlPoint c = {t,t};
m_ControlPoints.push_back(c);
m_Spline->AddPoint(t,t);
}
m_Spline->Compute();
this->Modified();
}
bool
IntensityCurveVTK
::IsInDefaultState()
{
// Set up the intervals for the control points
float interval = 1.0 / (m_ControlPoints.size() - 1);
float t = 0;
for(unsigned int i=0;i<m_ControlPoints.size();i++,t+=interval)
{
const ControlPoint &cp = m_ControlPoints[i];
if(cp.t != t || cp.x != t)
return false;
}
return true;
}
void
IntensityCurveVTK
::GetControlPoint(unsigned int iControlPoint,float &t,float &x) const
{
assert(iControlPoint < m_ControlPoints.size());
t = m_ControlPoints[iControlPoint].t;
x = m_ControlPoints[iControlPoint].x;
}
void
IntensityCurveVTK
::UpdateControlPoint(unsigned int iControlPoint, float t, float x)
{
assert(iControlPoint < m_ControlPoints.size());
// Update the control point of interest
m_ControlPoints[iControlPoint].t = t;
m_ControlPoints[iControlPoint].x = x;
// Oops, we have to do this the hard way
m_Spline->RemoveAllPoints();
for(IteratorType it = m_ControlPoints.begin();it!=m_ControlPoints.end();it++)
{
m_Spline->AddPoint(it->t,it->x);
}
m_Spline->Compute();
this->Modified();
}
bool
IntensityCurveVTK
::IsMonotonic() const
{
// The simple thing is to check each interval a bunch of
// times. There ought to be an upper limit on the length of non-monotonic
// regions.
unsigned int nRegions = 8;
for(unsigned int i=0;i<m_ControlPoints.size()-1;i++) {
float t = m_ControlPoints[i].t;
double tStep = (m_ControlPoints[i+1].t - t) / (nRegions - 1);
float t1 = t + tStep;
for(unsigned int j=0;j<nRegions-1;j++) {
if(m_Spline->Evaluate(t) >= m_Spline->Evaluate(t1))
return false;
t = t1;
t1 += tStep;
}
}
return true;
}
void
IntensityCurveVTK
::ScaleControlPointsToWindow(float tMin, float tMax)
{
assert(tMin < tMax);
// Get the current range
float t1 = m_ControlPoints.front().t;
float tn = m_ControlPoints.back().t;
// Compute coefficients of the mapping t' = b t + k
float b = (tMax - tMin) / (tn - t1);
float k = tMin - b * t1;
m_Spline->RemoveAllPoints();
for(IteratorType it = m_ControlPoints.begin();it != m_ControlPoints.end();it++)
{
it->t = it->t * b + k;
m_Spline->AddPoint(it->t,it->x);
}
m_Spline->Compute();
this->Modified();
}
void
IntensityCurveVTK
::PrintSelf(std::ostream &os, itk::Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Spline: "
<< m_Spline
<< std::endl;
}
void
IntensityCurveVTK
::LoadFromRegistry(Registry ®istry)
{
// Read the number of control points
size_t nPoints = registry["NumberOfControlPoints"][3];
this->Initialize(nPoints);
// Load each of the control point
for(size_t iPoint = 0; iPoint < nPoints; iPoint++)
{
// Get the default values, just in case
float t0, x0;
this->GetControlPoint(iPoint, t0, x0);
// Read the registry
Registry &folder = registry.Folder(registry.Key("ControlPoint[%d]",iPoint));
float t = (float) folder["tValue"][(double) t0];
float x = (float) folder["xValue"][(double) x0];
// Set the control point
this->UpdateControlPoint(iPoint, t, x);
}
}
void
IntensityCurveVTK
::SaveToRegistry(Registry ®istry) const
{
// Store the number of control points
registry["NumberOfControlPoints"] << this->GetControlPointCount();
// Save each control point
for(size_t iPoint = 0; iPoint < this->GetControlPointCount(); iPoint++)
{
// Get the current values, just in case
float t, x;
this->GetControlPoint(iPoint, t, x);
// Create a folder in the registry
string key = registry.Key("ControlPoint[%d]",iPoint);
Registry &folder = registry.Folder(key);
folder["tValue"] << (double) t;
folder["xValue"] << (double) x;
}
}
|