The MERLIC INI File
This page describes the general configuration file of MERLIC. It is generated with the name "MERLIC5.ini" by default. It enables you to manually configure various settings for different components of MERLIC. The configuration properties are grouped in different sections.
You can also create additional configuration files with customized settings for specific use cases. This also allows you to use multiple instances of MERLIC or MERLIC RTE with different configuration. If you want to use the configuration of an INI file, you have to start MERLIC or MERLIC RTE with the respective INI file. For more information, see Using Multiple MERLIC RTE Instances.
The following sections provide some general information such as on the location of the configuration file or how to define additional configuration files. In addition, you can find detailed information on the available configuration properties. We will refer to the configuration file in general simply as "INI file" to avoid confusion which configuration file we are referring to.
General Information
Location
On Windows, you can find the "MERLIC5.ini" file that is generated automatically in the following default directory: "C:\Users\<username>\AppData\Roaming\MVTec". You can also enter "%APPDATA%\MVTec" into your file explorer to reach that directory.
On Linux, you have to provide the INI file manually after the installation. The default "MERLIC5.ini" is expected in the following directory: "~/.config/MVTec/". For more information, see the section Providing the MERLIC5.ini File in Installing MERLIC Under Linux.
Versions
When updating to a new version of MERLIC, the backward compatibility of the INI file may be compromised. Therefore, we recommend to save a copy of your INI file and your MVApps before using them in a new version of MERLIC.
For this MERLIC version, the INI file that is generated and used by default is called "MERLIC5.ini". For previous major versions of MERLIC, a different INI file is used by default.
|
MERLIC version |
Name of INI file |
|---|---|
|
≥ 5.0 |
MERLIC5.ini |
|
4.4.0 to 4.8.0 |
MERLIC4.ini |
|
< 4.4.0 |
MERLIC.ini |
There are two ways to find out your MERLIC version:
- Open the "About MERLIC" dialog in the MERLIC Creator via the menu entry "Help → About".
- Use the command line option "-V" or "--version" for the MERLIC executable "merlic_creator.exe". For more information about the available command line options, see Starting the MERLIC Frontend on Windows.
Using Additional INI Files
By default, MERLIC is started with the configuration of the default "MERLIC5.ini" file. However, you can also create an additional INI file with a different configuration and then start MERLIC with the new INI file. This way, you can define different configurations for different use cases, e.g., if you want to use multiple instances of MERLIC at the same time with different configurations.
To create a new INI file, you can copy the default "MERLIC5.ini", adjust the configuration as desired, and save it in any location.
To start a MERLIC with a specific INI file, you have to use the command line as described below:
- Open a command prompt and change to the "bin\x64-win64" directory within the MERLIC installation path, for example, "%PROGRAMFILES%\MVTec\MERLIC-5.8\bin\x64-win64".
- Use the command line option "--ini" to specify the path and name of the INI file you want to use as shown in the example below. If the INI file does not exist, it is automatically created with this call.Copy
merlic_creator.exe --ini <FILE>
The same command line option "--ini" can also be used for the executable of other MERLIC applications:
- merlic_frontend.exe
- merlic_rte.exe
- merlic_rte_setup.exe
For more information on how to start the respective MERLIC application, see the following topics:
- Connecting the MERLIC Frontend to a Remote Server
- Starting MERLIC RTE on Windows
- Starting MERLIC RTE on Linux
Overriding the Properties in the INI File
If you start MERLIC via the command line, you have the possibility to override some properties of the INI file. You can use the available command line options to define specific settings for the current session. The specified option in the command line will override the value that is set for respective property in the INI file.
The same applies for additional INI files. If MERLIC is started with a custom INI file, the respective properties in the given INI file will override the configuration of the default "MERLIC5.ini" file.
The hierarchy of the startup options is as follows:
- Command line options.
- Options of the INI file that is specified in the command line.
- Options of the default "MERLIC5.ini" file.
- If no INI file exists, MERLIC will create one in the default directory or in the directory that was defined in the command line during the start.
Structure and Encoding
The INI file is structured in different sections that contain the settings for the respective component. The sections are added chronologically and may be reorganized automatically by MERLIC. The names of the sections are specified in square brackets [ ] in the INI file. When editing the INI file manually, you can add new sections anywhere above or below existing sections.
The INI file requires an UTF-8 character encoding on all platforms. It is possible to use regular slashes "/" and backslashes "\" as path separators in the INI file. Lines starting with "#" are ignored by MERLIC.
Sections
In the following, you can find detailed information on the available sections and properties for the INI file. Currently, you may define properties in the following sections:
- General
- colors
- Communicator
- Designer
- Frontend
- Logging
- ProcessIntegration
- RecentlyWorkedOn
- RTESetup
- Server
- UserManagement
[General]
|
Property |
Default |
Description |
|---|---|---|
|
GuiLanguage |
|
This option allows you to change the language of the user interface. By default, MERLIC uses the language that has been selected in the installation process of MERLIC. The following languages are available:
The MERLIC Frontend offers additional language options. For information about setting the language of the Frontend, see the topic Changing the Language of the MERLIC Frontend. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Language" For more information, see MERLIC Preferences. |
|
HalconDisableCudnnOptimization |
true |
This property can be used to enable or disable the dynamic optimizations via the NVIDIA® CUDA® Deep Neural Network library (cuDNN). This optimization refers to MERLIC tools with deep learning technology, for example, Detect Anomalies. By default, this property is set to "true" which means that no additional optimization is performed. If it is set to "false", additional optimizations are performed when selecting a GPU as processing unit in a MERLIC tool. Depending on the capabilities of the selected GPU, the enabled optimization might take significantly more time, but it usually leads to better inference performance and thus, decreasing cycle times. With the optimization, the duration required for the following processes will be improved:
If you want to use the cuDNN optimization, make sure to update the driver of your GPU to the latest version. Otherwise, the optimization via the cuDNN library might not be supported. If this setting is changed, MERLIC needs to be restarted. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Disable optimization of models" For more information, see MERLIC Preferences. |
|
HDevelopDebugPort |
57786 |
This property defines the HDevelop debug port that is used to connect to MERLIC to debug custom tools in a special debug mode of HDevelop. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Custom Tools → HDevelop debug port" For more information, see MERLIC Preferences. |
|
HDevelopDebugServer |
false |
This property defines whether the HDevelop debug server that is required to debug custom MERLIC tools in a special debug mode of HDevelop is activated. You can set the following values:
GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Custom Tools → Enable HDevelop remote debugging" For more information, see MERLIC Preferences. |
|
|
This property can be used to define fixed ports for the configuration services of the Image Source Manager (ISM) when using the MERLIC RTE Setup on a remote system. You have to specify three ports to ensure that the remote configuration works correctly, e.g., "10123;10124;10125". You may use ports in the range of 1024 to 65535. If you are using this property to set the ports, you have to ensure the following conditions are met:
If this property is used to defined fixed ports, only one instance of MERLIC Creator and MERLIC RTE can be started. |
|
|
IniVersion |
4 |
This property is used by MERLIC to determine valid keys and values. For the current MERLIC version, it must be set to 4. |
|
LineWidth |
2 [px] |
This property stores the width of lines that are visualized in MERLIC. It is defined in pixel. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Line width" For more information, see MERLIC Preferences. |
|
MainWindowGeometry |
|
This property stores the position and appearance of the MERLIC Creator window in a ByteArray. |
|
MainWindowMaximized |
false |
This property defines if the MERLIC Creator window is maximized when opened. You can set the following values:
|
|
MainWindowState |
|
This property stores the appearance and state of the components in the MERLIC Creator window in a ByteArray. For more information about personalizing your user interface, see MERLIC Preferences. |
|
OpenUpdateDialog |
true |
This property defines if the dialog that notifies the user about an available update for MERLIC is shown upon startup. It is possible to disable the notifications, however it is not possible to disable the check for available updates. You can set the following values:
GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Show dialog in case of a new update" For more information, see MERLIC Preferences. |
|
ProceduresPath |
<empty> |
This property can be used to define the location of your custom MERLIC procedures (*.hdpl). The location must be defined as an absolute file path to the HDevelop procedure. If you want to specify multiple procedure paths, you can define the paths in a semicolon-separated list. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Custom Tools → Additional procedure path" For more information, see MERLIC Preferences. |
|
ShowStartupDialog |
true |
This property defines if the start dialog in the MERLIC Creator is shown upon startup. It is possible to disable the start dialog. You can set the following values:
For more information about the start dialog and personalizing your user interface see Start Dialog and MERLIC Preferences. |
|
true |
The following property defines if a server should be started. It is necessary to start a server for using MERLIC with process integration and a remote Frontend. You can set the following values:
|
|
|
StartupDialogState |
|
This property stores whether in the start dialog the sections "Recent MVApps" and "Examples" are expanded or collapsed as well as the position of the splitter between the two sections. |
|
ToolPath |
<empty> |
This property can be used to define the location of your custom MERLIC tools. The location must be defined as an absolute file path to the HDevelop procedure representing the custom tool. If you want to specify multiple tool paths, you can define the paths in a semicolon-separated list. MERLIC will then search the defined paths for files of the formats *.mvtools, *.hdpl and *.hdvp. Files of these formats will be loaded and integrated into MERLIC. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Custom Tools → Tool Paths" For more information, see MERLIC Preferences. |
|
|
This property allows you to choose whether MERLIC highlights the tools that were not executed in the last iteration. You can set the following values:
GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Highlight tools that were not executed" For more information, see Tool Flow. |
[colors]
The properties in this section define the colors used in MERLIC to visualize the various tools and widgets in MERLIC..
Color values are either expressed as values in hexadecimal format or as named colors following to the HTML standard. User defined colors are possible. In this case, the settings "key" and "value" are the same.
|
Value |
Description |
|---|---|
|
accepted |
This color is used for the easyTouch preview in MERLIC tools with a training mode such as the matching tools or code reading tools. When using easyTouch in a training image to find a suitable object or code for the training, easyTouch provides visual feedback on whether the image part within the currently selected area is suitable for the training by coloring the border accordingly. If the image part is suitable, the border is displayed in the color defined for "accepted". This color is also used in some MERLIC tools without training mode to highlight regions or contours that fit the current parameter settings of the tool, for example, for the accepted regions in the tool Evaluate Regions. |
|
easy_touch |
This color is used for easyTouch to highlight the preliminary results that can be previewed before confirming your choice with a mouse click. |
|
fail |
This color is used for easyTouch in MERLIC tools for code reading. When hovering the mouse pointer over an area in which the decoding failed, the border of this area is highlighted in this color. |
|
ok |
This color is used for easyTouch to highlight the regions or contours that were selected via easyTouch with a mouse click. |
|
region_input |
This color is used to highlight the border of input regions that are transmitted from a previous tool. |
|
rejected |
This color is used for the easyTouch preview in MERLIC tools with a training mode such as the matching tools or code reading tools. When using easyTouch in a training image to find a suitable object or code for the training, easyTouch provides visual feedback on whether the image part within the currently selected area is suitable for the training by coloring the border accordingly. If the image part is not suitable, the border is displayed in the color defined for "rejected". This color is also used in some MERLIC tools without training mode to highlight regions or contours that do not fit the current parameter settings of the tool, for example, for the rejected regions in the tool Evaluate Regions. |
|
roi_active |
This color is used for the region of interest (ROI) that is currently selected. |
|
roi_inactive |
This color is used for the regions of interest (ROIs) that are currently not selected. |
|
warning |
This color is used for the easyTouch preview in MERLIC tools with a training mode such as the matching tools or code reading tools. When using easyTouch in a training image to find a suitable object or code for the training, easyTouch provides visual feedback on whether the image part within the currently selected area is suitable for the training by coloring the border accordingly. If the data within the image part is not sufficient for a good result, the border is displayed in the color defined for "warning". |
GUI Settings
The colors can also be configured in the MERLIC Creator: "Edit → Preferences → Colors".
For more information, see MERLIC Preferences.
[Communicator]
The properties in this section can be used to configure specific port settings for MERLIC RTE and communication plug-ins. For more information, see Configuration Options for MERLIC RTEand Additional Settings for Communication Plug-ins.
|
Property |
Default |
Description |
|---|---|---|
|
CommandPort |
21591 |
This property defines the command port that should be used for the communication in MERLIC process integration mode, that is, for MERLIC RTE. You can set port numbers in the range of 1 to 65535. This port can also be specified via the command line option "--command_port". However, the settings will only be applied on the respective session. |
|
CommandTimeout |
5000 [ms] |
This property defines the timeout in milliseconds for commands sent by communication plug-ins in case MERLIC RTE is not responding. |
|
ConfigDir |
Windows: %AppData%\MVTec\Communicator\conf\ Linux: "~/.config/MVTec/Communicator/conf" |
This property defines the directory for the JSON configuration files of communication plug-ins. For more information, see Additional Settings for Communication Plug-ins. |
|
EventPort |
21590 |
This property defines the event port that should be used for the communication in MERLIC process integration mode, that is for MERLIC RTE. You can set port numbers in the range of 1 to 65535. This port can also be specified via the command line option "--event_port". However, the settings will only be applied on the respective session. |
|
|
This property defines fixed ports for the configuration services for communication plug-ins when using the MERLIC RTE Setup on a remote system. You have to specify three ports to ensure that the remote configuration works correctly, for example, "10123;10124;10125". You may use ports in the range of 1024 to 65535 from the operating system. If you are using this property to set the ports, you have to ensure the following conditions:
If this property is used to define fixed ports, only one instance of MERLIC RTE can be started. To use a second instance of MERLIC RTE, you have to start the second instance with different port settings. |
|
|
PluginDir |
|
This property defines the directories where to look for communication plug-ins. The directories can be defined in a semicolon-separated list. This setting is required if you implemented your own communication plug-in and placed the respective plug-in library in a different location than the communication plug-ins provided by MERLIC. Make sure to specify all directories in which communication plug-ins are located, including the default location of the MERLIC communication plug-ins. If the same plug-in name occurs in multiple directories, the order in which the directories appear in the list determines the precedence. By default, the communication plug-ins are searched in the directory where the MERLIC executable files are located:
For more information, see Additional Settings for Communication Plug-ins. |
[Designer]
This section contains properties for the workspace of the MERLIC Designer. These settings can also be adjusted in the graphical user interface of the MERLIC Designer.
|
Property |
Default |
Description |
|---|---|---|
|
GridColor |
#ffff00 |
This property defines the color of the grid. If you set the color in the INI file, you have to use the respective hexadecimal value. However, the color can also be set in the graphical user interface of the MERLIC Designer in the menu "Edit → Grid Properties". |
|
GridSize |
20 |
This property defines the size of the grid in pixels. The size can also be set in the graphical user interface of the MERLIC Designer in the menu "Edit → Grid Properties". |
|
ShowGrid |
true |
This property defines whether the grid is shown in the workspace or not. To deactivate the grid, set the property to "false". Alternatively, you can also change this setting via the graphical user interface of the MERLIC Designer using the menu entry "Edit → Show Grid". |
|
SnapToGrid |
true |
This property defines whether the widgets are snapped to the grid when moving them to a new position. To deactivate this mode, set the property to "false". Alternatively, you can also change this setting via the graphical user interface of the MERLIC Designer using the menu entry "Edit → Snap to Grid". |
GUI Settings
The grids can also be configured in the Frontend Designer via the menu bar or the "Edit" menu: "Edit → Grid Properties"
For more information, see Personalize the User Interface.
[Frontend]
This section contains properties for connections to the Frontend and properties for connections between the Frontend and the MERLIC Creator. The MERLIC Frontend connects to the MERLIC Creator via the MERLIC server component. MERLIC server and MERLIC Frontend communicate via inter process communication.
Connection Settings
You can configure the following Frontend properties. Each of the properties has a predefined default value which is used if no value is specified in the INI file or as command line argument:
|
Property |
Default |
Description |
|---|---|---|
|
CycleTime |
50 [ms] |
The MERLIC Frontend continuously polls the MERLIC server for new data. The "CycleTime" property defines the time that will at least pass between two polling requests. It is defined in milliseconds. This can be used to throttle the MERLIC Frontend and reduce the work load of the MERLIC server. |
|
GuiLanguage |
This property can be used to set the language in which the Frontend shall be started, e.g., "en_US". |
|
|
Host |
127.0.0.1 |
This property is used to set a hostname or an IP address. Thus you may configure to which computer the Frontend shall be connected. |
|
Port |
9090 |
This property defines the TCP/IP port to which the server listens. |
|
ReconnectInterval |
25 [s] |
This property is used when the connection to the server has been lost. Initially, the Frontend will attempt to reconnect once. If this fails, a reconnection is attempted in a specific time interval which is defined in "ReconnectInterval". It defines the time (in seconds) that will pass until a reconnection is attempted. If it is set to 0, the Frontend will attempt to reconnect as fast as possible. |
Customization Settings
|
Property |
Default |
Description |
|---|---|---|
|
IconFile |
|
This property can be used to define a custom icon for the Frontend. It will be shown in the window title bar and the task bar instead of the default MERLIC icon. You have to define the absolute path and file name of the icon. |
|
HideMVTecMerlicInFrontendWindow |
false |
This property defines whether the name of MVTec and MERLIC is visible in the window title of the Frontend and in the status message that is shown in the Frontend while loading the Frontend design. To hide company and product name, set the property to "true". As soon as the Frontend has been loaded, the window title that is defined in the "Frontend Properties" of the MERLIC Designer will be shown. |
For more information about the settings of the Frontend or the required settings for starting a remote Frontend, see the following topics:
Miscellaneous Settings
In addition, you can configure the following properties for the Frontend:
|
Property |
Default |
Description |
|---|---|---|
|
AlwaysShowROIHandles |
true |
This property is specifically included for devices with a touch screen to facilitate the usage of ROIs. The property is useful if the Image Display widget in your MERLIC Frontend also shows a region of interest (ROI). It defines if the interaction handles of the ROI are always shown (true) or not (false). |
|
HideWindowTitleBar |
false |
If set to "true" the MERLIC Frontend will start without showing the title bar of the application window. This will also affect the keyboard shortcuts that can be used, e.g., to close the window. |
|
ROIHandleSize_mm |
4 [mm] |
This property is specifically included for devices with a touch screen to facilitate the usage of ROIs. The property is useful if the Image Display widget in your MERLIC Frontend also shows a region of interest (ROI). It defines the size of the interaction handles of the ROI. It is defined in millimeters. |
|
StartInFullscreen |
false |
This property defines whether the MERLIC Frontend is started in full screen mode. If you want to display the Frontend automatically in full screen mode each time you start it, you can set this option to "true". If you want to use this option only for a single session, you can start the Frontend via command line with the option "--fullscreen". |
|
TmpPath |
%AppData%\Local\Temp\<user_group>_<user_name> |
The MERLIC Frontend requires access to a writable directory on the hard disk of your computer to temporarily store files. You can set the path to the directory using the "TmpPath" property. If the directory does not exist, MERLIC will try to create the directory. You can use slashes (/), backslashes (\) or double backslashes (\\) for file paths in MERLIC INI files. However, MERLIC will internally store the paths with slashes (/). |
|
WindowGeometry |
|
This property can be used to specify the position and size of the MERLIC Frontend as follows: @Rect(x y w h) The values x and y define the position of the upper left corner of the MERLIC Frontend. The values w and h define the width and height of the MERLIC Frontend. All values must be given in pixels. If the property "StartInFullscreen" is set to "true", the MERLIC Frontend will be opened in full screen mode and the setting for "WindowGeometry" will be ignored. [Frontend] WindowGeometry=@Rect(10 20 750 500) |
[Logging]
This section contains properties regarding the path, size, and number of log files, as well as the message threshold. For more information about the configuration including logging information for MERLIC with process integration, see the topic Logging.
|
Property |
Default |
Description |
|---|---|---|
|
LogFilePath |
%LOCALAPPDATA%\MVTec\MERLIC\ %LOCALAPPDATA%\MVTec\MERLIC\ |
This property defines the path to the directory in which the log file is stored. You can use slashes (/), backslashes (\) or double backslashes (\\) for file paths in MERLIC INI files. However, MERLIC will internally store the paths with slashes (/). GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Log file path" For more information, see MERLIC Preferences. |
|
LogFileSizeInBytes |
10 485 760 (= 10 MB) |
This property defines the maximum size of the log files in bytes. If the maximum size of the log file is reached and the property "LogFilesCount" > 1, MERLIC will start to log the new messages into a new file. In case the maximum number of allowed log files is reached, MERLIC will start to overwrite the oldest messages. Minimum value: 1 048 576 = 1 MB GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Maximum size of log files" For more information, see MERLIC Preferences. |
|
LogFilesCount |
10 |
This property defines the maximum number of log files that are kept in the log file directory. If the maximum size is reached for each log file, MERLIC will delete older log files. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Maximum number of log files" For more information, see MERLIC Preferences. |
|
Threshold |
info |
This property defines the used log level. Logging of messages of a given level generally includes the logging of all messages of stricter levels. The available log levels are the following:
GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → General → Minimum log level" For more information, see MERLIC Preferences. |
[Logging]
LogFilePath=C:/Users/Public/Documents/Log_Files/
LogFilesCount=5
LogFileSizeInBytes=2097152
Threshold=error
[ProcessIntegration]
|
Property |
Default |
Description |
|---|---|---|
|
DefaultRecipe |
−1 |
This property defines the index of the recipe file that is loaded automatically if MERLIC is started with process integration, i.e., from the command line with "merlic_rte.exe". If this option is not defined, the recipe must be loaded by the PLC. GUI settingThis property can also be configured in the MERLIC RTE Setup. For more information, see Defining the Default Recipe. |
|
LocalImageStorePath |
|
This property allows you to specify a custom location and file name for the database of the extended image storage. By default, the images are stored in a temporary folder on the local disk. If not enough space is available on your disk, you can use this property to define a different location with enough space for the image storage. It only applies if the extended image storage is enabled via "UseLocalImageStore". GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Process Integration → Path of image storage" For more information, see MERLIC Preferences. |
|
LocalImageStoreSize |
100 |
This property defines the number of images that will be cached in the extended image storage. It only applies if the extended image storage is enabled via "UseLocalImageStore". GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Process Integration → Maximum number of images" For more information, see MERLIC Preferences. |
|
ResultBufferSize |
10 |
This property defines the maximum number of results that are stored for the process integration. Thus, it represents the number of iterations for which the results of a MERLIC Vision App execution can be stored. If the number of results exceeds the buffer size, the oldest results will be discarded. The same applies to data components stored along the results. GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Process Integration → Maximum number of results" For more information, see MERLIC Preferences. |
|
RTEStartupISMConfiguration |
|
This property can be used to define the ISM configuration that shall be used as RTE startup configuration. The defined ISM configuration is automatically loaded and activated when MERLIC RTE starts. GUI settingThis property can also be configured in the MERLIC Runtime Environment Setup: "Image Sources → Use as RTE startup configuration" For more information, see Basic Terms and Concepts and Adding New Configurations and Image Sources. |
|
UseLocalImageStore |
false |
This property defines whether an extended image storage is used for MERLIC RTE. It can be used to ensure that result images will still be available when the number of results exceeds the size of the in-memory storage defined in "ResultBufferSize", that is, when MERLIC RTE starts removing the oldest results from the in-memory storage. To enable extended image storage, you have to set the value to "true". GUI settingThis property can also be configured in the MERLIC Creator: "Edit → Preferences → Process Integration → Extend storage of images on disk" For more information, see MERLIC Preferences. |
Optional Properties
|
Property |
Description |
|---|---|
|
Device<n> |
This property stores the device you defined in the "I/O" tab of MERLIC RTE Setup that is used for communication with the PLC. |
|
DeviceSettingsMetadata<n> |
This property stores additional information about the hardware you have configured. The information is used to properly display the device in the GUI while the hardware is not connected. |
|
Recipe<n> |
This property stores the name and absolute path of the MERLIC recipe files A MERLIC recipe file is a crucial part for the MERLIC process integration. It is a separate file (with file ending .mrcp) that defines which MERLIC Vision App is loaded for the process integration. It also defines how the MVApp is parametrized because it contains a set of pre-defined input values for selected tool parameters. You can create multiple recipe files with individual sets of input values for one and the same MVApp. This enables you to reuse an MVApp with different parameter settings for various scenarios of your application. You can also use a recipe file to load an MVApp for a completely different image processing task. (.mrcp) you defined in the MERLIC Creator. The property identifier "Recipe" is to be followed by an index number, starting from 0. Use the "Recipes" tab of the MERLIC RTE Setup to set the index number for the property "Recipe<n>". [ProcessIntegration] Recipe0=C:/recipes/recipe0.mrcp For more information on MERLIC recipes, see MERLIC Recipe Files. |
[RecentlyWorkedOn]
This section contains a list of up to 10 MVApps you opened most recently. You can access the MVApps in the MERLIC Creator via "File → Recently Opened".
[RTESetup]
This section contains settings for the MERLIC Runtime Environment Setup (MERLIC RTE Setup).
|
Property |
Default |
Description |
|---|---|---|
|
WindowGeometry |
|
This property can be used to specify the position and size of the MERLIC RTE Setup as follows: @Rect(x y w h) The values x and y define the position of the upper left corner of the MERLIC RTE Setup. The values w and h define the width and height of the MERLIC RTE Setup. All values must be given in pixels. If the property "WindowMaximized" is set to "true", the MERLIC RTE Setup will be opened in full screen mode and the setting for "WindowGeometry" will be ignored. [RTESetup] WindowGeometry=@Rect(1138 224 1361 954) |
|
WindowMaximized |
true |
This property defines if the MERLIC RTE Setup window is maximized when opened. You can set the following values:
|
[Server]
If the server is activated via the "StartServer" property in the [General] section, the settings for the server must be added to the section [Server]. The following settings are available:
|
Property |
Default |
Description |
|---|---|---|
|
AnonymizeFrontendLog |
false |
This property can be used to define if the logged data are stored together with the corresponding user who made the changes. If it is set to "false", the user name is also stored with the logging data. If it is set to "true", the data are logged without any user information. |
|
MaxConnections |
10 |
This property sets the maximum number of allowed simultaneous connected Frontends. |
|
TcpHost |
This property defines the local IP address on which the MERLIC Server listens for Frontends to connect. By default, no value is set and the server listens on all network interfaces for IPv4 and IPv6 connections. If the host is set to 0.0.0.0, only IPv4 is available. If it is set to localhost or 127.0.0.1, the server only listens for locally running Frontends to connect. |
|
|
TcpPortMax |
9099 |
This property determines the maximum port of a range of ports the server should listen for Frontends to connect. Normally the server listens on "TcpPortMin". In case this port is already used by another application, MERLIC server uses the next available port within the defined range up to "TcpPortMax". |
|
TcpPortMin |
9090 |
This property determines the minimum port of a range of ports the server should listen for Frontends to connect. Normally the server listens on "TcpPortMin". In case this port is already used by another application, the MERLIC Server uses the next available port within the defined range up to "TcpPortMax". |
|
WriteLockTimeout |
10000 [ms] |
This property sets the duration for the write lock of a Frontend if the user interaction in a concurrent Frontend has been finished. |
[UserManagement]
This section defines the look of the user management window in the MERLIC Designer.
|
Property |
Default |
Description |
|---|---|---|
|
SplitterPosition |
280 |
This property defines the position of the splitter control that divides the list view on the left side and the properties view on the right side of the MERLIC User Management dialog. |
|
Window |
Rect(100 100 1024 768) |
This property defines the position and size of the MERLIC User Management dialog. |
For more information about the user management, see the topic Setting up the User Management.