Skip to content
Snippets Groups Projects
Commit 4187f860 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

WRG: unused typedefs in examples and other warnings

parent 4903f831
No related branches found
No related tags found
No related merge requests found
Showing
with 35 additions and 53 deletions
......@@ -27,14 +27,11 @@
#include "otbVectorImageToMatrixImageFilter.h"
namespace otb
{
namespace Wrapper
{
const unsigned int Dimension = 2;
typedef otb::StreamingStatisticsVectorImageFilter<DoubleVectorImageType> StreamingStatisticsVectorImageFilterType;
typedef otb::UnConstrainedLeastSquareImageFilter<DoubleVectorImageType, DoubleVectorImageType, double> UCLSUnmixingFilterType;
......
......@@ -21,13 +21,11 @@
#include "otbVcaImageFilter.h"
#include "otbVectorImageToMatrixImageFilter.h"
namespace otb
{
namespace Wrapper
{
const unsigned int Dimension = 2;
typedef otb::VCAImageFilter<DoubleVectorImageType> VCAFilterType;
typedef otb::VectorImageToMatrixImageFilter<DoubleVectorImageType> VectorImageToMatrixImageFilterType;
......
......@@ -251,13 +251,18 @@ BijectionCoherencyFilter<TDisparityImage,TOutputImage>
if (directVmap) tmpIndex[1] += directVertiIter.Get();
// Interpolate in reverse disparity map
typedef typename IndexType::IndexValueType IndexValueType;
IndexType ul,ur,ll,lr;
ul[0] = static_cast<long>(vcl_floor(tmpIndex[0]));
ul[1] = static_cast<long>(vcl_floor(tmpIndex[1]));
if (ul[0]<buffered.GetIndex()[0]) ul[0]=buffered.GetIndex()[0];
if (ul[1]<buffered.GetIndex()[1]) ul[1]=buffered.GetIndex()[1];
if (ul[0]>(unsigned int)(buffered.GetIndex()[0]+buffered.GetSize()[0]-1)) ul[0]=(buffered.GetIndex()[0]+buffered.GetSize()[0]-1);
if (ul[1]>(unsigned int)(buffered.GetIndex()[1]+buffered.GetSize()[1]-1)) ul[1]=(buffered.GetIndex()[1]+buffered.GetSize()[1]-1);
if (ul[0] < buffered.GetIndex()[0])
ul[0] = buffered.GetIndex()[0];
if (ul[1] < buffered.GetIndex()[1])
ul[1] = buffered.GetIndex()[1];
if (ul[0] > static_cast<IndexValueType>(buffered.GetIndex()[0] + buffered.GetSize()[0]-1))
ul[0]=(buffered.GetIndex()[0]+buffered.GetSize()[0]-1);
if (ul[1] > static_cast<IndexValueType>(buffered.GetIndex()[1] + buffered.GetSize()[1]-1))
ul[1] = (buffered.GetIndex()[1]+buffered.GetSize()[1]-1);
ur = ul;
ur[0] += 1;
......
......@@ -268,10 +268,12 @@ DisparityTranslateFilter<TDisparityImage,TGridImage,TSensorImage,TMaskImage>
IndexType ul;
ul[0] = static_cast<long>(vcl_floor(indexGrid[0]));
ul[1] = static_cast<long>(vcl_floor(indexGrid[1]));
if (ul[0]<gridLargest.GetIndex()[0]) ul[0]=gridLargest.GetIndex()[0];
if (ul[1]<gridLargest.GetIndex()[1]) ul[1]=gridLargest.GetIndex()[1];
if (ul[0]>(unsigned int)(gridLargest.GetIndex()[0]+gridLargest.GetSize()[0]-2)) ul[0]=(gridLargest.GetIndex()[0]+gridLargest.GetSize()[0]-2);
if (ul[1]>(unsigned int)(gridLargest.GetIndex()[1]+gridLargest.GetSize()[1]-2)) ul[1]=(gridLargest.GetIndex()[1]+gridLargest.GetSize()[1]-2);
if (ul[0] < gridLargest.GetIndex()[0]) ul[0] = gridLargest.GetIndex()[0];
if (ul[1] < gridLargest.GetIndex()[1]) ul[1] = gridLargest.GetIndex()[1];
if (ul[0] > static_cast<IndexValueType>(gridLargest.GetIndex()[0] + gridLargest.GetSize()[0]-2))
ul[0] = (gridLargest.GetIndex()[0] + gridLargest.GetSize()[0]-2);
if (ul[1] > static_cast<IndexValueType>(gridLargest.GetIndex()[1] + gridLargest.GetSize()[1]-2))
ul[1] = (gridLargest.GetIndex()[1] + gridLargest.GetSize()[1]-2);
IndexType ur = ul;
ur[0] += 1;
......@@ -365,15 +367,16 @@ DisparityTranslateFilter<TDisparityImage,TGridImage,TSensorImage,TMaskImage>
leftGrid->TransformPhysicalPointToContinuousIndex(pointSensor, indexGrid);
// Interpolate in left grid
typedef typename IndexType::IndexValueType IndexValueType;
IndexType ul;
ul[0] = static_cast<long> (vcl_floor(indexGrid[0]));
ul[1] = static_cast<long> (vcl_floor(indexGrid[1]));
if (ul[0] < leftLargest.GetIndex()[0]) ul[0] = leftLargest.GetIndex()[0];
if (ul[1] < leftLargest.GetIndex()[1]) ul[1] = leftLargest.GetIndex()[1];
if (ul[0] > (unsigned int) (leftLargest.GetIndex()[0] + leftLargest.GetSize()[0] - 2)) ul[0] = (
leftLargest.GetIndex()[0] + leftLargest.GetSize()[0] - 2);
if (ul[1] > (unsigned int) (leftLargest.GetIndex()[1] + leftLargest.GetSize()[1] - 2)) ul[1] = (
leftLargest.GetIndex()[1] + leftLargest.GetSize()[1] - 2);
if (ul[0] > static_cast<IndexValueType>(leftLargest.GetIndex()[0] + leftLargest.GetSize()[0] - 2))
ul[0] = (leftLargest.GetIndex()[0] + leftLargest.GetSize()[0] - 2);
if (ul[1] > static_cast<IndexValueType>(leftLargest.GetIndex()[1] + leftLargest.GetSize()[1] - 2))
ul[1] = (leftLargest.GetIndex()[1] + leftLargest.GetSize()[1] - 2);
IndexType ur = ul;
ur[0] += 1;
......@@ -400,10 +403,10 @@ DisparityTranslateFilter<TDisparityImage,TGridImage,TSensorImage,TMaskImage>
ul[1] = static_cast<long> (vcl_floor(indexEpi[1]));
if (ul[0] < buffered.GetIndex()[0]) ul[0] = buffered.GetIndex()[0];
if (ul[1] < buffered.GetIndex()[1]) ul[1] = buffered.GetIndex()[1];
if (ul[0] > (unsigned int) (buffered.GetIndex()[0] + buffered.GetSize()[0] - 2)) ul[0] = (buffered.GetIndex()[0]
+ buffered.GetSize()[0] - 2);
if (ul[1] > (unsigned int) (buffered.GetIndex()[1] + buffered.GetSize()[1] - 2)) ul[1] = (buffered.GetIndex()[1]
+ buffered.GetSize()[1] - 2);
if (ul[0] > static_cast<IndexValueType>(buffered.GetIndex()[0] + buffered.GetSize()[0] - 2))
ul[0] = (buffered.GetIndex()[0] + buffered.GetSize()[0] - 2);
if (ul[1] > static_cast<IndexValueType>(buffered.GetIndex()[1] + buffered.GetSize()[1] - 2))
ul[1] = (buffered.GetIndex()[1] + buffered.GetSize()[1] - 2);
ur = ul;
ur[0] += 1;
......@@ -441,10 +444,10 @@ DisparityTranslateFilter<TDisparityImage,TGridImage,TSensorImage,TMaskImage>
ul[1] = static_cast<long> (vcl_floor(indexGridRight[1]));
if (ul[0] < rightLargest.GetIndex()[0]) ul[0] = rightLargest.GetIndex()[0];
if (ul[1] < rightLargest.GetIndex()[1]) ul[1] = rightLargest.GetIndex()[1];
if (ul[0] > (unsigned int) (rightLargest.GetIndex()[0] + rightLargest.GetSize()[0] - 2)) ul[0] = (
rightLargest.GetIndex()[0] + rightLargest.GetSize()[0] - 2);
if (ul[1] > (unsigned int) (rightLargest.GetIndex()[1] + rightLargest.GetSize()[1] - 2)) ul[1] = (
rightLargest.GetIndex()[1] + rightLargest.GetSize()[1] - 2);
if (ul[0] > static_cast<IndexValueType>(rightLargest.GetIndex()[0] + rightLargest.GetSize()[0] - 2))
ul[0] = (rightLargest.GetIndex()[0] + rightLargest.GetSize()[0] - 2);
if (ul[1] > static_cast<IndexValueType>(rightLargest.GetIndex()[1] + rightLargest.GetSize()[1] - 2))
ul[1] = (rightLargest.GetIndex()[1] + rightLargest.GetSize()[1] - 2);
ur = ul;
ur[0] += 1;
......
......@@ -556,9 +556,9 @@ void Multi3DMapToDEMFilter<T3DImage, TMaskImage, TOutputDEMImage>::ThreadedGener
InputInternalPixelType regionLong2 = pointRef[0] + size[0] * step[0];
InputInternalPixelType regionLat2 = pointRef[1] + size[1] * step[1];
InputInternalPixelType minLong = std::min(regionLong1, regionLong2);
InputInternalPixelType minLat = std::min(regionLat1, regionLat2);
InputInternalPixelType maxLong = std::max(regionLong1, regionLong2);
InputInternalPixelType maxLat = std::max(regionLat1, regionLat2);
// InputInternalPixelType minLat = std::min(regionLat1, regionLat2);
// InputInternalPixelType maxLong = std::max(regionLong1, regionLong2);
// InputInternalPixelType maxLat = std::max(regionLat1, regionLat2);
TOutputDEMImage * tmpDEM = NULL;
AccumulatorImageType *tmpAcc = NULL;
......
......@@ -199,16 +199,6 @@ HaralickTexturesImageFunction<TInputImage, TCoordRep>
pixelVarianceSquared = 1.;
}
//Initalize texture variables;
PixelValueType energy = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType entropy = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType correlation = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType inverseDifferenceMoment = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType inertia = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType clusterShade = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType clusterProminence = itk::NumericTraits< PixelValueType >::Zero;
PixelValueType haralickCorrelation = itk::NumericTraits< PixelValueType >::Zero;
//Compute textures
constVectorIt = glcVector.begin();
while( constVectorIt != glcVector.end())
......
......@@ -90,7 +90,7 @@ ReduceSpectralResponse<TSpectralResponse , TRSR>
{
PrecisionType lambda1 = (*(it-1)).first;
PrecisionType lambda2 = (*it).first;
PrecisionType deltaLambda = lambda2-lambda1;
// PrecisionType deltaLambda = lambda2-lambda1;
ValuePrecisionType rsr1 = (*(it-1)).second;
ValuePrecisionType rsr2 = (*it).second;
ValuePrecisionType spectrum1 = (*m_InputSpectralResponse)(lambda1);
......
......@@ -104,7 +104,7 @@ protected:
private:
virtual OGRSpatialReference* DoDefineNewLayerSpatialReference(otb::ogr::Layer const& source) const
virtual OGRSpatialReference* DoDefineNewLayerSpatialReference(otb::ogr::Layer const& itkNotUsed(source)) const
{
return m_osr.get();
}
......
......@@ -265,7 +265,7 @@ AnyListFieldList_t prepareNewFields(
OGRFeatureDefn /*const*/& defn, otb::ogr::Layer & destLayer)
{
AnyListFieldList_t fields;
for (size_t i=0, N=defn.GetFieldCount(); i!=N; ++i)
for (int i=0, N=defn.GetFieldCount(); i!=N; ++i)
{
const char* name = defn.GetFieldDefn(i)->GetNameRef();
OGRFieldType type = static_cast<OGRFieldType>(-1);
......
......@@ -137,14 +137,11 @@ int main(int argc, char* argv[])
// Software Guide : BeginCodeSnippet
typedef PointSetType::PointType PointType;
typedef std::pair<PointType, PointType> MatchType;
typedef std::vector<MatchType> MatchVectorType;
typedef EuclideanDistanceMetricMatchingFilterType::LandmarkListType
LandmarkListType;
typedef PointSetType::PointsContainer PointsContainerType;
typedef PointsContainerType::Iterator PointsIteratorType;
typedef PointSetType::PointDataContainer PointDataContainerType;
typedef PointDataContainerType::Iterator PointDataIteratorType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
......
......@@ -48,7 +48,7 @@
// Software Guide : EndCodeSnippet
#include "otbImageToSIFTKeyPointSetFilter.h"
int main(int argc, char* argv[])
int main(int itkNotUsed(argc), char* argv[])
{
const char * infname = argv[1];
const char * outfname = argv[2];
......
......@@ -128,10 +128,6 @@ int main(int argc, char* argv[])
typedef EuclideanDistanceMetricMatchingFilterType::LandmarkListType
LandmarkListType;
typedef PointSetType::PointsContainer PointsContainerType;
typedef PointsContainerType::Iterator PointsIteratorType;
typedef PointSetType::PointDataContainer PointDataContainerType;
typedef PointDataContainerType::Iterator PointDataIteratorType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
......@@ -318,8 +314,6 @@ int main(int argc, char* argv[])
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef DisplacementSourceType::LandmarkContainerPointer
LandmarkContainerPointer;
typedef DisplacementSourceType::LandmarkContainer
LandmarkContainerType;
typedef DisplacementSourceType::LandmarkPointType LandmarkPointType;
......
......@@ -120,8 +120,6 @@ int main(int argc, char * argv[])
// Software Guide : BeginCodeSnippet
typedef PointSetType::PointsContainer PointsContainerType;
typedef PointsContainerType::Iterator PointsIteratorType;
typedef PointSetType::PointDataContainer PointDataContainerType;
typedef PointDataContainerType::Iterator PointDataIteratorType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
......
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