-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
91 additions
and
17 deletions.
There are no files selected for viewing
Submodule bic-pipelines
updated
3 files
+4 −2 | bin/pipeline_iccmask_stx.pl | |
+5 −3 | bin/pipeline_nlr.pl | |
+16 −7 | bin/standard_pipeline.pl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
### | ||
# -*- cmake -*- | ||
# | ||
# File: FindOpenJPEG.cmake | ||
# | ||
# Original script was copied from: | ||
# http://code.google.com/p/emeraldviewer/source/browse/indra/cmake | ||
# | ||
# $Id$ | ||
### | ||
|
||
# - Find OpenJPEG | ||
# Find the OpenJPEG includes and library | ||
# This module defines | ||
# OPENJPEG_INCLUDE_DIR, where to find openjpeg.h, etc. | ||
# OPENJPEG_LIBRARIES, the libraries needed to use OpenJPEG. | ||
# OPENJPEG_FOUND, If false, do not try to use OpenJPEG. | ||
# also defined, but not for general use are | ||
# OPENJPEG_LIBRARY, where to find the OpenJPEG library. | ||
|
||
FIND_PATH(OPENJPEG_INCLUDE_DIR openjpeg.h | ||
PATHS | ||
/usr/local/include/openjpeg | ||
/usr/local/include | ||
/usr/include/openjpeg | ||
/usr/include | ||
PATH_SUFFIXES | ||
openjpeg-2.1 | ||
DOC "Location of OpenJPEG Headers" | ||
) | ||
|
||
SET(OPENJPEG_NAMES ${OPENJPEG_NAMES} openjpeg) | ||
SET(OPENJPEG_NAMES ${OPENJPEG_NAMES} openjp2) | ||
FIND_LIBRARY(OPENJPEG_LIBRARY | ||
NAMES ${OPENJPEG_NAMES} | ||
PATHS /usr/lib /usr/local/lib | ||
) | ||
|
||
IF (OPENJPEG_LIBRARY AND OPENJPEG_INCLUDE_DIR) | ||
SET(OPENJPEG_LIBRARIES ${OPENJPEG_LIBRARY}) | ||
SET(OPENJPEG_FOUND "YES") | ||
ELSE (OPENJPEG_LIBRARY AND OPENJPEG_INCLUDE_DIR) | ||
SET(OPENJPEG_FOUND "NO") | ||
ENDIF (OPENJPEG_LIBRARY AND OPENJPEG_INCLUDE_DIR) | ||
|
||
|
||
IF (OPENJPEG_FOUND) | ||
IF (NOT OPENJPEG_FIND_QUIETLY) | ||
MESSAGE(STATUS "Found OpenJPEG: ${OPENJPEG_LIBRARIES}") | ||
ENDIF (NOT OPENJPEG_FIND_QUIETLY) | ||
ELSE (OPENJPEG_FOUND) | ||
IF (OPENJPEG_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find OpenJPEG library") | ||
ENDIF (OPENJPEG_FIND_REQUIRED) | ||
ENDIF (OPENJPEG_FOUND) | ||
|
||
MARK_AS_ADVANCED(OPENJPEG_LIBRARY OPENJPEG_INCLUDE_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
diff -ru ITKv3/Utilities/vxl/vcl/vcl_compiler.h ITKv3-patched/Utilities/vxl/vcl/vcl_compiler.h | ||
--- ITKv3/Utilities/vxl/vcl/vcl_compiler.h 2015-02-24 10:54:54.000000000 -0500 | ||
+++ ITKv3-patched/Utilities/vxl/vcl/vcl_compiler.h 2016-07-07 17:40:03.015651756 -0400 | ||
@@ -119,6 +119,8 @@ | ||
# else | ||
# define VCL_GCC_40 | ||
# endif | ||
+# elif (__GNUC__==5) | ||
+# define VCL_GCC_50 | ||
# else | ||
# error "Dunno about this gcc" | ||
# endif | ||
Only in ITKv3-patched/Utilities/vxl/vcl: vcl_compiler.h~ | ||
diff -ru ITKv3/Utilities/vxl/vcl/vcl_new.h ITKv3-patched/Utilities/vxl/vcl/vcl_new.h | ||
--- ITKv3/Utilities/vxl/vcl/vcl_new.h 2015-02-24 10:54:54.000000000 -0500 | ||
+++ ITKv3-patched/Utilities/vxl/vcl/vcl_new.h 2016-07-07 17:42:49.579871279 -0400 | ||
@@ -15,7 +15,7 @@ | ||
# include <new.h> | ||
|
||
// -------------------- gcc with old library | ||
-#elif defined(VCL_GCC) && !defined(GNU_LIBSTDCXX_V3) | ||
+#elif defined(VCL_GCC) && !defined(GNU_LIBSTDCXX_V3) && !defined(VCL_GCC_50) | ||
# include <new.h> | ||
|
||
// -------------------- old MSVC | ||
Only in ITKv3-patched/Utilities/vxl/vcl: vcl_new.h~ |
Submodule minc-widgets
updated
6 files
+30 −0 | mincanon/minc_de-dicomerise | |
+26 −0 | mincanon/minc_de-spierise | |
+109 −0 | mincanon/mincanon | |
+256 −0 | mincanon/mincclean | |
+91 −86 | mincbigaverage/mincbigaverage | |
+24 −16 | volrot/volrot |