Skip to content
Snippets Groups Projects
Commit cdc8c5cc authored by Guillaume Borrut's avatar Guillaume Borrut
Browse files

STYLE. Comment std::cout

parent 97698cb7
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,8 @@ public:
itkSetMacro(Mode,int);
itkGetMacro(Mode,int);
/** Set the gain */
itkSetMacro(Gain,double);
itkSetMacro(Gain,double);
itkGetMacro(Gain,double);
/** Force the copolar mode */
void ForceCoPolar();
/** Force the crosspolar mode */
......
......@@ -171,7 +171,7 @@ MultiChannelsPolarimetricSynthesisFilter<TInputImage,TOutputImage,TFunction>
inputIt.GoToBegin();
outputIt.GoToBegin();
int val = m_ArchitectureType->GetArchitectureType();
ArchitectureType val = m_ArchitectureType->GetArchitectureType();
// Computation with 4 channels
switch (val)
......@@ -277,7 +277,7 @@ MultiChannelsPolarimetricSynthesisFilter<TInputImage,TOutputImage,TFunction>
::VerifyAndForceInputs()
{
int val = m_ArchitectureType->GetArchitectureType();
ArchitectureType val = m_ArchitectureType->GetArchitectureType();
switch(val)
{
......@@ -324,8 +324,9 @@ MultiChannelsPolarimetricSynthesisFilter<TInputImage,TOutputImage,TFunction>
{
int NumberOfImages = this->GetInput()->GetNumberOfComponentsPerPixel();
std::cout<<"BeforeThreadedGenerateData : NbOfImages"<<NumberOfImages<<std::endl;
///std::cout<<"BeforeThreadedGenerateData : NbOfImages"<<NumberOfImages<<std::endl;
//std::cout<<"BeforeThreadedGenerateData : H : "<<GetEmissionH()<<" V : "<<GetEmissionV()<<std::endl;
// First Part. Determine the kind of architecture of the input picture
m_ArchitectureType->DetermineArchitecture(NumberOfImages,GetEmissionH(),GetEmissionV());
......
......@@ -105,7 +105,7 @@ std::cout<<"case2 : "<<std::endl;
if (EmissionH && !EmissionV )
{
SetArchitectureType(HH_HV);
std::cout<<"SET HH HV !! "<<std::endl;
std::cout<<"SET HH HV !! "<<std::endl;
}
else if (!EmissionH && EmissionV )
{
......
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