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
project( reslice ) | |
cmake_minimum_required( VERSION 2.6 ) | |
find_package( GDCM REQUIRED ) | |
include( ${GDCM_USE_FILE} ) | |
add_executable( reslice reslice.cxx ) | |
target_link_libraries( reslice vtkgdcm ${VTK_LIBRARIES} ) |
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
#!/usr/bin/python | |
# | |
# Delete the label image from an Aperio SVS file. | |
# | |
# Copyright (c) 2012-2013 Carnegie Mellon University | |
# All rights reserved. | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as | |
# published by the Free Software Foundation, version 2.1. |