~ubuntu-branches/ubuntu/raring/openwalnut/raring

« back to all changes in this revision

Viewing changes to src/modules/scalarSegmentation/WSegmentationAlgoWatershed.cpp

  • Committer: Package Import Robot
  • Author(s): Sebastian Eichelbaum
  • Date: 2012-12-12 11:26:32 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20121212112632-xhiuwkxuz5h0idkh
Tags: 1.3.1+hg5849-1
* Minor changes compared to 1.3.0 but included several bug fixes.
* See http://www.openwalnut.org/versions/4

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
void WSegmentationAlgoWatershed::properties()
41
41
{
42
 
    m_threshold = m_properties->addProperty( "Threshold.", "Threshold in %.", 0.0, m_propCondition );
43
 
    m_level = m_properties->addProperty( "Level.", "Water level in %.", 0.0, m_propCondition );
44
 
    m_iter = m_properties->addProperty( "Iterations.", "Number of smoothing passes:", 10, m_propCondition );
45
 
    m_conductance = m_properties->addProperty( "Conductance.", "Conductance parameter for smoothing.", 1.0, m_propCondition );
 
42
    m_threshold = m_properties->addProperty( "Threshold", "Threshold in %.", 0.0, m_propCondition );
 
43
    m_level = m_properties->addProperty( "Level", "Water level in %.", 0.0, m_propCondition );
 
44
    m_iter = m_properties->addProperty( "Iterations", "Number of smoothing passes:", 10, m_propCondition );
 
45
    m_conductance = m_properties->addProperty( "Conductance", "Conductance parameter for smoothing.", 1.0, m_propCondition );
46
46
    m_conductance->setMax( 10.0 );
47
47
}
48
48