Replies: 5 comments 4 replies
-
|
Hi, which data labels / counters do you use for these additional directions? Best regards, |
Beta Was this translation helpful? Give feedback.
-
|
Then you should explore the LogViewer output and try to understand why the recon crashes. |
Beta Was this translation helpful? Give feedback.
-
|
Funny, I happened to stumble over a very similar issue with a (completely) different sequence today. I'm trying to use openrecon with a custom sequence. ICE is very picky about labels being correct and not violating any limits communicated to it earlier. @m-a-x-i-m-z , can you have a look at the Siemens interpreter (v1.5.2) please? if (m_b2D_Mode)
{
if (u_bSwapSlcAndSet)
return MRI_SEQ_SEQU_ERROR; // no swap of counters in the 2D mode
}
else
{
//...
if (u_selDataExportMode == recon2D || u_selDataExportMode == recon3D || u_selDataExportMode == reconSTD || u_selDataExportMode == gadgetron2D)
pSeqExpo->setNSet(arbitrarySBB.getLabelStorage().maxVal(SLC) + 1);
//...
}the way I read this code, if the 2D mode is activated, the number of sets is not communicated to the reconstruction. if (m_b2D_Mode)
{
if (u_bSwapSlcAndSet)
return MRI_SEQ_SEQU_ERROR; // no swap of counters in the 2D mode
if (u_selDataExportMode == recon2D || u_selDataExportMode == recon3D || u_selDataExportMode == reconSTD || u_selDataExportMode == gadgetron2D)
pSeqExpo->setNSet(arbitrarySBB.getLabelStorage().maxVal(SET) + 1);
}
else
{
/...Before I wasn't able to run 2D sequences with multiple sets. With this change the sequences run and ICE reconstructs them. Best |
Beta Was this translation helpful? Give feedback.
-
|
Hi Dario, yes, indeed, we don't set SET dimension size in the 2D mode, good spot! --M. |
Beta Was this translation helpful? Give feedback.
-
|
I've just created an issue to be able to track the problem better. See it here |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I wrote a diffusion weighted EPI sequence with partial Fourier which reconstructs the image on the scanner using ICE STD when I acquire a single volume. However, when I have more than one direction in the same scan the scanner stops after the first volume. Any idea what maybe causing this?
Thanks,
Magdoom
Beta Was this translation helpful? Give feedback.
All reactions