Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-25924

Image Window GUI 2023b

  1. Support to change image window’s background color

  2. Display Actual Size Show Image at Window Center

  1. Use the Fill Color button on toolbar to change image’s background color.

  2. Use Labtalk: page.basecolor=1 for example to change image’s background color.

  3. Click the Display Actual Size button on Mini toolbar and the image will be shown at window’s central by default.

ORG-26161

Provide context menu to create ROIs from Worksheet data when no ROI exists on image

Add 4 context menus about ROI for image window:

  1. Export ROI… (//disable when there is no ROI)

  2. Import ROI…

  3. Create ROI from XY…

  4. Clear All ROIs (//disable when there is no ROI)

Right click on the image window to check the new context menu about ROI.

Programming

LabTalk

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-25792

Support listing StringArray on LabTalk Variables and Functions dialog

Show StringArray variable in the LabTalk Variables and Functions dialog

In Script Window, select menu Tools: Variables to open the LabTalk Variables and Functions dialog. A new checkbox “StringArray” is added, select it can show available StringArray variable in current project.

ORG-26063

LabTalk script to set Colormap Transparency

Add a new command to set colormap transparency

Syntax: layer.cmap.transparency

ORG-25853

LabTalk countif function support simpler condition

Improve countif etc. function to support simpler condition

In previous builds, user need to provider condition with input range like countif(col(A), "col(A)>10"), now it can be simpler, just write as countif(col(A), ">10"). It’s also supported for other if function, includes sumif, averageif, maxifs, minifs.

Code Block
countif(col(A), "boston")=;
countif(A, 2)=;
countif(A, "!=2")=;

ORG-25837

LabTalk time function supports elapsed time period

Time function add optional argument to return elapsed time period

New optional argument adds to time functions to return elapsed time period, includes Hour(d[,n]), Minute(d[,n]), Second(d[,n1,n2]).

Code Block
double dTime = Time(25:30:21);
Hour(dTime, 1)= ; //25
Minute(dTime,1) =; //1530
Second(dTime,1,1) =; //91821

...