File: GeDti2Handler.h

package info (click to toggle)
mriconvert 1%3A2.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,488 kB
  • sloc: cpp: 17,029; makefile: 11
file content (30 lines) | stat: -rw-r----- 519 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
/// GeEpiHandler.h
/**
    */

#ifndef GE_DTI2_HANDLER_H
#define GE_DTI2_HANDLER_H

#include "GeEpiHandler.h"

namespace jcs {
  ///
  /**
    */
  class GeDti2Handler : public GeEpiHandler
  {
  public:
    GeDti2Handler(const std::string& seriesUid);
    virtual GradientInfo GetGradientInfo();
    virtual bool IsDti() const { return true; }

  protected:
    virtual VolListType ReadVolIds(DicomFile& file);

  private:
    std::vector<std::vector<double> > gradients;

  };
}

#endif