Page MenuHomePhabricator

MITK Tutorial Step3 Step5 Step6 Step7 Step8
Closed, ResolvedPublic

Description

Step3, 5-8 all produce some problem. The file Pic3D.nrrd can not be opened.

The Ouput creates the message from fprintf shown below, so dataNodes is empty.

mitk::StandaloneDataStorage::SetOfObjects* dataNodes = mitk::IOUtil::Load(argv[i],*ds);

if(dataNodes->empty())
{
  fprintf( stderr, "Could not open file %s \n\n", argv[i] );
  exit(2);
}

Event Timeline

User wirkert has pushed new remote branch:

bug-18753-fix_tutorial

Fixed the bug, but still tutorials not work as expected (at least they don't crash anymore). Need release flag to be able to merge the fix.

[b98852]: Merge branch 'bug-18753-v2_fix_tutorial'

Merged commits:

2015-04-08 13:45:53 Sebastian Wirkert [816ed8]
Merge branch 'bug-18753-fix_tutorial' into bug-18753-v2_fix_tutorial


2015-04-01 16:37:04 Sebastian Wirkert [2ab931]
Removed deprecated MITK_TUTORIAL switch.


2015-04-01 16:35:51 Sebastian Wirkert [92b774]
Use smartpointers instead of pointers. Usage of pointers led to destruction of objects in DataStorage.