Questions tagged [mitk]

The Medical Imaging Interaction Toolkit (MITK)

The Medical Imaging Interaction Toolkit (MITK) is a free open-source software system for development of interactive medical image processing software. MITK combines the Insight Toolkit (ITK) and the Visualization Toolkit (VTK) with an application framework. As a toolkit, MITK offers those features that are relevant for the development of interactive medical imaging software covered neither by ITK nor VTK.

29 questions
0
votes
0 answers

How to fix this issue on ubuntu 18.04 [collect2: error: ld returned 1 exit status]?

I am trying to compile application based on mitk on ubuntu 18.04. I got a strange linker issue concerning mitk/itk : [ 16%] Built target MitkCore [ 16%] Built target MitkTestingHelper [ 16%] Built target MitkCommandLine [ 17%] Built…
agasim
  • 183
  • 1
  • 1
  • 4
0
votes
1 answer

MITK Segmentation draw Rectangle

I have to segment a few things in a dataset I have (.nrrd-file) by drawing a rectangle around the area of interest and saving the segments (also as .nrrd-files). I tried everything in the Segmentation-Tool that comes with MITK but I cannot seem to…
DrSkyer
  • 171
  • 1
  • 2
  • 10
0
votes
1 answer

how to save images in png using MITK

Hi i am uisng MITK Workbench 2016.11.0. I want to save image in PNG or JPEG or TIFF using MITK. But there are only 5 options available: NRRD, NIFTI, VTK, VTK LEGACY IMAGE.
Hitesh
  • 1,285
  • 6
  • 20
  • 36
0
votes
1 answer

How to use CUDA in MITK plugin?

I am trying to use CUDA in MITK platform. The MITK platform that I am using is 2014 version which is not supporting CUDA; however, i found a reply which shows a solution but its not working for me either. According to the Cmake structure of MITK, if…
Ehsan
  • 517
  • 1
  • 7
  • 32
0
votes
1 answer

CMake build error: Qt5PrintSupportConfig.cmake missing

I am trying to build build a C++ toolkit called MITK with CMake. But I am getting this Qt5 related error. I am using the open source version of Qt 5.7.1. I can't find any file with the name Qt5PrintSupportConfig.cmake inside the Qt5 folder. The…
Senyokbalgul
  • 1,058
  • 4
  • 13
  • 37
0
votes
1 answer

Why are morphological operations on 3D images so slow in Matlab?

I am running Matlab 2016a and use imopen on a 301x301x271 logical image. Example code: A = randi([0 1], 301, 301, 271); A = logical(A); se = strel('sphere',12); tic; A = imopen(A, se); toc; Elapsed time is 294.313918 seconds. Using all 4 CPU cores.…
0
votes
3 answers

How to implement a splashscreen in a Poco application

I find a way to catch an event/message which notify the "application loaded" event, to be able to close a splashscreen. Maybe Poco implements it directly but i haven't found any clue in the Application class documentation or code.
Arcadien
  • 2,258
  • 16
  • 26
0
votes
1 answer

Display Dicom image in QLabel/QGraphicsView

I'm new to MITK and not an advanced programmer. I need help displaying a DICOM image in a QT Widget. I am using Visual Studio 2013, MITK, and QT5 to develop a program, that is supposed to open and view DICOM images. The user browses an image which…
user39458
  • 1
  • 3
0
votes
1 answer

How to add the installation prefix of "MITK"

In Windows 7 x64, VisualStudio 2010, I need to know how to set Cmake path. There is an error message which says Add the installation prefix of "MITK" to CMAKE_PREFIX_PATH or set "MITK_DIR" to a directory containing one of the above files. Do you…
Hyunwoo Park
  • 31
  • 1
  • 5
0
votes
1 answer

MITK Build Error

I Build manually Qt 4.7.4 64bit and use cmake-gui in window7 make MITK source. configure.exe -debug-and-release -qt-sql-sqlite -no-multimedia -no-audio-backend -no-phonon -no-phonon-backend -no-declarative -mp -nomake examples -nomake demos -nomake…
0
votes
1 answer

Where is my cloned MITK?

I'm going through this tutorial. I have performed the following command to clone MITK: git clone http://git.mitk.org/MITK.git I'm using a Windows machine. Where can I find the cloned directory on my machine? Thanks.
user3797518
0
votes
1 answer

How to add header file of MITK in my CPP program of VS 2010?

I have compiled and build using CMAke and VS 2010. But now I want to try some basic program using MITk library, but I can't find where is the header file, DLL, Lib file? Same as like in OpenCv when we compile and build it, then in install folder we…
Jay
  • 1,235
  • 10
  • 28
  • 49
0
votes
1 answer

installed Qt5 but need Qt4 for MITK now

I have installed Qt5 with Creator on my Windows machine. Now I need Qt4.8 for MITK toolkit. What I should do? I have downloaded the qt-win-opensource-4.8.5-vs2010.exe. It says it is the Qt libraries. If I install it, will it mess up my development…
5YrsLaterDBA
  • 33,370
  • 43
  • 136
  • 210
-1
votes
1 answer

Segmentation Fault on FloatType Images ITK

I get a segmentation fault when trying to display or apply any filter to an ikt::Image with float pixel types. I can use this same code (swapping the pixel types) to open an image with unsigned char pixel type and it works just fine. Both images I…
Pablo Duque
  • 383
  • 2
  • 20
1
2