[Insight-users] RGB images from Visible Human Dataset
Stefan Lindenau
stefan . lindenau at gmx . de
Thu, 30 Oct 2003 14:01:26 -0500
This is a multi-part message in MIME format.
--------------070102060308010309020809
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Luis Ibanez wrote:
> Please find attched to this email the file I used.
>
I have compiled the source you sent myself and the generated PNG is
still as described before. The thumbnail mechanism of Windows and The
Gimp show both the same result when opening the PNG. I cannot verify if
the RAW file is in the right format since I have not found a viewer for
this format, but I have downloaded the files directly from the NLM ftp
server so it should be RGB.
> Let us know what kind of platform are you using,
> and the version of ITK that you are working with.
I am using:
Windows 2000 SP2
Visual C++ 6.0
CMake 1.8 patch 1
Insight Toolkit 1.4.0
I have attached my CMakeLists.txt but I am quite sure that this file is
alright.
Thank you,
Stefan
--------------070102060308010309020809
Content-Type: text/plain;
name="CMakeLists.txt"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="CMakeLists.txt"
#only for initial build of project file sets!
#pls use VC6 Workspace files when available!
PROJECT("ITK Kitware Code")
SET( ITKProcessor_SRCS
VisibleHuman.cxx
)
#find the paths to the ITK lib
FIND_PACKAGE(ITK)
IF(ITK_FOUND)
INCLUDE(${ITK_USE_FILE})
ELSE(ITK_FOUND)
MESSAGE(FATAL_ERROR
"Cannot build InsightApplications without ITK. Please set
ITK_DIR.")
ENDIF(ITK_FOUND)
#very important to show the ITK libs to the linker!
LINK_LIBRARIES (
${ITK_LIBRARIES}
)
ADD_EXECUTABLE(ITKCmdLine VisibleHuman.cxx)
--------------070102060308010309020809--