1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 <2016> 2017 2018 2019 2020 2021 2022 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 <2016> 2017 2018 2019 2020 2021 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: Script BOY IntensityGraph to show areaDetector output of variable size |
From: | Phil Atkin <[email protected]> |
To: | [email protected] |
Date: | Wed, 20 Apr 2016 11:44:53 +0100 |
Thanks Gabriela,- but I guess my question was ambiguous. If I understand correctly, your script adjusts the height of the IntensityGraph widget so that its aspect ratio matches the image.
But the IntensityGraph will not display anything at all unless I set its Data Height and Data Width properties to match the attached array. Do you have something to accomplish this?
Also: I have no idea how to actually attach the code or make it run at an appropriate time. Can you point me at documentation that describes this?
Thanks Phil On 20/04/2016 11:34, [email protected] wrote:
this is the very simple python script that I use: from org.csstudio.opibuilder.scriptUtil import PVUtil imageWidget = display.getWidget('Image') imageXSizeWidget = display.getWidget('X-Size') imageYSizeWidget = display.getWidget('Y-Size') try : imageXSizePV = imageXSizeWidget.getPV() imageYSizePV = imageYSizeWidget.getPV() nImageRows = PVUtil.getLong(imageYSizePV) nImageColumns = PVUtil.getLong(imageXSizePV) imageWidget.setPropertyValue('graph_area_width', 512)imageWidget.setPropertyValue('graph_area_height', (512.0/nImageColumns)*nImageRows)except : pass Phil Atkin <[email protected]> ha scritto:Hi,I'm using BOY IntensityGraph to show a (stdArray) output image from an areaDetector driver/plugin.The size of my array changes quite a bit.Can someone tell me (in laborious detail if necessary, please) how to set up scripts or "embedded rules" on the IntensityGraph to cope with a variable-sized image?Thanks! Phil