You can import multiple images and optionally additional information (e.g. magnification of microscope images) in one parameter, requiring only a new evaluation and two parameters.
To ensure that the evaluation can correctly assign images, there are two options:
Use Sample Number in File Name
SampleNumber;ParameterShort;Column.jpgAssign Unique Image ID
Example code for the evaluation (SQL)
Images are initially imported without assignment in a file import interface and subsequently assigned via this evaluation using the file name. This evaluation must be connected to a measured value import and should run at regular intervals (e.g. every 30 minutes).
The files must be given a fixed name, here:
Sample number;Parameter short;Parameter column
Replace XXX with id of the file import interface,
Adjust interval to the frequency of the evaluation.
SELECT
SUBSTRING_INDEX(imports.file_name,';',1)as 'Probe',
SUBSTRING_INDEX(SUBSTRING_INDEX(imports.file_name,';',2),';',-1)as 'Parameter',
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '0%', imports.upload_id, '') as Spalte0,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '1%', imports.upload_id, '') AS Spalte1,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '2%', imports.upload_id, '') AS Spalte2,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '3%', imports.upload_id, '') AS Spalte3,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '4%', imports.upload_id, '') AS Spalte4,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '5%', imports.upload_id, '') AS Spalte5,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '6%', imports.upload_id, '') AS Spalte6,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '7%', imports.upload_id, '') AS Spalte7,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '8%', imports.upload_id, '') AS Spalte8,
if(SUBSTRING_INDEX(imports.file_name,';',-1) like '9%', imports.upload_id, '') AS Spalte9
from imports
where imports.importinterface_id = XXX
and imports.date > UNIX_TIMESTAMP(NOW() - INTERVAL 35 MINUTE)
Upload Image:
Upload the image as a file via the File Import Interface.
Optional: Import Measurement Values:
Import text-based information (e.g., microscope data) along with the Image ID and sample number.
Execute Evaluation:
uploads.id into the parameter.Info: Enterprise customers can schedule import interfaces, so manual execution is not required.
Last change: 12.11.2025
General information
Reports
Report table editor
Interfaces
Kompetenzen
AI functions
Employees
Introductory phase
Query reports
Orders
Samples
Templates
Customers
Client zone (optional)
Assets
Offers
Invoices
Parameters
Calculating with parameters
Webservices
Transformationscode
Test plans / limit values / specifications
Documents control
Material
Questions and answers
Equipment
Trainings
8D-report
Others
PDF templates
Supplier evaluation
File management
Processes