File: antsTransformInfo.cxx

package info (click to toggle)
ants 2.5.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,672 kB
  • sloc: cpp: 85,685; sh: 15,850; perl: 863; xml: 115; python: 111; makefile: 68
file content (188 lines) | stat: -rw-r--r-- 6,520 bytes parent folder | download
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
/*=========================================================================
 *
 *  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 "antsUtilities.h"

#include "antsCommandLineParser.h"
#include "itkTransformFileReader.h"
#include "itkMatrixOffsetTransformBase.h"
#include "itkCompositeTransform.h"


#include <sstream>

namespace ants
{


// entry point for the library; parameter 'args' is equivalent to 'argv' in (argc,argv) of commandline parameters to
// 'main()'
int
antsTransformInfo(std::vector<std::string> args, std::ostream * /*out_stream = nullptr */)
{
  // put the arguments coming in as 'args' into standard (argc,argv) format;
  // 'args' doesn't have the command name as first, argument, so add it manually;
  // 'args' may have adjacent arguments concatenated into one argument,
  // which the parser should handle
  args.insert(args.begin(), "antsTransformInfo");

  int     argc = args.size();
  char ** argv = new char *[args.size() + 1];
  for (unsigned int i = 0; i < args.size(); ++i)
  {
    // allocate space for the string plus a null character
    argv[i] = new char[args[i].length() + 1];
    std::strncpy(argv[i], args[i].c_str(), args[i].length());
    // place the null character in the end
    argv[i][args[i].length()] = '\0';
  }
  argv[argc] = nullptr;
  // class to automatically cleanup argv upon destruction
  class Cleanup_argv
  {
  public:
    Cleanup_argv(char ** argv_, int argc_plus_one_)
      : argv(argv_)
      , argc_plus_one(argc_plus_one_)
    {}

    ~Cleanup_argv()
    {
      for (unsigned int i = 0; i < argc_plus_one; ++i)
      {
        delete[] argv[i];
      }
      delete[] argv;
    }

  private:
    char **      argv;
    unsigned int argc_plus_one;
  };
  Cleanup_argv cleanup_argv(argv, argc + 1);

  using ReadScalarType = double;

  for (int i = 1; i < argc; i++)
  {

    std::cout << "Transform file: " << argv[i] << std::endl;

    using TransformReaderType = itk::TransformFileReaderTemplate<ReadScalarType>;
    auto reader = TransformReaderType::New();

    reader->SetFileName(argv[i]);
    try
    {
      reader->Update();
    }
    catch (const itk::ExceptionObject & excp)
    {
      std::cerr << "Error while reading the transform file" << std::endl;
      std::cerr << excp << std::endl;
      std::cerr << "[FAILED]" << std::endl;
      return EXIT_FAILURE;
    }

    const TransformReaderType::TransformListType * transforms = reader->GetTransformList();
    std::cout << "Number of transforms = " << transforms->size() << std::endl;

    unsigned int Dimension = transforms->front()->GetInputSpaceDimension();


    for (auto it = transforms->begin(); it != transforms->end(); ++it)
    {

      if (Dimension == 3)
      {
        using ReadCompositeTransformType3D = itk::CompositeTransform<ReadScalarType, 3>;
        if (!strcmp((*it)->GetNameOfClass(), "CompositeTransform"))
        {
          ReadCompositeTransformType3D::Pointer compositeRead =
            static_cast<ReadCompositeTransformType3D *>((*it).GetPointer());
          const ReadCompositeTransformType3D::TransformQueueType & compositeTransformQueue =
            compositeRead->GetTransformQueue();
          std::cout << "Number of transforms in composite queue = " << compositeTransformQueue.size() << std::endl;

          for (auto it2 = compositeTransformQueue.begin(); it2 != compositeTransformQueue.end(); ++it2)
          {

            using TransformType3D = itk::MatrixOffsetTransformBase<double, 3, 3>;
            TransformType3D * itktx3d = dynamic_cast<TransformType3D *>((*it2).GetPointer());

            if (itktx3d)
            {
              itktx3d->Print(std::cout);
              std::cout << "Determinant: " << vnl_determinant(itktx3d->GetMatrix().GetVnlMatrix()) << std::endl;
            }
            else
            {
              it2->Print(std::cout);
            }
          }
        }
        else
        {
          using TransformType3D = itk::MatrixOffsetTransformBase<double, 3, 3>;
          TransformType3D * itktx3d = dynamic_cast<TransformType3D *>((*it).GetPointer());
          itktx3d->Print(std::cout);
          std::cout << "Determinant: " << vnl_determinant(itktx3d->GetMatrix().GetVnlMatrix()) << std::endl;
        }
      }
      else if (Dimension == 2)
      {
        using ReadCompositeTransformType2D = itk::CompositeTransform<ReadScalarType, 2>;
        if (!strcmp((*it)->GetNameOfClass(), "CompositeTransform"))
        {
          ReadCompositeTransformType2D::Pointer compositeRead =
            static_cast<ReadCompositeTransformType2D *>((*it).GetPointer());
          const ReadCompositeTransformType2D::TransformQueueType & compositeTransformQueue =
            compositeRead->GetTransformQueue();
          std::cout << "Number of transforms in composite queue = " << compositeTransformQueue.size() << std::endl;

          for (auto it2 = compositeTransformQueue.begin(); it2 != compositeTransformQueue.end(); ++it2)
          {

            using TransformType2D = itk::MatrixOffsetTransformBase<double, 2, 2>;
            TransformType2D * itktx2d = dynamic_cast<TransformType2D *>((*it2).GetPointer());

            if (itktx2d)
            {
              itktx2d->Print(std::cout);
              std::cout << "Determinant: " << vnl_determinant(itktx2d->GetMatrix().GetVnlMatrix()) << std::endl;
            }
            else
            {
              it2->Print(std::cout);
            }
          }
        }
        else
        {
          using TransformType2D = itk::MatrixOffsetTransformBase<double, 2, 2>;
          TransformType2D * itktx2d = dynamic_cast<TransformType2D *>((*it).GetPointer());
          itktx2d->Print(std::cout);
          std::cout << "Determinant: " << vnl_determinant(itktx2d->GetMatrix().GetVnlMatrix()) << std::endl;
        }
      }
    }
  }

  return EXIT_SUCCESS;
}

} // namespace ants