Skip to content
Snippets Groups Projects
Commit 01bb1953 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

Automated merge with http://hg.orfeo-toolbox.org/OTB

parents da3ac234 e17d7053
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ namespace Functor
*
* Computes cluster shade using joint histogram (neighborhood and offset neighborhood).
* The formula is:
* \f[ \sum_{i}\sum_{j}((i-\mu)+(j-\mu))^3p(i,j) \f]
* \f[ \sum_{i}\sum_{j}((i-\mu_{x})+(j-\mu_{y}))^3p(i,j) \f]
Where \f$ \mu \f$ is the mean texture value.
* TIterInput is an iterator, TOutput is a PixelType.
*
......@@ -60,11 +60,24 @@ public:
virtual double ComputeOverSingleChannel(const NeighborhoodType& neigh, const NeighborhoodType& neighOff)
{
this->ComputeJointHistogram(neigh, neighOff);
double mean = Superclass::ComputeOverSingleChannel(neigh, neighOff);
//compute meanPOff and meanPNeigh
double area = static_cast<double>(neigh.GetSize()[0] * neigh.GetSize()[1]);
double areaInv = 1 / area;
double out = 0.;
double sumProb = 0.;
for (unsigned r = 0; r < this->GetHisto().size(); ++r)
{
for (unsigned s = 0; s < this->GetHisto()[r].size(); ++s)
{
double p = static_cast<double>(this->GetHisto()[r][s]) * areaInv;
sumProb += p;
}
}
double meanPOff = sumProb / static_cast<double>(this->GetHisto().size());
double meanPNeigh = sumProb / static_cast<double>(this->GetHisto()[0].size());
for (unsigned r = 0; r < this->GetHisto().size(); ++r)
{
for (unsigned s = 0; s < this->GetHisto()[r].size(); ++s)
......@@ -73,7 +86,7 @@ public:
double sumPixel =
(static_cast<double>(s) +
0.5) * this->GetNeighBinLength() + (static_cast<double>(r) + 0.5) * this->GetOffsetBinLength();
out += vcl_pow(sumPixel - 2 * mean, 3) * p;
out += vcl_pow(sumPixel - meanPOff - meanPNeigh, 3) * p;
}
}
......
......@@ -18,7 +18,7 @@
// Software Guide : BeginCommandLineArgs
// INPUTS: {qb_RoadExtract.tif}
// OUTPUTS: {OBIARadiometricAttribute1.tif}, {qb_ExtractRoad_Radiometry_pretty.png}
// OUTPUTS: {OBIARadiometricAttribute1.tif}, {qb_ExtractRoad_Radiometry_pretty.jpg}
// STATS::Ndvi::Mean 0 0.5 16 16 50 1.0
// Software Guide : EndCommandLineArgs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment