Fixed bug in interpolation of colour values
This commit is contained in:
parent
16312a4aa0
commit
e53876bae9
@ -1,14 +1,14 @@
|
|||||||
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
||||||
*
|
*
|
||||||
* This library is open source and may be redistributed and/or modified under
|
* This library is open source and may be redistributed and/or modified under
|
||||||
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
||||||
* (at your option) any later version. The full license is in LICENSE file
|
* (at your option) any later version. The full license is in LICENSE file
|
||||||
* included with this distribution, and on the openscenegraph.org website.
|
* included with this distribution, and on the openscenegraph.org website.
|
||||||
*
|
*
|
||||||
* This library is distributed in the hope that it will be useful,
|
* This library is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* OpenSceneGraph Public License for more details.
|
* OpenSceneGraph Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <osg/TransferFunction>
|
#include <osg/TransferFunction>
|
||||||
@ -63,7 +63,7 @@ void TransferFunction1D::clear(const osg::Vec4& color)
|
|||||||
ColorMap newColours;
|
ColorMap newColours;
|
||||||
newColours[getMinimum()] = color;
|
newColours[getMinimum()] = color;
|
||||||
newColours[getMaximum()] = color;
|
newColours[getMaximum()] = color;
|
||||||
|
|
||||||
assign(newColours);
|
assign(newColours);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,8 +74,8 @@ void TransferFunction1D::assignToImage(float lower_v, const osg::Vec4& lower_c,
|
|||||||
float endPos = float(getNumberImageCells()-1);
|
float endPos = float(getNumberImageCells()-1);
|
||||||
float multiplier = endPos/(maximum - minimum);
|
float multiplier = endPos/(maximum - minimum);
|
||||||
osg::Vec4* imageData = reinterpret_cast<osg::Vec4*>(_image->data());
|
osg::Vec4* imageData = reinterpret_cast<osg::Vec4*>(_image->data());
|
||||||
|
|
||||||
float lower_iPos = (lower_v - minimum)*multiplier;
|
float lower_iPos = (lower_v - minimum)*multiplier;
|
||||||
float upper_iPos = (upper_v - minimum)*multiplier;
|
float upper_iPos = (upper_v - minimum)*multiplier;
|
||||||
|
|
||||||
float start_iPos = ceilf(lower_iPos);
|
float start_iPos = ceilf(lower_iPos);
|
||||||
@ -86,15 +86,20 @@ void TransferFunction1D::assignToImage(float lower_v, const osg::Vec4& lower_c,
|
|||||||
if (end_iPos<0.0f) return;
|
if (end_iPos<0.0f) return;
|
||||||
if (end_iPos>endPos) end_iPos=endPos;
|
if (end_iPos>endPos) end_iPos=endPos;
|
||||||
|
|
||||||
|
//osg::notify(osg::NOTICE)<<"TransferFunction1D::assignToImage[lower_v="<<lower_v<<", lower_c="<<lower_c<<", upper_v="<<upper_v<<" upper_c="<<upper_c<<std::endl;
|
||||||
|
//osg::notify(osg::NOTICE)<<" lower_iPos="<<lower_iPos<<" start_iPpos="<<start_iPos<<std::endl;
|
||||||
|
//osg::notify(osg::NOTICE)<<" upper_iPos="<<upper_iPos<<" end_iPpos="<<end_iPos<<std::endl;
|
||||||
|
|
||||||
Vec4 delta_c = (upper_c-lower_c)/(upper_iPos-lower_iPos);
|
Vec4 delta_c = (upper_c-lower_c)/(upper_iPos-lower_iPos);
|
||||||
unsigned int i=static_cast<unsigned int>(start_iPos);
|
unsigned int i=static_cast<unsigned int>(start_iPos);
|
||||||
for(float iPos=start_iPos;
|
for(float iPos=start_iPos;
|
||||||
iPos<=end_iPos;
|
iPos<=end_iPos;
|
||||||
++iPos, ++i)
|
++iPos, ++i)
|
||||||
{
|
{
|
||||||
imageData[i] = lower_c + delta_c*(iPos-lower_v);
|
imageData[i] = lower_c + delta_c*(iPos-lower_iPos);
|
||||||
|
//osg::notify(osg::NOTICE)<<" imageData["<<i<<"] = "<<imageData[i]<<std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
_image->dirty();
|
_image->dirty();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,8 +113,8 @@ void TransferFunction1D::setColor(float v, const osg::Vec4& color, bool updateIm
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!_image) allocate(1024);
|
if (!_image) allocate(1024);
|
||||||
|
|
||||||
if (_colorMap.empty() || v<getMinimum() || v>getMaximum())
|
if (_colorMap.empty() || v<getMinimum() || v>getMaximum())
|
||||||
{
|
{
|
||||||
_colorMap[v] = color;
|
_colorMap[v] = color;
|
||||||
|
|
||||||
@ -120,13 +125,13 @@ void TransferFunction1D::setColor(float v, const osg::Vec4& color, bool updateIm
|
|||||||
_colorMap[v] = color;
|
_colorMap[v] = color;
|
||||||
|
|
||||||
ColorMap::iterator itr = _colorMap.find(v);
|
ColorMap::iterator itr = _colorMap.find(v);
|
||||||
|
|
||||||
if (itr != _colorMap.begin())
|
if (itr != _colorMap.begin())
|
||||||
{
|
{
|
||||||
ColorMap::iterator previous_itr = itr;
|
ColorMap::iterator previous_itr = itr;
|
||||||
--previous_itr;
|
--previous_itr;
|
||||||
|
|
||||||
assignToImage(previous_itr->first, previous_itr->second, v, color);
|
assignToImage(previous_itr->first, previous_itr->second, v, color);
|
||||||
}
|
}
|
||||||
|
|
||||||
ColorMap::iterator next_itr = itr;
|
ColorMap::iterator next_itr = itr;
|
||||||
@ -134,7 +139,7 @@ void TransferFunction1D::setColor(float v, const osg::Vec4& color, bool updateIm
|
|||||||
|
|
||||||
if (next_itr != _colorMap.end())
|
if (next_itr != _colorMap.end())
|
||||||
{
|
{
|
||||||
assignToImage(v, color, next_itr->first, next_itr->second);
|
assignToImage(v, color, next_itr->first, next_itr->second);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -148,19 +153,19 @@ osg::Vec4 TransferFunction1D::getColor(float v) const
|
|||||||
|
|
||||||
// need to implement
|
// need to implement
|
||||||
std::pair<ColorMap::const_iterator, ColorMap::const_iterator> range = _colorMap.equal_range(v);
|
std::pair<ColorMap::const_iterator, ColorMap::const_iterator> range = _colorMap.equal_range(v);
|
||||||
|
|
||||||
// we have an identical match
|
// we have an identical match
|
||||||
if (v == range.first->first) return range.first->second;
|
if (v == range.first->first) return range.first->second;
|
||||||
|
|
||||||
// range.first will be at the next element after v, so move it before.
|
// range.first will be at the next element after v, so move it before.
|
||||||
--range.first;
|
--range.first;
|
||||||
|
|
||||||
float vBefore = range.first->first;
|
float vBefore = range.first->first;
|
||||||
const osg::Vec4& cBefore = range.first->second;
|
const osg::Vec4& cBefore = range.first->second;
|
||||||
|
|
||||||
float vAfter = range.second->first;
|
float vAfter = range.second->first;
|
||||||
const osg::Vec4& cAfter = range.second->second;
|
const osg::Vec4& cAfter = range.second->second;
|
||||||
|
|
||||||
float r = (v-vBefore)/(vAfter-vBefore);
|
float r = (v-vBefore)/(vAfter-vBefore);
|
||||||
|
|
||||||
return cBefore*(1.0f-r) + cAfter*r;
|
return cBefore*(1.0f-r) + cAfter*r;
|
||||||
@ -170,7 +175,7 @@ osg::Vec4 TransferFunction1D::getColor(float v) const
|
|||||||
void TransferFunction1D::assign(const ColorMap& newColours)
|
void TransferFunction1D::assign(const ColorMap& newColours)
|
||||||
{
|
{
|
||||||
_colorMap = newColours;
|
_colorMap = newColours;
|
||||||
|
|
||||||
updateImage();
|
updateImage();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -179,7 +184,7 @@ void TransferFunction1D::updateImage()
|
|||||||
if (_colorMap.empty()) return;
|
if (_colorMap.empty()) return;
|
||||||
|
|
||||||
if (!_image || _image->data()==0) allocate(1024);
|
if (!_image || _image->data()==0) allocate(1024);
|
||||||
|
|
||||||
osg::Vec4* imageData = reinterpret_cast<osg::Vec4*>(_image->data());
|
osg::Vec4* imageData = reinterpret_cast<osg::Vec4*>(_image->data());
|
||||||
|
|
||||||
if (_colorMap.size()==1)
|
if (_colorMap.size()==1)
|
||||||
@ -193,11 +198,11 @@ void TransferFunction1D::updateImage()
|
|||||||
_image->dirty();
|
_image->dirty();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ColorMap::const_iterator lower_itr = _colorMap.begin();
|
ColorMap::const_iterator lower_itr = _colorMap.begin();
|
||||||
ColorMap::const_iterator upper_itr = lower_itr;
|
ColorMap::const_iterator upper_itr = lower_itr;
|
||||||
++upper_itr;
|
++upper_itr;
|
||||||
|
|
||||||
for(;
|
for(;
|
||||||
upper_itr != _colorMap.end();
|
upper_itr != _colorMap.end();
|
||||||
++upper_itr)
|
++upper_itr)
|
||||||
@ -208,8 +213,8 @@ void TransferFunction1D::updateImage()
|
|||||||
const osg::Vec4& upper_c = upper_itr->second;
|
const osg::Vec4& upper_c = upper_itr->second;
|
||||||
|
|
||||||
assignToImage(lower_v, lower_c, upper_v, upper_c);
|
assignToImage(lower_v, lower_c, upper_v, upper_c);
|
||||||
|
|
||||||
lower_itr = upper_itr;
|
lower_itr = upper_itr;
|
||||||
}
|
}
|
||||||
|
|
||||||
_image->dirty();
|
_image->dirty();
|
||||||
|
@ -269,7 +269,7 @@ void RayTracedTechnique::init()
|
|||||||
osg::ref_ptr<osg::Texture1D> tf_texture = new osg::Texture1D;
|
osg::ref_ptr<osg::Texture1D> tf_texture = new osg::Texture1D;
|
||||||
tf_texture->setImage(tf->getImage());
|
tf_texture->setImage(tf->getImage());
|
||||||
|
|
||||||
#if 0
|
#if 1
|
||||||
osgDB::writeImageFile(*(tf->getImage()),"tf.png");
|
osgDB::writeImageFile(*(tf->getImage()),"tf.png");
|
||||||
osg::notify(osg::NOTICE)<<"imageLayer->getTexelOffset()[3]="<<imageLayer->getTexelOffset()[3]<<std::endl;
|
osg::notify(osg::NOTICE)<<"imageLayer->getTexelOffset()[3]="<<imageLayer->getTexelOffset()[3]<<std::endl;
|
||||||
osg::notify(osg::NOTICE)<<"imageLayer->getTexelScale()[3]="<<imageLayer->getTexelScale()[3]<<std::endl;
|
osg::notify(osg::NOTICE)<<"imageLayer->getTexelScale()[3]="<<imageLayer->getTexelScale()[3]<<std::endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user