Color

SCPI Commands :

MTESt:COLor:MATCh
MTESt:COLor:UNMatch
MTESt:COLor:INTerior
MTESt:COLor:BORDer
Commands in total: 4
Subgroups: 0
Direct child commands: 4
get_border() int[source]
# MTESt:COLor:BORDer
value: int = driver.mtest.color.get_border()

Sets the color of masks segments that were touched at the border. In this case, the resolution is not sufficient to detect if the mask was really hit or not. Zoom into the concerned area to see the actual result.

Returns:

clr_matched_msk_border: Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

get_interior() int[source]
# MTESt:COLor:INTerior
value: int = driver.mtest.color.get_interior()

Sets the color of mask segments the signal has entered into.

Returns:

clr_matched_msk_interior: Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

get_match() int[source]
# MTESt:COLor:MATCh
value: int = driver.mtest.color.get_match()

Sets the color of samples that violated the mask.

Returns:

clr_matched_pixel: Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

get_un_match() int[source]
# MTESt:COLor:UNMatch
value: int = driver.mtest.color.get_un_match()

Sets the color of masks segments that were not hit.

Returns:

clr_unmatched_msk: Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

set_border(clr_matched_msk_border: int) None[source]
# MTESt:COLor:BORDer
driver.mtest.color.set_border(clr_matched_msk_border = 1)

Sets the color of masks segments that were touched at the border. In this case, the resolution is not sufficient to detect if the mask was really hit or not. Zoom into the concerned area to see the actual result.

Parameters:

clr_matched_msk_border – Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

set_interior(clr_matched_msk_interior: int) None[source]
# MTESt:COLor:INTerior
driver.mtest.color.set_interior(clr_matched_msk_interior = 1)

Sets the color of mask segments the signal has entered into.

Parameters:

clr_matched_msk_interior – Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

set_match(clr_matched_pixel: int) None[source]
# MTESt:COLor:MATCh
driver.mtest.color.set_match(clr_matched_pixel = 1)

Sets the color of samples that violated the mask.

Parameters:

clr_matched_pixel – Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.

set_un_match(clr_unmatched_msk: int) None[source]
# MTESt:COLor:UNMatch
driver.mtest.color.set_un_match(clr_unmatched_msk = 1)

Sets the color of masks segments that were not hit.

Parameters:

clr_unmatched_msk – Decimal value corresponding to the ARGB hex value that is shown in the Color dialog box. ARGB is a 32-bit unsigned integer with alpha, red, green, blue word order. Alpha defines the transparency. To get the value, covert the hex value from the dialog to decimal value.