T O P I C R E V I E W |
rbeaulieu |
Posted - Aug 27 2019 : 21:34:37 Hi,
I would like to display image index of a multiframe DICOM file in ImageEnVect, like:
ImageEnVect1.IO.Seek(ieioSeekLast); // but with idx instead of seakFirst, last etc.
I try :
ImageEnVect1.IO.Params.ImageIndex := TrackBar_Head.Position;
But the image do not repaint (even with update, repaint, refresh)
Regards.
Regards. |
3 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Aug 28 2019 : 03:22:30 Hi Regent
For DICOM files the delay is set by the frame interval tag:
https://www.imageen.com/help/TIOParams.DICOM_Tags.html
If you email me, I can give you an update which allows you to set it using the generic ImageDelayTime:
https://www.imageen.com/help/TIOParams.ImageDelayTime.html
Nigel Xequte Software www.imageen.com |
rbeaulieu |
Posted - Aug 27 2019 : 22:39:02 Thank you Nigel, it's work great.
With form.update after, the image (ultrasound) refresh quickly.
There is a way to change image delay (ms) before set playing to true ?
Régent.
Regards. |
xequte |
Posted - Aug 27 2019 : 22:02:37 Hi
Please use:
ImageEnVect1.IO.Params.ImageIndex := TrackBar_Head.Position; ImageEnVect1.IO.LoadFromFile( ImageEnVect1.IO.Params.Filename );
Nigel Xequte Software www.imageen.com
|