Page MenuHomePhabricator

After depth of ultrasound image is changed geometry of the image does not adapt
Closed, ResolvedPublic

Description

When depth of an ultrasound image is changed the geometry does not update correctly and keeps the old depth.

Look at mitk::USTelemedImageSource::GetNextRawImage()
there it updates the geometry, but 20 frames after the change because it takes this time until geometry adapts.
If I change it to 60 frames it works for me and the geometry adapts accordingly to the choosen depth. But apparently this is not a good solution because it works only for me.

Event Timeline

User cheray has pushed new remote branch:

bug-19338-UpdateGeometryOfUltrasoundimageAfterDepthChanges

[0ff197]: Merge branch 'bug-19338-UpdateGeometryOfUltrasoundimageAfterDepthChang

Merged commits:

2015-09-29 11:42:59 Dominique Cheray [1f226f]
Fix Imagegeometrybug for TelemedUltrasoundimage

When depth of an ultrasoundimage was changed the geometry remained the
same. This was caused by the fact, that the geometry of the raw image
takes a few frames to adapt to the new depth and the geometry of the
ultraosundimage was updated to early. Now the geometry of the
ultrasoundimage updates after the geometry of the raw image has changed
and therefore is correct.


2015-09-29 11:23:27 Dominique Cheray [3c23e8]
Fix Imagegeometry-Bug for Telemed-Ultrasoundimage

When the depth of the Ultrasoundimage was changed, the geometry of the
image remained the same. This was caused by the fact that the geometry of
the raw image takes a few frames to adapt. So if you update the geometry
of the ultrasoundimage to early it will be updatet with the old geometry.
Now the geometry of the ultrasoundimage is only updated when the geometry
of the raw image has changed.