ITK is an open-source, cross-platform system that provides developers with an extensive suite of software tools for image analysis. Developed through extreme programming methodologies, ITK employs leading-edge algorithms for registering and segmenting multidimensional data. The goals for ITK ...
5
votes
2answers
152 views
Complex shapes recognition
I need to complete the demo project which aims to recognize teeth on the xray image. I'm not familiar with the topic and I'm not sure which approach would be preferrable in this case. (I was thinking ...
3
votes
2answers
305 views
DICOM Image is too dark with ITK
i am trying to read an image with ITK and display with VTK.
But there is a problem that has been haunting me for quite some time.
I read the images using the classes itkGDCMImageIO and ...
2
votes
1answer
70 views
Why does the Python ITK PyBuffer not accept my numpy array?
I am using python 2.6 with ITK wrappers (from PythonXY 2.6.6.2). I am trying to send a 3D image from numpy/scipy to itk for processing.
import itk
imageType = itk.Image.F3
buf = scipy.zeros( ...
2
votes
1answer
50 views
Where can I find the SimpleITK documentation and reference information?
I am interested in trying to use SimpleITK to solve my imaging problem. Can you please tell me where the documentation and training materials are?
2
votes
1answer
91 views
How can I incorporate libraries into my executable, so that users don't need to have the DLLs?
I'm developing software using ITK and VTK, and it's all going very well. However, I would like to deploy the software onto end-user machines that do not have ITK or VTK installed. When I build the ...
2
votes
2answers
279 views
Going from numpy array to itk Image
I have a numpy array and want to convert it into an ITK image for further processing. How do I do this without using the PyBuffer extension to WrapITK. I can't use that because I get a bunch of ...
1
vote
1answer
34 views
ITK strange error after adding and compiling
I just installed ITK for use on iOS and when I'm compiling it I get these weird errors.
When installing ITK i went through this document. All fine and ok at the end but then I strted working on the ...
1
vote
1answer
113 views
Not Reading DICOM Image Series Correctly with ITK
I want to read a Series of DICOM image to convert them into a 3D image using ITK. I follow the example in the documentation: " Examples/IO/DicomSeriesReadImageWrite2.cxx" . But I am still having ...
1
vote
3answers
106 views
Is there any complete guide to the building and installation of ITK 4.0?
I want to use the python bindings with the ITK 4.0. Is there any complete guide that how to build and install and correctly set the options for the wrappers? I am using Linux 11.04.
Thanks a lot.
1
vote
2answers
64 views
Erroneous Results calculating the gradient of an image with ITK
In the header file, I declare all of this types, The “Gradient ImageFilter” is for calculate the gradient of a 2D image, and the “VectorIndexSelectionCastImageFilter” is for selecting the ’x’ and ‘y’ ...
1
vote
2answers
67 views
itk x and y component of the gradient of an image
I would like to calculate the x and y component of the gradient of a 2D image. As in MATLAB is calculated with [dT2,dT1] = gradient(T);
ReaderType::Pointer T_g // image
FilterType::Pointer ...
1
vote
1answer
110 views
Exception when execute update() of an itk::writertype
I have an image in an “itk::image::Pointer salida”. I have checked that it has the correct pixelvalues. I want to save the image into a file, but in the last line, it gives me an exception and now I ...
1
vote
1answer
78 views
ITK set color window/color level
i have a question about something that i am having a hard time finding answers on google: color level and color window.
I am using itkIntensityWindowingImageFilter1 to set both of them, but i really ...
1
vote
1answer
65 views
Pixelvalues of an image in a 2D double* pointer for calculating FFT_2D
I want to calculate the FFT of an image, I read the image, and the ITK SmartPointer is called “imagen”.
The input of the function I use for calculating the FFT (fftw_plan_dft_r2c_2d) need a 2D double* ...
1
vote
1answer
236 views
ERROR LNK2019 ( Unresolved external symbol) IN VS2008 WITH ITK AND FFTW
I am performing a project with ITK for processing medical images. After a lot of work there is no further compilation errors, but in the linking process I am having the following info :
...
1
vote
2answers
126 views
How do I interpolate over tif file image using itk?
This only goes out to those who knows the itk package well.
I just started using itk package recently to try to play with images using it, and I have a question.
I have two tif image files(dicom ...
1
vote
2answers
232 views
ITK Insight Toolkit - Slow Canny Filter
I am using the Canny Edge Detection of the ITK toolkit.
Compared to the OpenCV Canny Detection it seems to be pretty slow. My estimation is 0.5 sec for an image of size 144x176.
Or should the ...
0
votes
0answers
18 views
ITK compile issues on IOS5.0
I am currently trying to compile ITK on an IOS system.
I downloaded InsightToolkit-3.20.1 from http://www.itk.org/ITK/ resources/software.html.
Then I downloaded cmake-2.8.7 from ...
0
votes
0answers
20 views
GradientFilterType is not working properly in ITK
I am doing medical image-registration with ITK. In the first iteration of my program ( numiter = 1 ), it calculates the gradient from a 'reader' and the result is correct. In the next iteration ( ...
0
votes
0answers
47 views
Need help downloading VTK
I'm trying to build a iOS app which reads DICOM images. I'm fairly new and it all seems a bit confusing ... I cannot find docmentation for the latest ITK build and so on ...
But the main problem I'm ...
0
votes
2answers
96 views
How to connect ITK with VTK?
I'm reading DICOM series using itk and converting them into VTK for visualization purposes. Even though I manage to visualize DICOM series in 3 different windows with 3 different orientations (XY, XZ ...
0
votes
0answers
99 views
VTK 5.8 on XCode 4 (Lion)
I was trying to compile and start with VTK project on my Xcode under OS X
Lion.
I followed the instructions here: http://www.vtk.org/Wiki/Cocoa_VTK to
download and compile vtk using cmake (although I ...
0
votes
1answer
114 views
1D Convolution with Gaussian Kernel using
My goal is to calculate the calculation in each row of a 2D-image ( in the x-direction)
After following the tip from Cory I am trying to use the ‘ConvolutionImageFilter’, and make a kernel with the ...
0
votes
1answer
100 views
1D convolution in each row of an image in the x-direction
I would like to calculate a 1D convolution in each row of an image in the x-direction.
For that I am trying to use the example shown at ...
0
votes
1answer
84 views
Displaying dicom image in iPad using ITK
I would like to display a dicom image in iPad using ITK framework.
After searching a lot, I found that ITK can only be used to display a dicom image on iPad (iOS).
But I didn't find any reference, ...
0
votes
1answer
30 views
'itkSingleValuedCostFunction.h': No such file or directory
I am trying to calculate the mutual information between two images, for that purpose I am using the class ‘MutualInformationImageToImageMetric’. After reading this example : ...
0
votes
0answers
24 views
ConformalFlatteningMeshFilter's output is black… Any ideas
I am trying to use ConformalFlatteningMeshFilter. The output of
the filter is black for my case. Following is the code which has been
used. It is a modified version of the code submitted to the ...
0
votes
0answers
53 views
Inaccuracy in fftw calculation
I am calculating the fft of an image which pixels are double with the FFTW library, for that purpose i am using the library fftw(http://www.fftw.org/) library in Visual Studio 2008 and using ITK ...
0
votes
1answer
83 views
How to create a mesh object in ITK using Python bindings?
I am trying to create a Mesh object in Python. I am using the python bindings which are being installed from the following web page. As far as the c++ code is concerned we can do it as follows
...
0
votes
2answers
119 views
Problem with updating itk image in Qt user interface
I have a problem that I would like to tell you because is about some days that I don’t have new ideas. Thanks in advanced
I have an image pointed with a double* pointer, and I want to translate it ...
0
votes
2answers
133 views
Weird segfault on C++ using ITK class
I been trying to fix this very weird problem since 1 or 2 weeks ago.
I am trying to read DICOM images using ITK and afterwards do some processing.
Problem is, i want to read the images independently ...
0
votes
1answer
328 views
Cocoa app with ITK, VTK to read DICOM file
I have xcode 3.2.6 and Mac OS X 10.6.8, so I've downloaded ITK 3-2.20 and VTK, Cmake 2.8-5.
I have installed ITK and VTK using Cmake, then I created Xcode projects ITK and VTK also using Cmake. I ...
0
votes
1answer
172 views
How to use itkvtkglue to use ITK with VTK?
I wanted to make the example which combines ITK with VTK called IO/ImageFileReader from wiki examples.
I downloaded itkvtkglue, extracted to a folder, configured with cmake and built with visual ...
0
votes
1answer
212 views
Read DICOM using ITK in Xcode
Good day!
Could you please tell me about the process of installation of the ITK.
Of course, I've tried to do it myself, but I have this situation:
I have xcode 3.2.6 and Mac OS X 10.6.8, so I've ...
0
votes
2answers
121 views
Violation access in time compilation (0xC0000005)
The process I want to do is to make the FFT to an image (stored in “imagen”) , and then, multiply it with a filter ‘H’, after that, the inverse FFT will be done also.
The code is shown below:
int ...
0
votes
2answers
81 views
Problem with double precision and smartpointer in ITK
The problem I have is that I open an Image from a GUI using Qt (through the class I created ImageFrame, this class has defined the PixelType as follows:
typedef double PixelType;
typedef ...
0
votes
2answers
108 views
Air in synthetic DICOM
I'm generating a synthetic DICOM image with the Insight Toolkit (using itk::GDCMImageIO) and I've found two problems:
VolView fails loading my DICOM (with the message: Sorry, the file cannot be ...
0
votes
2answers
39 views
What do I put for a ParameterType value in an ITK function call in Python?
I'm trying to do this using the ITK Python bindings:
mi_metric = itk.MutualInformationImageToImageMetric[itk.Image.F3, itk.Image.F3].New()
mi_metric.SetFixedImage(i1)
mi_metric.SetMovingImage(i2)
v = ...
0
votes
2answers
127 views
itk filereader causes access violation exception
I have a problem with an Access Violation Exception.
I am using itk and read a File with it's file reader.
ThreeDImageFloatType* MyClass::loadImage(std::string filename){
const char* cfilename = ...
0
votes
1answer
1k views
cvCanny and float 32 bit (IPL_DEPTH_32F) problem
I have some problems with OpenCVs cvCanny(...) and the Image data types it can handle. Well, maybe you guys/gals know a solution.
I have a 32 bit float image and I want to perform cvCanny on it.
The ...
0
votes
2answers
431 views
Integrate ITK (Insight Toolkit) into own project
i am having problems integrating ITK - Insight Toolkit into another image processing pipeline. ITK itself is a medical image processing toolkit and uses cmake as build system. My image pipeline ...