File: itkCSVArray2DFileReaderWriterTest.cxx

package info (click to toggle)
insighttoolkit4 4.13.3withdata-dfsg2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 491,256 kB
  • sloc: cpp: 557,600; ansic: 180,546; fortran: 34,788; python: 16,572; sh: 2,187; lisp: 2,070; tcl: 993; java: 362; perl: 200; makefile: 133; csh: 81; pascal: 69; xml: 19; ruby: 10
file content (201 lines) | stat: -rw-r--r-- 6,009 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*=========================================================================
 *
 *  Copyright Insight Software Consortium
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0.txt
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 *=========================================================================*/
#include "itkCSVArray2DFileReader.h"
#include "itkCSVNumericObjectFileWriter.h"
#include <iostream>
#include "itkMath.h"

const double epsilon = 1e-20;

// function for comparing matrices
template <typename T>
bool testArray(const itk::Array2D<T> & m1, const itk::Array2D<T> & m2)
{
  bool pass = true;

  if ( m1.rows() != m2.rows() || m1.cols() != m2.cols() )
    {
    pass = false;
    return pass;
    }

  for (unsigned int i = 0; i < m1.rows(); i++)
    {
    for (unsigned int j = 0; j < m1.cols(); j++)
      {
      // We need to test whether m1 is a NaN and/or m2 is a NaN.
      // If they are both NaN, then they are the same.
      // If only one is NaN, then the comparison should fail.
      // Without such a test, the comparison of the difference being greater than epsilon will pass.
      // The equality and inequality predicates are non-signaling so x = x returning false can be used to test if x is a quiet NaN.
      bool m1_isNaN = (itk::Math::ExactlyEquals(m1[i][j], m1[i][j]));
      bool m2_isNaN = (itk::Math::ExactlyEquals(m2[i][j], m2[i][j]));
      if( (m1_isNaN && !m2_isNaN) || (!m1_isNaN && m2_isNaN) )
      {
        pass = false;
        return pass;
      }
      if (std::fabs(m1[i][j] - m2[i][j]) > epsilon)
        {
        pass = false;
        return pass;
        }
      }
    }
  return pass;
}

int itkCSVFileReaderWriterTest_Func(int argc, char *argv[], bool headers)
{
  double nan = std::numeric_limits<double>::quiet_NaN();

  typedef itk::Array2D<double> MatrixType;
  const unsigned int ARows = 3;
  const unsigned int ACols = 6;
  MatrixType matrix(ARows,ACols);
  matrix[0][0] = nan;
  matrix[0][1] = 1e+09;
  matrix[0][2] = 5;
  matrix[0][3] = 9;
  matrix[0][4] = 6.1;
  matrix[0][5] = nan;
  matrix[1][0] = 99;
  matrix[1][1] = 0;
  matrix[1][2] = 3.75;
  matrix[1][3] = 0.008;
  matrix[1][4] = nan;
  matrix[1][5] = nan;
  matrix[2][0] = 1;
  matrix[2][1] = 2.2;
  matrix[2][2] = 9;
  matrix[2][3] = 5.6;
  matrix[2][4] = nan;
  matrix[2][5] = 3e+10;

  // write out the array2D object
  typedef itk::CSVNumericObjectFileWriter<double, ARows, ACols> WriterType;
  WriterType::Pointer writer = WriterType::New();

  if (argc < 2 )
    {
    std::cout << "Wrong number of arguments given." << std::endl;
    return EXIT_FAILURE;
    }
  const std::string filename = argv[1];
  writer->SetFileName( filename );
  writer->SetInput( &matrix );

  if (headers)
    {
    std::vector<std::string> ColumnHeaders;
    std::vector<std::string> RowHeaders;
    ColumnHeaders.push_back( "itkArray2DObject" );
    ColumnHeaders.push_back( "Col1" );
    ColumnHeaders.push_back( "Col2" );
    ColumnHeaders.push_back( "Col3" );
    ColumnHeaders.push_back( "Col4" );
    ColumnHeaders.push_back( "Col5" );
    ColumnHeaders.push_back( "Col6" );
    RowHeaders.push_back( "Row1" );
    RowHeaders.push_back( "Row2" );
    RowHeaders.push_back( "Row3" );
    writer->SetRowHeaders( RowHeaders );
    writer->SetColumnHeaders( ColumnHeaders );
    }

  try
    {
    writer->Write();
    }
  catch (itk::ExceptionObject& exp)
    {
    std::cerr << "Exception caught!" << std::endl;
    std::cerr << exp << std::endl;
    return EXIT_FAILURE;
    }

  typedef itk::CSVArray2DFileReader<double > ReaderType;
  ReaderType::Pointer reader = ReaderType::New();
  reader->SetFileName( filename );
  reader->SetFieldDelimiterCharacter(',');
  reader->SetStringDelimiterCharacter('"');
  reader->SetHasColumnHeaders(headers);
  reader->SetHasRowHeaders(headers);
  reader->UseStringDelimiterCharacterOff();

  // read the file
  try
    {
    reader->Update();
    }
  catch (itk::ExceptionObject& exp)
    {
    std::cerr << "Exception caught!" << std::endl;
    std::cerr << exp << std::endl;
    return EXIT_FAILURE;
    }

  reader->Print(std::cout);

  typedef itk::CSVArray2DDataObject<double> DataFrameObjectType;
  DataFrameObjectType::Pointer dfo = reader->GetOutput();
  MatrixType test_matrix = dfo->GetMatrix();

  std::cout << "Actual array: " << std::endl;
  std::cout << matrix << std::endl;
  std::cout << "Test array: " << std::endl;
  std::cout << test_matrix;

  if ( !testArray(matrix,test_matrix) )
    {
    std::cerr << "Matrices are not the same! Test Failed!" << std::endl;
    return EXIT_FAILURE;
    }

  return EXIT_SUCCESS;
}

/** This test illustrates basic use for writing an Array2D object to a csv file
 * and reading from that file into an Array2D data frame object. There are two
 * examples: one that writes and reades a file without row and column headers,
 * and one that does. */

int itkCSVArray2DFileReaderWriterTest(int argc, char *argv[])
{
  if ( argc < 2 )
    {
    std::cerr << "Usage: " << argv[0] << " Filename" << std::endl;
    return EXIT_FAILURE;
    }

  // test reading and writing data without headers
  std::cout << std::endl << "Test Without Headers" << std::endl;
  int fail1 = itkCSVFileReaderWriterTest_Func(argc,argv, false);

  // test reading and writing data with headers
  std::cout << std::endl << "Test With Headers." << std::endl;
  int fail2 = itkCSVFileReaderWriterTest_Func(argc,argv, true);

  if ( fail1 || fail2 )
    {
    std::cerr << "Test fails!" << std::endl;
    return EXIT_FAILURE;
    }

 return EXIT_SUCCESS;
}