Skip to content

Commit d2b37e8

Browse files
authored
Merge pull request #9 from InteractiveGraphicsLab/DevCurveBasedDeformation
Add curve-based deformation
2 parents 721d221 + 742c794 commit d2b37e8

324 files changed

Lines changed: 7028 additions & 2576 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.c text working-tree-encoding=UTF-8
2+
*.h text working-tree-encoding=UTF-8
3+
*.cpp text working-tree-encoding=UTF-8
4+
*.hpp text working-tree-encoding=UTF-8
5+
*.glsl text working-tree-encoding=UTF-8
6+
*.resx text working-tree-encoding=UTF-8

3rdParty/dcmtk/include/dcmtk/config/osconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ typedef unsigned long ulong;
828828

829829
#ifdef _MSC_VER
830830
#if _MSC_VER <= 1200 /* Additional settings for VC6 and older */
831-
/* disable warning that return type for 'identifier::operator E' is not a UDT or reference to a UDT */
831+
/* disable warning that return type for 'identifier::operator ' is not a UDT or reference to a UDT */
832832
#pragma warning( disable : 4284 )
833833
#define HAVE_OLD_INTERLOCKEDCOMPAREEXCHANGE
834834
#else

3rdParty/dcmtk/include/dcmtk/dcmdata/dcdirrec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ class DcmDirectoryRecord : public DcmItem
384384
*/
385385
virtual void setRecordsOriginFile(const char *fname);
386386

387-
/// get the filename from which this directory record was read from, NULL íf not set
387+
/// get the filename from which this directory record was read from, NULL not set
388388
virtual const char* getRecordsOriginFile();
389389

390390
/// get the offset in file of this directory record

3rdParty/dcmtk/include/dcmtk/ofstd/offile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class OFFile
167167
/** associates a stream with the existing file descriptor, fildes. The mode
168168
* of the stream (one of the values "r", "r+", "w", "w+", "a", "a+") must be
169169
* compatible with the mode of the file descriptor. The file position
170-
* indicator of the new stream is set to that belong­ ing to fildes, and the
170+
* indicator of the new stream is set to that belongュ ing to fildes, and the
171171
* error and end-of-file indicators are cleared. Modes "w" or "w+" do not
172172
* cause truncation of the file. The file descriptor is not dup'ed, and
173173
* will be closed when the stream created by fdopen is closed. The result of

3rdParty/dcmtk/tdcmtk.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ bool t_getTagValInt(DcmDataset *DataSet, DcmTagKey tagKey, int &value)
3737

3838
double getValueInsideKakko(const std::string s)
3939
{
40-
//以下のようなstringにおいて、[ ]内の、1つめの数字を返す。(2つ目の数字は無視)
41-
//例1
40+
//以下のようなstringにおいて、[ ]内の、1つめの数字を返す。(2つ目の数字は無視)
41+
//例1
4242
// (0018,0050) DS [0.5] # 4, 1 SliceThickness
43-
//例2
43+
//例2
4444
// (0028,0030) DS [0.468\0.468] # 12, 2 PixelSpacing
4545
const int startPos = (int) s.find("[") +1;
4646
const int kakkoToji = (int) s.find("]");

3rdParty/dcmtk/tdcmtk.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Tdcmtk
5454

5555

5656
//data should be allocated
57-
//ŽQlhttp://radroom.web.fc2.com/dicom/image.html
57+
//蜿り€ドttp://radroom.web.fc2.com/dicom/image.html
5858
template<class T>
5959
bool getPixelsAs(T* data)
6060
{
381 KB
Binary file not shown.
471 KB
Binary file not shown.
288 KB
Binary file not shown.
413 KB
Binary file not shown.

0 commit comments

Comments
 (0)