Formatting fixes
This commit is contained in:
@@ -37,7 +37,9 @@ public readonly struct DistanceComparer<T> : IDistanceComparer<T>
|
||||
return str ?? string.Empty;
|
||||
}
|
||||
|
||||
return
|
||||
$"<strong style='color: orange;' title='REf: {Reference}, CER: {Distance}'>{str ?? "-"}</strong>";
|
||||
// Enable for HTML/MD only
|
||||
// return $"<strong style='color: orange;' title='REf: {Reference}, CER: {Distance}'>{str ?? "-"}</strong>";
|
||||
|
||||
return str ?? "-";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,6 +24,9 @@ internal static class Program
|
||||
|
||||
using var document = new LatexIncludeDocumentGenerator(path, true);
|
||||
using var report = new ReportGenerator("OCR Report", document, scans)
|
||||
{
|
||||
MaxDisplayRows = 8
|
||||
}
|
||||
.AddComparison("Processing summary (Average)", v =>
|
||||
{
|
||||
var result = v.Average(out var deviation);
|
||||
|
||||
@@ -1,11 +1,15 @@
|
||||
using Ocr.Report.Models;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
|
||||
using Ocr.Report.Models;
|
||||
using ReportGeneration.Abstract.Model;
|
||||
using ReportGeneration.Interface;
|
||||
using System;
|
||||
|
||||
namespace Ocr.Report;
|
||||
|
||||
public class ReportGenerator : IDisposable
|
||||
{
|
||||
public int? MaxDisplayRows { get; init; }
|
||||
|
||||
private IDocumentGenerator Document { get; }
|
||||
|
||||
private ICollection<ImageStats> Images { get; }
|
||||
@@ -57,7 +61,7 @@ public class ReportGenerator : IDisposable
|
||||
|
||||
foreach (var (processor, images) in processors)
|
||||
{
|
||||
var ordered = images
|
||||
IEnumerable<(ImageStats Stats, double Distance)> ordered = images
|
||||
.Select(i => (Stats: i, Distance: i
|
||||
.Processors
|
||||
.Where(p => p.Name.Equals(processor))
|
||||
@@ -66,10 +70,17 @@ public class ReportGenerator : IDisposable
|
||||
))
|
||||
.OrderBy(i => i.Distance)
|
||||
.ToArray();
|
||||
|
||||
if (MaxDisplayRows.HasValue)
|
||||
{
|
||||
ordered = ordered
|
||||
.Take(MaxDisplayRows.Value / 2)
|
||||
.Concat(ordered.TakeLast(MaxDisplayRows.Value / 2));
|
||||
}
|
||||
|
||||
Document
|
||||
.AppendHeading(3, processor)
|
||||
.AppendTable(2, table =>
|
||||
.AppendTable(3, table =>
|
||||
{
|
||||
table.AppendHeader(new[] { "Image", "Preview", "Distance" });
|
||||
|
||||
@@ -79,7 +90,7 @@ public class ReportGenerator : IDisposable
|
||||
|
||||
table.AppendRow(new[]
|
||||
{
|
||||
$"<a href=\"#{stats.ImageName}\">{stats.ImageName}</a>",
|
||||
Ellipsis(stats.ImageName.Replace("\\", "\\\\") + ".png", 25),
|
||||
Document.FormatImage(imgPath, new Bounds(0, 150)),
|
||||
distance.ToString("F2")
|
||||
});
|
||||
@@ -103,7 +114,7 @@ public class ReportGenerator : IDisposable
|
||||
Document.FormatImage(Path.Combine("img", stat.ImageName), new Bounds(0, 350))
|
||||
)
|
||||
.AppendTable(
|
||||
stat.Reference.Count + 5,
|
||||
stat.Reference.Count + 6,
|
||||
table =>
|
||||
{
|
||||
table.AppendHeader(stat
|
||||
@@ -116,9 +127,17 @@ public class ReportGenerator : IDisposable
|
||||
.Prepend("Processor")
|
||||
);
|
||||
|
||||
var processors = stat.Processors
|
||||
IEnumerable<ProcessorStat> processors = stat.Processors
|
||||
.OrderBy(s => s.Distance)
|
||||
.ThenBy(s => s.ProcessingTime);
|
||||
.ThenBy(s => s.ProcessingTime)
|
||||
.ToArray();
|
||||
|
||||
if (MaxDisplayRows.HasValue)
|
||||
{
|
||||
processors = processors
|
||||
.Take(MaxDisplayRows.Value / 2)
|
||||
.Concat(processors.TakeLast(MaxDisplayRows.Value / 2));
|
||||
}
|
||||
|
||||
foreach (var processor in processors)
|
||||
{
|
||||
@@ -131,7 +150,7 @@ public class ReportGenerator : IDisposable
|
||||
.Prepend(processor.Words.Average(s => s.Distance).ToString("F2"))
|
||||
.Prepend($"{processor.Distance * 100:F1}%")
|
||||
.Prepend($"{processor.ProcessingTime * 1000:F1}ms")
|
||||
.Prepend(processor.Name)
|
||||
.Prepend(Ellipsis(processor.Name, 25))
|
||||
);
|
||||
}
|
||||
})
|
||||
@@ -243,6 +262,20 @@ public class ReportGenerator : IDisposable
|
||||
|
||||
#endregion
|
||||
|
||||
private static string Ellipsis(string str, int maxLength, string ellipsis = "...")
|
||||
{
|
||||
if (str.Length <= maxLength)
|
||||
{
|
||||
return str;
|
||||
}
|
||||
|
||||
int subStrLen = (maxLength - ellipsis.Length) / 2;
|
||||
return string.Concat(
|
||||
str.Substring(0, subStrLen),
|
||||
ellipsis,
|
||||
str.Substring(str.Length - subStrLen, subStrLen));
|
||||
}
|
||||
|
||||
#region IDisposable
|
||||
|
||||
protected virtual void Dispose(bool disposing)
|
||||
@@ -261,4 +294,4 @@ public class ReportGenerator : IDisposable
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,09 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,11 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,19 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,21 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,21 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,35 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,37 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,46 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,50 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,52 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,54 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,60 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,60 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,91 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,92 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,93 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_scatter\_002.png}} & 0,09 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,11 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.historian\_assistent\_001.png}} & 0,19 \\ \hline
|
||||
runtime\_fun...ate\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.runtime\_function\_create\_002.png}} & 0,21 \\ \hline
|
||||
editor\_mult...ple\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.editor\_multimonitor\_example\_007.png}} & 1,00 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.report\_example\_data-time\_001.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,00 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,08 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,15 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,16 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,28 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,34 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,36 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,36 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,37 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,37 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,41 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,43 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,46 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,47 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,91 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,92 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,94 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,97 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,00 \\ \hline
|
||||
runtime\_fun...ate\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.runtime\_function\_create\_002.png}} & 0,08 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.historian\_assistent\_001.png}} & 0,15 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.editor\_startpage\_project-exist\_001.png}} & 0,16 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.etm\_gantt\_runtime\_001.png}} & 0,97 \\ \hline
|
||||
driver\_BQLS...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.driver\_BQLSX00\_connections\_002.png}} & 1,00 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.reporting-server\_report-assistant\_007.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,47 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,56 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,67 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,79 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,80 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,84 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,89 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,93 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,98 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.historian\_assistent\_001.png}} & 0,47 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,56 \\ \hline
|
||||
runtime\_fun...ate\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.runtime\_function\_create\_002.png}} & 0,67 \\ \hline
|
||||
editor\_mult...ple\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.editor\_multimonitor\_example\_007.png}} & 0,79 \\ \hline
|
||||
zrs\_REPORTS...sis\_017.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_REPORTS\_extended-analysis\_017.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_3r...tor\_014.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_fi...oup\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_scatter\_002.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,80 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,80 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,88 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,88 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,89 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,89 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,89 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,91 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,93 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,94 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,95 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,98 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,99 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
straton\_run...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.straton\_runtime\_configuration\_001.png}} & 0,80 \\ \hline
|
||||
zrs\_ZAMS\_fi...oup\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & 0,80 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.editor\_startpage\_project-exist\_001.png}} & 0,88 \\ \hline
|
||||
zrs\_ZAMS\_3r...tor\_014.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 0,88 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.report\_example\_data-time\_001.png}} & 1,00 \\ \hline
|
||||
runtime\_fun...ate\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.runtime\_function\_create\_002.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,30 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,45 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,48 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,55 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,60 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,67 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,69 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,72 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,73 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,75 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,85 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,88 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,94 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,98 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,99 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.historian\_assistent\_001.png}} & 0,30 \\ \hline
|
||||
driver\_SEL\_...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.driver\_SEL\_Options\_002.png}} & 0,33 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_scatter\_002.png}} & 0,45 \\ \hline
|
||||
zrs\_ZAMS\_windrose\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_windrose\_002.png}} & 0,48 \\ \hline
|
||||
driver\_BQLS...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.driver\_BQLSX00\_connections\_002.png}} & 1,00 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.etm\_gantt\_runtime\_001.png}} & 1,00 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.report\_example\_data-time\_001.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,34 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,42 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,44 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,45 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,47 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,52 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,55 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,57 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,67 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,71 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,76 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,78 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,85 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 0,86 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,87 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,92 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
driver\_SEL\_...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.driver\_SEL\_Options\_002.png}} & 0,22 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.editor\_startpage\_project-exist\_001.png}} & 0,34 \\ \hline
|
||||
driver\_simo...ort\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.driver\_simotion\_online\_import\_001.png}} & 0,42 \\ \hline
|
||||
zrs\_ZAMS\_windrose\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_windrose\_002.png}} & 0,44 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.etm\_gantt\_runtime\_001.png}} & 1,00 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.reporting-server\_report-assistant\_007.png}} & 1,00 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.report\_example\_data-time\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_3r...tor\_014.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,36 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,37 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,39 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,42 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,45 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,52 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,53 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,67 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,69 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,72 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,79 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,84 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,98 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
driver\_SEL\_...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.driver\_SEL\_Options\_002.png}} & 0,22 \\ \hline
|
||||
zrs\_ZAMS\_windrose\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_windrose\_002.png}} & 0,36 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.editor\_startpage\_project-exist\_001.png}} & 0,37 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,39 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_3r...tor\_014.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_OL...ver\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,42 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,44 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,54 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,56 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,60 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,61 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,68 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,76 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,78 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,82 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,83 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,90 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,92 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,98 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_scatter\_002.png}} & 0,27 \\ \hline
|
||||
driver\_simo...ort\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.driver\_simotion\_online\_import\_001.png}} & 0,32 \\ \hline
|
||||
zrs\_ZAMS\_windrose\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_windrose\_002.png}} & 0,32 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.editor\_startpage\_project-exist\_001.png}} & 0,33 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.etm\_gantt\_runtime\_001.png}} & 1,00 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.historian\_assistent\_001.png}} & 1,00 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.report\_example\_data-time\_001.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,18 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,40 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,43 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,44 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,50 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,60 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,63 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,68 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,84 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,87 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,89 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_scatter\_002.png}} & 0,18 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.historian\_assistent\_001.png}} & 0,32 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,33 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.editor\_startpage\_project-exist\_001.png}} & 0,38 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.etm\_gantt\_runtime\_001.png}} & 1,00 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.reporting-server\_report-assistant\_007.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,19 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,26 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,34 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 0,43 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,56 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,56 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,70 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,72 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,91 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.historian\_assistent\_001.png}} & 0,19 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.report\_example\_data-time\_001.png}} & 0,26 \\ \hline
|
||||
zrs\_ZAMS\_fi...oup\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & 0,27 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.editor\_startpage\_project-exist\_001.png}} & 0,32 \\ \hline
|
||||
runtime\_fun...ate\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.runtime\_function\_create\_002.png}} & 1,00 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_scatter\_002.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_windrose\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_windrose\_002.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,00 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,20 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,20 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,21 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 0,29 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,30 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,34 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,41 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,49 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,54 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,63 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,74 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,88 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,93 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,00 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,17 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.historian\_assistent\_001.png}} & 0,17 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.editor\_startpage\_project-exist\_001.png}} & 0,20 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.etm\_gantt\_runtime\_001.png}} & 0,88 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.reporting-server\_report-assistant\_007.png}} & 0,93 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_windrose\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_ZAMS\_windrose\_002.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,00 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,13 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,13 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,28 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,41 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,42 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,44 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,47 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,48 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,58 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,64 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 0,64 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,70 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,86 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,97 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,98 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,00 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.editor\_startpage\_project-exist\_001.png}} & 0,13 \\ \hline
|
||||
zrs\_ZAMS\_fi...oup\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & 0,13 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,17 \\ \hline
|
||||
driver\_BQLS...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.driver\_BQLSX00\_connections\_002.png}} & 0,70 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.reporting-server\_report-assistant\_007.png}} & 0,86 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.etm\_gantt\_runtime\_001.png}} & 0,97 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.zrs\_MetadataEditor\_variables\_001.png}} & 0,98 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,00 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,20 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,20 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,23 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,26 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,33 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,36 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,37 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,39 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,41 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,48 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,50 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,55 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,62 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,82 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,85 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,90 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,94 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 0,95 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,00 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,17 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.historian\_assistent\_001.png}} & 0,17 \\ \hline
|
||||
editor\_star...ist\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.editor\_startpage\_project-exist\_001.png}} & 0,20 \\ \hline
|
||||
zrs\_ZAMS\_3r...tor\_014.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 0,94 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.reporting-server\_report-assistant\_007.png}} & 0,95 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_Metadat...les\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.zrs\_MetadataEditor\_variables\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,00 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,15 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,25 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,28 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,31 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,36 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,40 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,44 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,52 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,74 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,92 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,93 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,97 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,00 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.historian\_assistent\_001.png}} & 0,15 \\ \hline
|
||||
driver\_arch...ion\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.driver\_archdrv\_variablendefinition\_001.png}} & 0,22 \\ \hline
|
||||
driver\_SEL\_...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.driver\_SEL\_Options\_002.png}} & 0,22 \\ \hline
|
||||
driver\_BQLS...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.driver\_BQLSX00\_connections\_002.png}} & 1,00 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.etm\_gantt\_runtime\_001.png}} & 1,00 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.reporting-server\_report-assistant\_007.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,00 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,12 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,27 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,28 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,37 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,38 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,39 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,43 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,44 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,46 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 0,47 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,50 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,53 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 0,57 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 0,88 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,92 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,94 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,00 \\ \hline
|
||||
runtime\_fun...ate\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.runtime\_function\_create\_002.png}} & 0,12 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.historian\_assistent\_001.png}} & 0,17 \\ \hline
|
||||
driver\_SEL\_...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.driver\_SEL\_Options\_002.png}} & 0,22 \\ \hline
|
||||
etm\_gantt\_runtime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.etm\_gantt\_runtime\_001.png}} & 0,94 \\ \hline
|
||||
editor\_wind...ion\_006.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.editor\_windows\_position\_006.png}} & 0,96 \\ \hline
|
||||
driver\_BQLS...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.driver\_BQLSX00\_connections\_002.png}} & 0,96 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.reporting-server\_report-assistant\_007.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,124 +1,12 @@
|
||||
\begin{tabular}{|l|c|}
|
||||
\begin{tabular}{|l|c|c|}
|
||||
\hline
|
||||
\textbf{Image} & \textbf{Preview} & \textbf{Distance} \\ \hline
|
||||
<a href="#zrs\_ZAMS\_scatter\_002">zrs\_ZAMS\_scatter\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & 0,09 \\ \hline
|
||||
<a href="#command-processing\_screentypes\_controlgroup\_005">command-processing\_screentypes\_controlgroup\_005</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 0,11 \\ \hline
|
||||
<a href="#historian\_assistent\_001">historian\_assistent\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & 0,17 \\ \hline
|
||||
<a href="#driver\_SEL\_Options\_002">driver\_SEL\_Options\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 0,22 \\ \hline
|
||||
<a href="#runtime\_function\_create\_002">runtime\_function\_create\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & 0,25 \\ \hline
|
||||
<a href="#editor\_multimonitor\_example\_007">editor\_multimonitor\_example\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & 0,31 \\ \hline
|
||||
<a href="#driver\_simotion\_online\_import\_001">driver\_simotion\_online\_import\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & 0,32 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_windrose\_002">zrs\_ZAMS\_windrose\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 0,40 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_extended-analysis\_017">zrs\_REPORTS\_extended-analysis\_017</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_REPORTS\_extended-analysis\_017.png}}
|
||||
\end{figure} & 0,46 \\ \hline
|
||||
<a href="#zrs\_REPORTS\_EfficencyClass\_009">zrs\_REPORTS\_EfficencyClass\_009</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & 0,47 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_filter-alarmgroup\_001">zrs\_ZAMS\_filter-alarmgroup\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & 0,53 \\ \hline
|
||||
<a href="#straton\_runtime\_configuration\_001">straton\_runtime\_configuration\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & 0,54 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_OLEDB-server\_001">zrs\_ZAMS\_OLEDB-server\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & 0,56 \\ \hline
|
||||
<a href="#driver\_archdrv\_variablendefinition\_001">driver\_archdrv\_variablendefinition\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & 0,61 \\ \hline
|
||||
<a href="#driver\_brpvi\_offlineimport\_004">driver\_brpvi\_offlineimport\_004</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & 0,77 \\ \hline
|
||||
<a href="#editor\_startpage\_project-exist\_001">editor\_startpage\_project-exist\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.editor\_startpage\_project-exist\_001.png}}
|
||||
\end{figure} & 0,82 \\ \hline
|
||||
<a href="#zrs\_MetadataEditor\_variables\_001">zrs\_MetadataEditor\_variables\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#driver\_BQLSX00\_connections\_002">driver\_BQLSX00\_connections\_002</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & 0,96 \\ \hline
|
||||
<a href="#etm\_gantt\_runtime\_001">etm\_gantt\_runtime\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & 0,97 \\ \hline
|
||||
<a href="#editor\_windows\_position\_006">editor\_windows\_position\_006</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.editor\_windows\_position\_006.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#reporting-server\_report-assistant\_007">reporting-server\_report-assistant\_007</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#report\_example\_data-time\_001">report\_example\_data-time\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#worldview\_zoom\_steps\_001">worldview\_zoom\_steps\_001</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
<a href="#zrs\_ZAMS\_3rd-connector\_014">zrs\_ZAMS\_3rd-connector\_014</a> &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_scatter\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.zrs\_ZAMS\_scatter\_002.png}} & 0,09 \\ \hline
|
||||
command-pro...oup\_005.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 0,11 \\ \hline
|
||||
historian\_a...ent\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.historian\_assistent\_001.png}} & 0,17 \\ \hline
|
||||
driver\_SEL\_...ons\_002.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.driver\_SEL\_Options\_002.png}} & 0,22 \\ \hline
|
||||
reporting-s...ant\_007.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.reporting-server\_report-assistant\_007.png}} & 1,00 \\ \hline
|
||||
report\_exam...ime\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.report\_example\_data-time\_001.png}} & 1,00 \\ \hline
|
||||
worldview\_z...eps\_001.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.worldview\_zoom\_steps\_001.png}} & 1,00 \\ \hline
|
||||
zrs\_ZAMS\_3r...tor\_014.png & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 1,00 \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{10034} & \textbf{active} & \textbf{id} & \textbf{interlocking} & \textbf{interlockings} & \textbf{no} & \textbf{static} & \textbf{text} & \textbf{typ} \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 0,0\% & 0,00 & 9 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,6ms & 0,0\% & 0,00 & 9 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 0,0\% & 0,00 & 9 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(60\%) & 1,1ms & 0,0\% & 0,00 & 9 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 2,1ms & 0,0\% & 0,00 & 9 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(50\%) & 3,9ms & 0,0\% & 0,00 & 9 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,8ms & 11,1\% & 0,22 & 8 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & <strong style='color: orange;' title='REf: no, CER: 2'>id</strong> & static & text & typ \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,9ms & 11,1\% & 0,22 & 8 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & interlockings & <strong style='color: orange;' title='REf: no, CER: 2'>id</strong> & static & text & typ \\ \hline
|
||||
ThresholdProcessor(20\%) & 21,4ms & 33,3\% & 0,11 & 8 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & 10034 & active & id & interlocking & <strong style='color: orange;' title='REf: interlockings, CER: 1'>interlocking</strong> & no & static & text & typ \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,5ms & 44,4\% & 1,67 & 5 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>text</strong> & active & <strong style='color: orange;' title='REf: id, CER: 2'>no</strong> & interlocking & interlockings & no & <strong style='color: orange;' title='REf: static, CER: 5'>text</strong> & text & <strong style='color: orange;' title='REf: typ, CER: 3'>text</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,7ms & 55,6\% & 2,33 & 4 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>text</strong> & active & <strong style='color: orange;' title='REf: id, CER: 4'>text</strong> & interlocking & interlockings & <strong style='color: orange;' title='REf: no, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: static, CER: 5'>active</strong> & text & <strong style='color: orange;' title='REf: typ, CER: 3'>text</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 1,7ms & 66,7\% & 2,44 & 3 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>text</strong> & active & <strong style='color: orange;' title='REf: id, CER: 4'>text</strong> & interlocking & <strong style='color: orange;' title='REf: interlockings, CER: 1'>interlocking</strong> & <strong style='color: orange;' title='REf: no, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: static, CER: 5'>text</strong> & text & <strong style='color: orange;' title='REf: typ, CER: 3'>text</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 77,8\% & 3,00 & 2 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>no</strong> & <strong style='color: orange;' title='REf: active, CER: 6'>no</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>no</strong> & interlocking & <strong style='color: orange;' title='REf: interlockings, CER: 1'>interlocking</strong> & no & <strong style='color: orange;' title='REf: static, CER: 6'>no</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>no</strong> & <strong style='color: orange;' title='REf: typ, CER: 3'>no</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 1,0ms & 88,9\% & 3,22 & 1 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>text</strong> & <strong style='color: orange;' title='REf: active, CER: 5'>text</strong> & <strong style='color: orange;' title='REf: id, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: interlocking, CER: 2'>interlockings'</strong> & <strong style='color: orange;' title='REf: interlockings, CER: 1'>interlockings'</strong> & <strong style='color: orange;' title='REf: no, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: static, CER: 5'>text</strong> & text & <strong style='color: orange;' title='REf: typ, CER: 3'>text</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,6ms & 100,0\% & 5,89 & 0 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: active, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: interlocking, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: interlockings, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: static, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: typ, CER: 3'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 12,8ms & 100,0\% & 5,89 & 0 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.command-processing\_screentypes\_controlgroup\_005.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 10034, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: active, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: interlocking, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: interlockings, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: static, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: typ, CER: 3'>-</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 0,0\% & 0,00 & 9 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,6ms & 0,0\% & 0,00 & 9 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 0,0\% & 0,00 & 9 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdProcessor(60\%) & 1,1ms & 0,0\% & 0,00 & 9 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.command-processing\_screentypes\_controlgroup\_005.png}} & 10034 & active & id & interlocking & interlockings & no & static & text & typ \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 0,5ms & 77,8\% & 3,00 & 2 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.command-processing\_screentypes\_controlgroup\_005.png}} & no & no & no & interlocking & interlocking & no & no & no & no \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 1,0ms & 88,9\% & 3,22 & 1 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.command-processing\_screentypes\_controlgroup\_005.png}} & text & text & text & interlockings' & interlockings' & text & text & text & text \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,6ms & 100,0\% & 5,89 & 0 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.command-processing\_screentypes\_controlgroup\_005.png}} & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
AutoThresho...r(Triangle) & 12,8ms & 100,0\% & 5,89 & 0 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.command-processing\_screentypes\_controlgroup\_005.png}} & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{0} & \textbf{1} & \textbf{abbrechen} & \textbf{archiv kennung} & \textbf{datenbaustein} & \textbf{datenbausteinkonfiguration} & \textbf{datensatz} & \textbf{datentyp} & \textbf{doppelwort} & \textbf{einstellungen} & \textbf{frei} & \textbf{id} & \textbf{löschen} & \textbf{name} & \textbf{neue} & \textbf{neuer} & \textbf{offset} & \textbf{ohne} & \textbf{ok} & \textbf{produkt ID} & \textbf{S7-300} & \textbf{schreibstatus} & \textbf{seriell} & \textbf{SO} & \textbf{spaltenorientiert} & \textbf{stelle} & \textbf{wert} \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 70,4\% & 3,44 & 8 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: 1, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 4'>techen</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 7'>kennung</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 2'>daterbaustain</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 14'>daterbaustain</strong> & datensatz & <strong style='color: orange;' title='REf: datentyp, CER: 4'>datensatz</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>wert</strong> & einstellungen & frei & id & <strong style='color: orange;' title='REf: löschen, CER: 3'>techen</strong> & name & <strong style='color: orange;' title='REf: neue, CER: 2'>never</strong> & <strong style='color: orange;' title='REf: neuer, CER: 1'>never</strong> & offset & ohne & <strong style='color: orange;' title='REf: ok, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 9'>id</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>never</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 9'>datensatz</strong> & <strong style='color: orange;' title='REf: seriell, CER: 4'>stele</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 12'>datensatz</strong> & <strong style='color: orange;' title='REf: stelle, CER: 1'>stele</strong> & wert \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 70,4\% & 3,78 & 8 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: 1, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 5'>archiv</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 7'>kennung</strong> & datenbaustein & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 13'>datenbaustein</strong> & datensatz & datentyp & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 9'>kennung</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>id</strong> & id & <strong style='color: orange;' title='REf: löschen, CER: 5'>archiv</strong> & name & <strong style='color: orange;' title='REf: neue, CER: 2'>name</strong> & <strong style='color: orange;' title='REf: neuer, CER: 3'>name</strong> & offset & ohne & <strong style='color: orange;' title='REf: ok, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 3'>produkt</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>id</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 9'>datensatz</strong> & <strong style='color: orange;' title='REf: seriell, CER: 5'>wert</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 11'>datenbaustein</strong> & <strong style='color: orange;' title='REf: stelle, CER: 5'>ohne</strong> & wert \\ \hline
|
||||
ThresholdProcessor(30\%) & 1,1ms & 74,1\% & 3,56 & 7 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>50</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>1d</strong> & abbrechen & <strong style='color: orange;' title='REf: archiv kennung, CER: 7'>kennung</strong> & datenbaustein & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 13'>datenbaustein</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 6'>datenbaustein</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 2'>ooppetwort</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 9'>kennung</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>id</strong> & id & <strong style='color: orange;' title='REf: löschen, CER: 5'>archiv</strong> & name & <strong style='color: orange;' title='REf: neue, CER: 2'>name</strong> & <strong style='color: orange;' title='REf: neuer, CER: 3'>name</strong> & offset & ohne & <strong style='color: orange;' title='REf: ok, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 9'>id</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 5'>50</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 3'>screbstetus</strong> & <strong style='color: orange;' title='REf: seriell, CER: 2'>serie</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>id</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 11'>datenbaustein</strong> & <strong style='color: orange;' title='REf: stelle, CER: 3'>serie</strong> & wert \\ \hline
|
||||
ThresholdProcessor(50\%) & 1,3ms & 85,2\% & 5,37 & 4 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: 1, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 7'>frei</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 12'>datentyp</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 7'>datentyp</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 20'>datentyp</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 4'>datentyp</strong> & datentyp & doppelwort & <strong style='color: orange;' title='REf: einstellungen, CER: 8'>stele</strong> & frei & <strong style='color: orange;' title='REf: id, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: löschen, CER: 6'>frei</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: neue, CER: 3'>wert</strong> & <strong style='color: orange;' title='REf: neuer, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: offset, CER: 4'>frei</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 9'>wert</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 10'>frei</strong> & <strong style='color: orange;' title='REf: seriell, CER: 4'>stele</strong> & <strong style='color: orange;' title='REf: SO, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 12'>datentyp</strong> & <strong style='color: orange;' title='REf: stelle, CER: 1'>stele</strong> & wert \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 96,3\% & 6,22 & 1 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>ka</strong> & <strong style='color: orange;' title='REf: 1, CER: 2'>ka</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 7'>were</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 13'>were</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 11'>were</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 23'>wert</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 11'>were</strong> & <strong style='color: orange;' title='REf: frei, CER: 3'>were</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>ka</strong> & <strong style='color: orange;' title='REf: löschen, CER: 6'>were</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>were</strong> & <strong style='color: orange;' title='REf: neue, CER: 2'>were</strong> & <strong style='color: orange;' title='REf: neuer, CER: 3'>were</strong> & <strong style='color: orange;' title='REf: offset, CER: 5'>were</strong> & <strong style='color: orange;' title='REf: ohne, CER: 3'>were</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>ka</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 9'>wert</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>were</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 11'>were</strong> & <strong style='color: orange;' title='REf: seriell, CER: 4'>were</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>ka</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 14'>were</strong> & <strong style='color: orange;' title='REf: stelle, CER: 4'>were</strong> & wert \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,7ms & 96,3\% & 6,56 & 1 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: 1, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 7'>bseu</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 12'>bseu</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 10'>bseu</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 22'>bseu</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 10'>bseu</strong> & <strong style='color: orange;' title='REf: frei, CER: 3'>bseu</strong> & <strong style='color: orange;' title='REf: id, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: löschen, CER: 5'>bseu</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: neue, CER: 3'>wert</strong> & <strong style='color: orange;' title='REf: neuer, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: offset, CER: 4'>bseu</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 9'>wert</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 10'>bseu</strong> & <strong style='color: orange;' title='REf: seriell, CER: 5'>wert</strong> & <strong style='color: orange;' title='REf: SO, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 14'>wert</strong> & <strong style='color: orange;' title='REf: stelle, CER: 5'>wert</strong> & wert \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 96,3\% & 6,96 & 1 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: 1, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 8'>name</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 13'>name</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 10'>name</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 23'>name</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 7'>name</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 6'>name</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 9'>name</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 11'>name</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: id, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: löschen, CER: 6'>name</strong> & name & <strong style='color: orange;' title='REf: neue, CER: 2'>name</strong> & <strong style='color: orange;' title='REf: neuer, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: offset, CER: 5'>name</strong> & <strong style='color: orange;' title='REf: ohne, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>name</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>name</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 12'>name</strong> & <strong style='color: orange;' title='REf: seriell, CER: 6'>name</strong> & <strong style='color: orange;' title='REf: SO, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 15'>name</strong> & <strong style='color: orange;' title='REf: stelle, CER: 5'>name</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>name</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 96,3\% & 6,96 & 1 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: 1, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 8'>wert</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 13'>wert</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 11'>wert</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 23'>wert</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 12'>wert</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: id, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>wert</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: neue, CER: 3'>wert</strong> & <strong style='color: orange;' title='REf: neuer, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: offset, CER: 5'>wert</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 9'>wert</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>wert</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 11'>wert</strong> & <strong style='color: orange;' title='REf: seriell, CER: 5'>wert</strong> & <strong style='color: orange;' title='REf: SO, CER: 4'>wert</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 14'>wert</strong> & <strong style='color: orange;' title='REf: stelle, CER: 5'>wert</strong> & wert \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,5ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,6ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,6ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,6ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,8ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,9ms & 100,0\% & 7,67 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 26'>-</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: frei, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: löschen, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neue, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: neuer, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: offset, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ohne, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: seriell, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 17'>-</strong> & <strong style='color: orange;' title='REf: stelle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wert, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 1,8ms & 100,0\% & 6,70 & 0 / 27 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_BQLSX00\_connections\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: 1, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: abbrechen, CER: 7'>en</strong> & <strong style='color: orange;' title='REf: archiv kennung, CER: 12'>en</strong> & <strong style='color: orange;' title='REf: datenbaustein, CER: 11'>en</strong> & <strong style='color: orange;' title='REf: datenbausteinkonfiguration, CER: 24'>en</strong> & <strong style='color: orange;' title='REf: datensatz, CER: 7'>en</strong> & <strong style='color: orange;' title='REf: datentyp, CER: 6'>en</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 9'>en</strong> & <strong style='color: orange;' title='REf: einstellungen, CER: 11'>en</strong> & <strong style='color: orange;' title='REf: frei, CER: 3'>en</strong> & <strong style='color: orange;' title='REf: id, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: löschen, CER: 5'>en</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>en</strong> & <strong style='color: orange;' title='REf: neue, CER: 3'>en</strong> & <strong style='color: orange;' title='REf: neuer, CER: 4'>en</strong> & <strong style='color: orange;' title='REf: offset, CER: 5'>en</strong> & <strong style='color: orange;' title='REf: ohne, CER: 3'>en</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: produkt ID, CER: 10'>en</strong> & <strong style='color: orange;' title='REf: S7-300, CER: 6'>en</strong> & <strong style='color: orange;' title='REf: schreibstatus, CER: 12'>en</strong> & <strong style='color: orange;' title='REf: seriell, CER: 6'>en</strong> & <strong style='color: orange;' title='REf: SO, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: spaltenorientiert, CER: 15'>en</strong> & <strong style='color: orange;' title='REf: stelle, CER: 5'>en</strong> & <strong style='color: orange;' title='REf: wert, CER: 3'>en</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 70,4\% & 3,44 & 8 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.driver\_BQLSX00\_connections\_002.png}} & id & id & techen & kennung & daterbaustain & daterbaustain & datensatz & datensatz & wert & einstellungen & frei & id & techen & name & never & never & offset & ohne & id & id & never & datensatz & stele & id & datensatz & stele & wert \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 70,4\% & 3,78 & 8 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.driver\_BQLSX00\_connections\_002.png}} & id & id & archiv & kennung & datenbaustein & datenbaustein & datensatz & datentyp & wert & kennung & id & id & archiv & name & name & name & offset & ohne & id & produkt & id & datensatz & wert & id & datenbaustein & ohne & wert \\ \hline
|
||||
ThresholdProcessor(30\%) & 1,1ms & 74,1\% & 3,56 & 7 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.driver\_BQLSX00\_connections\_002.png}} & 50 & 1d & abbrechen & kennung & datenbaustein & datenbaustein & datenbaustein & wert & ooppetwort & kennung & id & id & archiv & name & name & name & offset & ohne & id & id & 50 & screbstetus & serie & id & datenbaustein & serie & wert \\ \hline
|
||||
ThresholdProcessor(50\%) & 1,3ms & 85,2\% & 5,37 & 4 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.driver\_BQLSX00\_connections\_002.png}} & wert & wert & frei & datentyp & datentyp & datentyp & datentyp & datentyp & doppelwort & stele & frei & wert & frei & wert & wert & wert & frei & wert & wert & wert & wert & frei & stele & wert & datentyp & stele & wert \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,8ms & 100,0\% & 7,67 & 0 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.driver\_BQLSX00\_connections\_002.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 7,67 & 0 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.driver\_BQLSX00\_connections\_002.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,9ms & 100,0\% & 7,67 & 0 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.driver\_BQLSX00\_connections\_002.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 1,8ms & 100,0\% & 6,70 & 0 / 27 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.driver\_BQLSX00\_connections\_002.png}} & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en & en \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{100} & \textbf{180000} & \textbf{an} & \textbf{and} & \textbf{between} & \textbf{enter} & \textbf{integer} & \textbf{ok} & \textbf{SEL} \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,6ms & 22,2\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>and</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 22,2\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 22,2\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 1,0ms & 22,2\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>an</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 1,1ms & 22,2\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>an</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 1,4ms & 22,2\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>an</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,5ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,7ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>sel</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,8ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,8ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 1,0ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>and</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 2,2ms & 33,3\% & 0,56 & 7 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & 100 & 180000 & an & and & between & enter & integer & <strong style='color: orange;' title='REf: ok, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>100</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,6ms & 88,9\% & 4,56 & 1 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 100, CER: 4'>300001</strong> & <strong style='color: orange;' title='REf: 180000, CER: 3'>300001</strong> & <strong style='color: orange;' title='REf: an, CER: 6'>between</strong> & <strong style='color: orange;' title='REf: and, CER: 6'>300001</strong> & between & <strong style='color: orange;' title='REf: enter, CER: 5'>between</strong> & <strong style='color: orange;' title='REf: integer, CER: 5'>between</strong> & <strong style='color: orange;' title='REf: ok, CER: 6'>300001</strong> & <strong style='color: orange;' title='REf: SEL, CER: 6'>300001</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 1,3ms & 100,0\% & 4,22 & 0 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: 180000, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: an, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: between, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: enter, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 1,5ms & 100,0\% & 4,22 & 0 / 9 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_SEL\_Options\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: 180000, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: an, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: between, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: enter, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: SEL, CER: 3'>-</strong> \\ \hline
|
||||
ThresholdAd...ssor(16\_16) & 0,6ms & 22,2\% & 0,56 & 7 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.driver\_SEL\_Options\_002.png}} & 100 & 180000 & an & and & between & enter & integer & an & and \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 22,2\% & 0,56 & 7 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.driver\_SEL\_Options\_002.png}} & 100 & 180000 & an & and & between & enter & integer & an & 100 \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 22,2\% & 0,56 & 7 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.driver\_SEL\_Options\_002.png}} & 100 & 180000 & an & and & between & enter & integer & an & 100 \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 1,0ms & 22,2\% & 0,56 & 7 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.driver\_SEL\_Options\_002.png}} & 100 & 180000 & an & and & between & enter & integer & an & an \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 2,2ms & 33,3\% & 0,56 & 7 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.driver\_SEL\_Options\_002.png}} & 100 & 180000 & an & and & between & enter & integer & an & 100 \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,6ms & 88,9\% & 4,56 & 1 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.driver\_SEL\_Options\_002.png}} & 300001 & 300001 & between & 300001 & between & between & between & 300001 & 300001 \\ \hline
|
||||
AutoThresho...r(Triangle) & 1,3ms & 100,0\% & 4,22 & 0 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.driver\_SEL\_Options\_002.png}} & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 1,5ms & 100,0\% & 4,22 & 0 / 9 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.driver\_SEL\_Options\_002.png}} & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{archive} & \textbf{bit} & \textbf{byte} & \textbf{das} & \textbf{doppelwort} & \textbf{float} & \textbf{gewünschte} & \textbf{hilfe} & \textbf{konfiguration} & \textbf{neu} & \textbf{objekt} & \textbf{selektieren} & \textbf{sie} & \textbf{string} & \textbf{treibervariable} & \textbf{variablendefinition} & \textbf{verlassen} & \textbf{wort} \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,7ms & 16,7\% & 1,22 & 15 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>sie</strong> & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & objekt & selektieren & sie & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & verlassen & wort \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,7ms & 16,7\% & 1,22 & 15 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>sie</strong> & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & objekt & selektieren & sie & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & verlassen & wort \\ \hline
|
||||
ThresholdProcessor(30\%) & 1,2ms & 16,7\% & 1,22 & 15 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>sie</strong> & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>sie</strong> & objekt & selektieren & sie & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & verlassen & wort \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 1,0ms & 22,2\% & 1,22 & 15 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>sie</strong> & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & objekt & selektieren & sie & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & verlassen & wort \\ \hline
|
||||
ThresholdProcessor(60\%) & 1,6ms & 22,2\% & 1,28 & 14 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>sie</strong> & bit & byte & das & doppelwort & float & <strong style='color: orange;' title='REf: gewünschte, CER: 1'>gewunschte</strong> & hilfe & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & objekt & selektieren & sie & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & verlassen & wort \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,5ms & 33,3\% & 0,94 & 14 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>sie</strong> & bit & byte & das & doppelwort & float & gewünschte & <strong style='color: orange;' title='REf: hilfe, CER: 3'>sie</strong> & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>das</strong> & objekt & selektieren & sie & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 6'>yariablendefii</strong> & verlassen & wort \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 38,9\% & 0,94 & 14 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & archive & bit & byte & das & doppelwort & float & gewünschte & <strong style='color: orange;' title='REf: hilfe, CER: 3'>sie</strong> & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & <strong style='color: orange;' title='REf: objekt, CER: 4'>bit</strong> & selektieren & sie & string & treibervariable & variablendefinition & <strong style='color: orange;' title='REf: verlassen, CER: 7'>sie</strong> & wort \\ \hline
|
||||
ThresholdProcessor(70\%) & 1,2ms & 50,0\% & 2,67 & 9 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>hilfe</strong> & bit & byte & <strong style='color: orange;' title='REf: das, CER: 3'>bit</strong> & doppelwort & float & <strong style='color: orange;' title='REf: gewünschte, CER: 8'>byte</strong> & hilfe & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & <strong style='color: orange;' title='REf: objekt, CER: 4'>bit</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 8'>string</strong> & <strong style='color: orange;' title='REf: sie, CER: 2'>bit</strong> & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & verlassen & <strong style='color: orange;' title='REf: wort, CER: 1'>ort</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,8ms & 55,6\% & 3,22 & 8 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 6'>bit</strong> & bit & byte & <strong style='color: orange;' title='REf: das, CER: 3'>bit</strong> & doppelwort & float & <strong style='color: orange;' title='REf: gewünschte, CER: 8'>byte</strong> & <strong style='color: orange;' title='REf: hilfe, CER: 4'>bit</strong> & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 1'>new</strong> & <strong style='color: orange;' title='REf: objekt, CER: 4'>bit</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 8'>string</strong> & <strong style='color: orange;' title='REf: sie, CER: 2'>bit</strong> & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & <strong style='color: orange;' title='REf: verlassen, CER: 8'>byte</strong> & wort \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,8ms & 55,6\% & 3,28 & 8 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & archive & <strong style='color: orange;' title='REf: bit, CER: 2'>sie</strong> & <strong style='color: orange;' title='REf: byte, CER: 3'>sie</strong> & das & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>float</strong> & float & <strong style='color: orange;' title='REf: gewünschte, CER: 1'>gewunschte</strong> & hilfe & <strong style='color: orange;' title='REf: konfiguration, CER: 10'>float</strong> & <strong style='color: orange;' title='REf: neu, CER: 3'>sie</strong> & objekt & selektieren & sie & <strong style='color: orange;' title='REf: string, CER: 4'>sie</strong> & <strong style='color: orange;' title='REf: treibervariable, CER: 12'>archive</strong> & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>verlassen</strong> & verlassen & <strong style='color: orange;' title='REf: wort, CER: 3'>float</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,4ms & 61,1\% & 2,67 & 9 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & archive & bit & byte & <strong style='color: orange;' title='REf: das, CER: 3'>bit</strong> & doppelwort & float & <strong style='color: orange;' title='REf: gewünschte, CER: 8'>byte</strong> & <strong style='color: orange;' title='REf: hilfe, CER: 4'>bit</strong> & <strong style='color: orange;' title='REf: konfiguration, CER: 10'>float</strong> & <strong style='color: orange;' title='REf: neu, CER: 2'>et</strong> & <strong style='color: orange;' title='REf: objekt, CER: 4'>bit</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 8'>string</strong> & <strong style='color: orange;' title='REf: sie, CER: 2'>bit</strong> & string & treibervariable & variablendefinition & <strong style='color: orange;' title='REf: verlassen, CER: 7'>archive</strong> & wort \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 61,1\% & 3,33 & 8 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 6'>byte</strong> & bit & byte & <strong style='color: orange;' title='REf: das, CER: 3'>bit</strong> & doppelwort & float & <strong style='color: orange;' title='REf: gewünschte, CER: 8'>byte</strong> & <strong style='color: orange;' title='REf: hilfe, CER: 4'>byte</strong> & konfiguration & <strong style='color: orange;' title='REf: neu, CER: 3'>bit</strong> & <strong style='color: orange;' title='REf: objekt, CER: 4'>bit</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 8'>string</strong> & <strong style='color: orange;' title='REf: sie, CER: 2'>bit</strong> & string & treibervariable & <strong style='color: orange;' title='REf: variablendefinition, CER: 14'>konfiguration</strong> & <strong style='color: orange;' title='REf: verlassen, CER: 8'>byte</strong> & wort \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,3ms & 72,2\% & 4,17 & 5 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & archive & <strong style='color: orange;' title='REf: bit, CER: 2'>sie</strong> & <strong style='color: orange;' title='REf: byte, CER: 3'>sie</strong> & das & <strong style='color: orange;' title='REf: doppelwort, CER: 7'>float</strong> & float & gewünschte & <strong style='color: orange;' title='REf: hilfe, CER: 3'>sie</strong> & <strong style='color: orange;' title='REf: konfiguration, CER: 10'>float</strong> & <strong style='color: orange;' title='REf: neu, CER: 3'>sie</strong> & <strong style='color: orange;' title='REf: objekt, CER: 5'>float</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 1'>elektieren</strong> & sie & <strong style='color: orange;' title='REf: string, CER: 4'>sie</strong> & <strong style='color: orange;' title='REf: treibervariable, CER: 12'>archive</strong> & <strong style='color: orange;' title='REf: variablendefinition, CER: 15'>elektieren</strong> & <strong style='color: orange;' title='REf: verlassen, CER: 7'>sie</strong> & <strong style='color: orange;' title='REf: wort, CER: 3'>float</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 100,0\% & 5,83 & 0 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>ais</strong> & <strong style='color: orange;' title='REf: bit, CER: 2'>ais</strong> & <strong style='color: orange;' title='REf: byte, CER: 3'>yo</strong> & <strong style='color: orange;' title='REf: das, CER: 2'>ais</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 8'>el</strong> & <strong style='color: orange;' title='REf: float, CER: 4'>el</strong> & <strong style='color: orange;' title='REf: gewünschte, CER: 8'>essen</strong> & <strong style='color: orange;' title='REf: hilfe, CER: 4'>ais</strong> & <strong style='color: orange;' title='REf: konfiguration, CER: 11'>ais</strong> & <strong style='color: orange;' title='REf: neu, CER: 2'>sep</strong> & <strong style='color: orange;' title='REf: objekt, CER: 5'>sep</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 8'>essen</strong> & <strong style='color: orange;' title='REf: sie, CER: 2'>sep</strong> & <strong style='color: orange;' title='REf: string, CER: 5'>sep</strong> & <strong style='color: orange;' title='REf: treibervariable, CER: 13'>ais</strong> & <strong style='color: orange;' title='REf: variablendefinition, CER: 16'>essen</strong> & <strong style='color: orange;' title='REf: verlassen, CER: 4'>essen</strong> & <strong style='color: orange;' title='REf: wort, CER: 3'>yo</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,6ms & 100,0\% & 7,56 & 0 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: bit, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: byte, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: das, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: float, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: gewünschte, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: hilfe, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: konfiguration, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: neu, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: objekt, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: sie, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: treibervariable, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: variablendefinition, CER: 19'>-</strong> & <strong style='color: orange;' title='REf: verlassen, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: wort, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,7ms & 100,0\% & 6,61 & 0 / 18 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_archdrv\_variablendefinition\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: archive, CER: 5'>ayig</strong> & <strong style='color: orange;' title='REf: bit, CER: 3'>gq</strong> & <strong style='color: orange;' title='REf: byte, CER: 3'>ayig</strong> & <strong style='color: orange;' title='REf: das, CER: 3'>gq</strong> & <strong style='color: orange;' title='REf: doppelwort, CER: 9'>yom</strong> & <strong style='color: orange;' title='REf: float, CER: 4'>yom</strong> & <strong style='color: orange;' title='REf: gewünschte, CER: 9'>gq</strong> & <strong style='color: orange;' title='REf: hilfe, CER: 5'>gq</strong> & <strong style='color: orange;' title='REf: konfiguration, CER: 11'>ayig</strong> & <strong style='color: orange;' title='REf: neu, CER: 3'>gq</strong> & <strong style='color: orange;' title='REf: objekt, CER: 6'>gq</strong> & <strong style='color: orange;' title='REf: selektieren, CER: 10'>ayig</strong> & <strong style='color: orange;' title='REf: sie, CER: 3'>gq</strong> & <strong style='color: orange;' title='REf: string, CER: 4'>ayig</strong> & <strong style='color: orange;' title='REf: treibervariable, CER: 13'>ayig</strong> & <strong style='color: orange;' title='REf: variablendefinition, CER: 17'>ayig</strong> & <strong style='color: orange;' title='REf: verlassen, CER: 8'>ayig</strong> & <strong style='color: orange;' title='REf: wort, CER: 3'>yom</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,7ms & 16,7\% & 1,22 & 15 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.driver\_archdrv\_variablendefinition\_001.png}} & sie & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & bit & objekt & selektieren & sie & string & treibervariable & konfiguration & verlassen & wort \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,7ms & 16,7\% & 1,22 & 15 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.driver\_archdrv\_variablendefinition\_001.png}} & sie & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & bit & objekt & selektieren & sie & string & treibervariable & konfiguration & verlassen & wort \\ \hline
|
||||
ThresholdProcessor(30\%) & 1,2ms & 16,7\% & 1,22 & 15 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.driver\_archdrv\_variablendefinition\_001.png}} & sie & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & sie & objekt & selektieren & sie & string & treibervariable & konfiguration & verlassen & wort \\ \hline
|
||||
AutoThresho...essor(OTSU) & 1,0ms & 22,2\% & 1,22 & 15 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.driver\_archdrv\_variablendefinition\_001.png}} & sie & bit & byte & das & doppelwort & float & gewünschte & hilfe & konfiguration & bit & objekt & selektieren & sie & string & treibervariable & konfiguration & verlassen & wort \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,3ms & 72,2\% & 4,17 & 5 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.driver\_archdrv\_variablendefinition\_001.png}} & archive & sie & sie & das & float & float & gewünschte & sie & float & sie & float & elektieren & sie & sie & archive & elektieren & sie & float \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 0,5ms & 100,0\% & 5,83 & 0 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.driver\_archdrv\_variablendefinition\_001.png}} & ais & ais & yo & ais & el & el & essen & ais & ais & sep & sep & essen & sep & sep & ais & essen & essen & yo \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,6ms & 100,0\% & 7,56 & 0 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.driver\_archdrv\_variablendefinition\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,7ms & 100,0\% & 6,61 & 0 / 18 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.driver\_archdrv\_variablendefinition\_001.png}} & ayig & gq & ayig & gq & yom & yom & gq & gq & ayig & gq & gq & ayig & gq & ayig & ayig & ayig & ayig & yom \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{a} & \textbf{back} & \textbf{cancel} & \textbf{declaration} & \textbf{description} & \textbf{file} & \textbf{filename} & \textbf{finish} & \textbf{help} & \textbf{new} & \textbf{newOpcTag.opct} & \textbf{opc} & \textbf{tag} \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,7ms & 23,1\% & 1,00 & 11 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & back & cancel & declaration & description & file & filename & finish & help & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>opc</strong> & opc & tag \\ \hline
|
||||
ThresholdProcessor(60\%) & 2,2ms & 30,8\% & 1,46 & 9 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & back & cancel & declaration & description & file & filename & <strong style='color: orange;' title='REf: finish, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>new</strong> & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 10'>inewop</strong> & opc & tag \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,6ms & 38,5\% & 1,23 & 9 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & back & cancel & declaration & <strong style='color: orange;' title='REf: description, CER: 2'>cescriptior</strong> & file & <strong style='color: orange;' title='REf: filename, CER: 1'>filerame</strong> & finish & help & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>declaration</strong> & opc & tag \\ \hline
|
||||
ThresholdProcessor(70\%) & 1,1ms & 38,5\% & 1,77 & 8 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & back & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & declaration & description & file & filename & <strong style='color: orange;' title='REf: finish, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>new</strong> & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>new</strong> & opc & tag \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 1,0ms & 46,2\% & 1,38 & 8 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & back & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & declaration & description & file & filename & <strong style='color: orange;' title='REf: finish, CER: 2'>fish</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>new</strong> & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 8'>newopc</strong> & opc & tag \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,5ms & 53,8\% & 1,77 & 7 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & declaration & description & file & filename & <strong style='color: orange;' title='REf: finish, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>new</strong> & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 8'>inewopctag</strong> & opc & tag \\ \hline
|
||||
ThresholdProcessor(30\%) & 1,4ms & 53,8\% & 1,69 & 8 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & back & cancel & declaration & <strong style='color: orange;' title='REf: description, CER: 5'>declaration</strong> & file & <strong style='color: orange;' title='REf: filename, CER: 4'>file</strong> & finish & help & <strong style='color: orange;' title='REf: new, CER: 1'>news</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 10'>cescrigücr</strong> & opc & tag \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 69,2\% & 2,69 & 5 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & declaration & <strong style='color: orange;' title='REf: description, CER: 5'>declaration</strong> & file & <strong style='color: orange;' title='REf: filename, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: finish, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>new</strong> & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>new</strong> & opc & tag \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 76,9\% & 3,69 & 4 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & <strong style='color: orange;' title='REf: declaration, CER: 9'>tog</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>tog</strong> & file & <strong style='color: orange;' title='REf: filename, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: finish, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>file</strong> & new & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>opc</strong> & opc & tag \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 84,6\% & 3,23 & 2 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tad</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & <strong style='color: orange;' title='REf: declaration, CER: 5'>description</strong> & description & <strong style='color: orange;' title='REf: file, CER: 2'>fic</strong> & <strong style='color: orange;' title='REf: filename, CER: 6'>fic</strong> & <strong style='color: orange;' title='REf: finish, CER: 4'>fic</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>opc</strong> & <strong style='color: orange;' title='REf: new, CER: 1'>anew</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>opc</strong> & opc & <strong style='color: orange;' title='REf: tag, CER: 1'>tad</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,6ms & 84,6\% & 4,62 & 2 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & <strong style='color: orange;' title='REf: declaration, CER: 10'>anew</strong> & <strong style='color: orange;' title='REf: description, CER: 10'>opc</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>anew</strong> & <strong style='color: orange;' title='REf: filename, CER: 7'>anew</strong> & <strong style='color: orange;' title='REf: finish, CER: 5'>anew</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>anew</strong> & <strong style='color: orange;' title='REf: new, CER: 1'>anew</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>opc</strong> & opc & tag \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,9ms & 92,3\% & 4,15 & 3 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tag</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>file</strong> & <strong style='color: orange;' title='REf: declaration, CER: 10'>file</strong> & <strong style='color: orange;' title='REf: description, CER: 10'>file</strong> & file & <strong style='color: orange;' title='REf: filename, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: finish, CER: 4'>file</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>file</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>se</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>opc</strong> & opc & tag \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,5ms & 100,0\% & 5,62 & 0 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>ss</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>cs</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>cs</strong> & <strong style='color: orange;' title='REf: declaration, CER: 10'>cs</strong> & <strong style='color: orange;' title='REf: description, CER: 10'>ss</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>ss</strong> & <strong style='color: orange;' title='REf: filename, CER: 8'>ss</strong> & <strong style='color: orange;' title='REf: finish, CER: 5'>ss</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>ss</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>ss</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 13'>cs</strong> & <strong style='color: orange;' title='REf: opc, CER: 3'>ss</strong> & <strong style='color: orange;' title='REf: tag, CER: 3'>ss</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,7ms & 100,0\% & 6,00 & 0 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: back, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: declaration, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: filename, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: finish, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: opc, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: tag, CER: 3'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 4,38 & 0 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>ca</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>ca</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>anew</strong> & <strong style='color: orange;' title='REf: declaration, CER: 9'>tile</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>tile</strong> & <strong style='color: orange;' title='REf: file, CER: 1'>tile</strong> & <strong style='color: orange;' title='REf: filename, CER: 5'>tile</strong> & <strong style='color: orange;' title='REf: finish, CER: 5'>tile</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>tile</strong> & <strong style='color: orange;' title='REf: new, CER: 1'>anew</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 12'>anew</strong> & <strong style='color: orange;' title='REf: opc, CER: 3'>ca</strong> & <strong style='color: orange;' title='REf: tag, CER: 2'>ca</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,9ms & 100,0\% & 3,46 & 1 / 13 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_brpvi\_offlineimport\_004.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>tay</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>opc</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>fal</strong> & <strong style='color: orange;' title='REf: declaration, CER: 1'>zeclaration</strong> & <strong style='color: orange;' title='REf: description, CER: 6'>zeclaration</strong> & <strong style='color: orange;' title='REf: file, CER: 2'>fal</strong> & <strong style='color: orange;' title='REf: filename, CER: 6'>fal</strong> & <strong style='color: orange;' title='REf: finish, CER: 5'>fd</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: new, CER: 1'>mew</strong> & <strong style='color: orange;' title='REf: newOpcTag.opct, CER: 11'>opc</strong> & opc & <strong style='color: orange;' title='REf: tag, CER: 1'>tay</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,7ms & 23,1\% & 1,00 & 11 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.driver\_brpvi\_offlineimport\_004.png}} & tag & back & cancel & declaration & description & file & filename & finish & help & new & opc & opc & tag \\ \hline
|
||||
ThresholdProcessor(60\%) & 2,2ms & 30,8\% & 1,46 & 9 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.driver\_brpvi\_offlineimport\_004.png}} & tag & back & cancel & declaration & description & file & filename & file & new & new & inewop & opc & tag \\ \hline
|
||||
ThresholdProcessor(40\%) & 0,6ms & 38,5\% & 1,23 & 9 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.driver\_brpvi\_offlineimport\_004.png}} & tag & back & cancel & declaration & cescriptior & file & filerame & finish & help & new & declaration & opc & tag \\ \hline
|
||||
ThresholdProcessor(70\%) & 1,1ms & 38,5\% & 1,77 & 8 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.driver\_brpvi\_offlineimport\_004.png}} & tag & back & anew & declaration & description & file & filename & file & new & new & new & opc & tag \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 0,5ms & 100,0\% & 5,62 & 0 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.driver\_brpvi\_offlineimport\_004.png}} & ss & cs & cs & cs & ss & ss & ss & ss & ss & ss & cs & ss & ss \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,7ms & 100,0\% & 6,00 & 0 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.driver\_brpvi\_offlineimport\_004.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 4,38 & 0 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.driver\_brpvi\_offlineimport\_004.png}} & ca & ca & anew & tile & tile & tile & tile & tile & tile & anew & anew & ca & ca \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,9ms & 100,0\% & 3,46 & 1 / 13 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.driver\_brpvi\_offlineimport\_004.png}} & tay & opc & fal & zeclaration & zeclaration & fal & fal & fd & mew & mew & opc & opc & tay \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{(1)} & \textbf{a} & \textbf{all} & \textbf{cancel} & \textbf{connection} & \textbf{connections} & \textbf{D445} & \textbf{existing} & \textbf{filter} & \textbf{import} & \textbf{label} & \textbf{new} & \textbf{ok} & \textbf{only} & \textbf{resources} & \textbf{select} & \textbf{set} & \textbf{variable} & \textbf{variables} \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,9ms & 26,3\% & 0,63 & 14 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 2'>11</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 3'>d426</strong> & existing & filter & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 2'>11</strong> & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 31,6\% & 1,00 & 13 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 4'>only</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 5'>import</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 2'>ei</strong> & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,6ms & 31,6\% & 0,74 & 13 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>d445</strong> & existing & filter & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 3'>new</strong> & <strong style='color: orange;' title='REf: only, CER: 2'>ovonly</strong> & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,9ms & 31,6\% & 0,68 & 13 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>ok</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>new</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>d445</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 1'>fiter</strong> & import & label & new & ok & only & resources & select & set & variable & variables \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 36,8\% & 0,68 & 13 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>d445</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 1'>fitter</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 3'>new</strong> & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdProcessor(70\%) & 1,4ms & 36,8\% & 0,47 & 13 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 1'>cance</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>d445</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 1'>fitter</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 1'>ox</strong> & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,8ms & 42,1\% & 0,95 & 11 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>al</strong> & <strong style='color: orange;' title='REf: all, CER: 1'>al</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>d445</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 5'>new</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 2'>al</strong> & only & resources & select & <strong style='color: orange;' title='REf: set, CER: 2'>new</strong> & variable & variables \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 47,4\% & 0,95 & 10 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & cancel & <strong style='color: orange;' title='REf: connection, CER: 1'>connections</strong> & connections & <strong style='color: orange;' title='REf: D445, CER: 4'>new</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 1'>fitter</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 2'>et</strong> & <strong style='color: orange;' title='REf: only, CER: 3'>new</strong> & resources & select & <strong style='color: orange;' title='REf: set, CER: 1'>et</strong> & <strong style='color: orange;' title='REf: variable, CER: 1'>variables</strong> & variables \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 57,9\% & 1,05 & 9 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>et</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>new</strong> & cancel & <strong style='color: orange;' title='REf: connection, CER: 1'>connections</strong> & connections & <strong style='color: orange;' title='REf: D445, CER: 4'>new</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 1'>fitter</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 1'>ck</strong> & <strong style='color: orange;' title='REf: only, CER: 3'>new</strong> & resources & select & <strong style='color: orange;' title='REf: set, CER: 1'>et</strong> & <strong style='color: orange;' title='REf: variable, CER: 1'>variables</strong> & variables \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 1,1ms & 57,9\% & 1,74 & 9 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 3'>new</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>label</strong> & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & connection & <strong style='color: orange;' title='REf: connections, CER: 1'>connection</strong> & <strong style='color: orange;' title='REf: D445, CER: 4'>new</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 4'>tew</strong> & import & label & new & <strong style='color: orange;' title='REf: ok, CER: 3'>new</strong> & only & <strong style='color: orange;' title='REf: resources, CER: 7'>select</strong> & select & <strong style='color: orange;' title='REf: set, CER: 2'>new</strong> & variable & variables \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 63,2\% & 1,89 & 7 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>new</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>all</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 4'>new</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>0445</strong> & existing & <strong style='color: orange;' title='REf: filter, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: import, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: label, CER: 3'>all</strong> & new & <strong style='color: orange;' title='REf: ok, CER: 2'>mm</strong> & <strong style='color: orange;' title='REf: only, CER: 1'>oniy</strong> & <strong style='color: orange;' title='REf: resources, CER: 7'>select</strong> & select & <strong style='color: orange;' title='REf: set, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: variable, CER: 1'>variables</strong> & variables \\ \hline
|
||||
ThresholdProcessor(30\%) & 1,0ms & 63,2\% & 1,63 & 8 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>set</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>ok</strong> & all & <strong style='color: orange;' title='REf: cancel, CER: 3'>label</strong> & <strong style='color: orange;' title='REf: connection, CER: 2'>cennecticn</strong> & <strong style='color: orange;' title='REf: connections, CER: 3'>cennecticn</strong> & <strong style='color: orange;' title='REf: D445, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: existing, CER: 2'>isting</strong> & filter & import & label & <strong style='color: orange;' title='REf: new, CER: 2'>set</strong> & ok & <strong style='color: orange;' title='REf: only, CER: 3'>ok</strong> & resources & select & set & <strong style='color: orange;' title='REf: variable, CER: 4'>yanables</strong> & <strong style='color: orange;' title='REf: variables, CER: 3'>yanables</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,9ms & 84,2\% & 3,89 & 3 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>445</strong> & <strong style='color: orange;' title='REf: a, CER: 3'>445</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>445</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>select</strong> & connection & connections & <strong style='color: orange;' title='REf: D445, CER: 1'>0445</strong> & <strong style='color: orange;' title='REf: existing, CER: 7'>select</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: import, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: label, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>445</strong> & <strong style='color: orange;' title='REf: ok, CER: 3'>445</strong> & <strong style='color: orange;' title='REf: only, CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: resources, CER: 7'>select</strong> & select & <strong style='color: orange;' title='REf: set, CER: 3'>select</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>select</strong> & <strong style='color: orange;' title='REf: variables, CER: 8'>select</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,9ms & 89,5\% & 4,21 & 2 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: a, CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: all, CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>select</strong> & connection & <strong style='color: orange;' title='REf: connections, CER: 1'>connection</strong> & <strong style='color: orange;' title='REf: D445, CER: 1'>0445</strong> & <strong style='color: orange;' title='REf: existing, CER: 7'>select</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: import, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: label, CER: 5'>select</strong> & <strong style='color: orange;' title='REf: new, CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: only, CER: 4'>0445</strong> & <strong style='color: orange;' title='REf: resources, CER: 7'>select</strong> & select & <strong style='color: orange;' title='REf: set, CER: 3'>select</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>select</strong> & <strong style='color: orange;' title='REf: variables, CER: 8'>select</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 1,0ms & 94,7\% & 8,05 & 1 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 10'>connection</strong> & <strong style='color: orange;' title='REf: a, CER: 10'>connection</strong> & <strong style='color: orange;' title='REf: all, CER: 10'>connection</strong> & <strong style='color: orange;' title='REf: cancel, CER: 7'>connection</strong> & connection & <strong style='color: orange;' title='REf: connections, CER: 1'>connection</strong> & <strong style='color: orange;' title='REf: D445, CER: 10'>connection</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>connection</strong> & <strong style='color: orange;' title='REf: filter, CER: 9'>connection</strong> & <strong style='color: orange;' title='REf: import, CER: 9'>connection</strong> & <strong style='color: orange;' title='REf: label, CER: 9'>connection</strong> & <strong style='color: orange;' title='REf: new, CER: 8'>connection</strong> & <strong style='color: orange;' title='REf: ok, CER: 9'>connection</strong> & <strong style='color: orange;' title='REf: only, CER: 8'>connection</strong> & <strong style='color: orange;' title='REf: resources, CER: 10'>connection</strong> & <strong style='color: orange;' title='REf: select, CER: 7'>connection</strong> & <strong style='color: orange;' title='REf: set, CER: 8'>connection</strong> & <strong style='color: orange;' title='REf: variable, CER: 10'>connection</strong> & <strong style='color: orange;' title='REf: variables, CER: 10'>connection</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,8ms & 100,0\% & 5,63 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.driver\_simotion\_online\_import\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: (1), CER: 3'>-</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: connection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: connections, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: D445, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: label, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: only, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: resources, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: select, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: set, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,9ms & 26,3\% & 0,63 & 14 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.driver\_simotion\_online\_import\_001.png}} & 11 & all & all & label & connection & connections & d426 & existing & filter & import & label & new & 11 & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,5ms & 31,6\% & 1,00 & 13 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.driver\_simotion\_online\_import\_001.png}} & new & all & all & label & connection & connections & only & existing & import & import & label & new & ei & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,6ms & 31,6\% & 0,74 & 13 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.driver\_simotion\_online\_import\_001.png}} & new & all & all & label & connection & connections & d445 & existing & filter & import & label & new & new & ovonly & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,9ms & 31,6\% & 0,68 & 13 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.driver\_simotion\_online\_import\_001.png}} & new & ok & new & label & connection & connections & d445 & existing & fiter & import & label & new & ok & only & resources & select & set & variable & variables \\ \hline
|
||||
ThresholdAd...ssor(16\_16) & 0,9ms & 84,2\% & 3,89 & 3 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.driver\_simotion\_online\_import\_001.png}} & 445 & 445 & 445 & select & connection & connections & 0445 & select & select & select & select & 445 & 445 & 0445 & select & select & select & select & select \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,9ms & 89,5\% & 4,21 & 2 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.driver\_simotion\_online\_import\_001.png}} & 0445 & 0445 & 0445 & select & connection & connection & 0445 & select & select & select & select & 0445 & 0445 & 0445 & select & select & select & select & select \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 1,0ms & 94,7\% & 8,05 & 1 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.driver\_simotion\_online\_import\_001.png}} & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection & connection \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,8ms & 100,0\% & 5,63 & 0 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.driver\_simotion\_online\_import\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{0} & \textbf{000} & \textbf{001} & \textbf{1080} & \textbf{1920} & \textbf{3840} & \textbf{alternative} & \textbf{bottom} & \textbf{cancel} & \textbf{define} & \textbf{display} & \textbf{for} & \textbf{help} & \textbf{in} & \textbf{left} & \textbf{M} & \textbf{menu} & \textbf{MM} & \textbf{monitor} & \textbf{name} & \textbf{ok} & \textbf{online} & \textbf{options} & \textbf{physical} & \textbf{position} & \textbf{right} & \textbf{the} & \textbf{top} & \textbf{undedactable} \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 27,6\% & 0,59 & 22 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 2'>1080</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>top</strong> & 1080 & 1920 & 3840 & alternative & bottom & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & define & display & for & help & in & left & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & name & <strong style='color: orange;' title='REf: ok, CER: 2'>top</strong> & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,9ms & 31,0\% & 0,69 & 21 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 2'>1080</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>1080</strong> & 1080 & 1920 & 3840 & alternative & bottom & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & define & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & left & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & name & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 34,5\% & 0,69 & 21 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 2'>1080</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>top</strong> & 1080 & 1920 & 3840 & alternative & bottom & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & define & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>top</strong> & in & left & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & name & <strong style='color: orange;' title='REf: ok, CER: 2'>top</strong> & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 37,9\% & 0,76 & 19 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 2'>1030</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>top</strong> & <strong style='color: orange;' title='REf: 1080, CER: 1'>1030</strong> & 1920 & <strong style='color: orange;' title='REf: 3840, CER: 1'>3340</strong> & alternative & bottom & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & define & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>top</strong> & in & left & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & name & <strong style='color: orange;' title='REf: ok, CER: 2'>top</strong> & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdProcessor(40\%) & 2,1ms & 41,4\% & 1,24 & 17 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>menu</strong> & alternative & bottom & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: define, CER: 3'>online</strong> & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>menu</strong> & in & left & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & name & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,7ms & 55,2\% & 1,69 & 13 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 2'>m\_00</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 1080, CER: 3'>m\_00</strong> & <strong style='color: orange;' title='REf: 1920, CER: 3'>m\_00</strong> & <strong style='color: orange;' title='REf: 3840, CER: 3'>m\_00</strong> & alternative & bottom & <strong style='color: orange;' title='REf: cancel, CER: 5'>the</strong> & <strong style='color: orange;' title='REf: define, CER: 3'>online</strong> & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & <strong style='color: orange;' title='REf: left, CER: 3'>menu</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & online & options & <strong style='color: orange;' title='REf: physical, CER: 6'>position</strong> & position & <strong style='color: orange;' title='REf: right, CER: 4'>the</strong> & the & top & undedactable \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,6ms & 62,1\% & 2,14 & 11 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: alternative, CER: 8'>define</strong> & <strong style='color: orange;' title='REf: bottom, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>the</strong> & define & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & <strong style='color: orange;' title='REf: left, CER: 3'>menu</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & online & <strong style='color: orange;' title='REf: options, CER: 4'>position</strong> & physical & position & <strong style='color: orange;' title='REf: right, CER: 4'>the</strong> & the & <strong style='color: orange;' title='REf: top, CER: 2'>the</strong> & undedactable \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 62,1\% & 1,90 & 11 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>the</strong> & alternative & <strong style='color: orange;' title='REf: bottom, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>the</strong> & define & display & for & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & <strong style='color: orange;' title='REf: left, CER: 3'>menu</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: online, CER: 1'>onine</strong> & options & physical & <strong style='color: orange;' title='REf: position, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: right, CER: 4'>the</strong> & the & <strong style='color: orange;' title='REf: top, CER: 2'>the</strong> & undedactable \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,9ms & 62,1\% & 1,97 & 12 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>ok</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: alternative, CER: 8'>left</strong> & bottom & cancel & <strong style='color: orange;' title='REf: define, CER: 3'>online</strong> & <strong style='color: orange;' title='REf: display, CER: 6'>help</strong> & for & help & in & left & <strong style='color: orange;' title='REf: M, CER: 2'>ok</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>ok</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & ok & online & <strong style='color: orange;' title='REf: options, CER: 1'>optians</strong> & <strong style='color: orange;' title='REf: physical, CER: 6'>cancel</strong> & <strong style='color: orange;' title='REf: position, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: right, CER: 1'>night</strong> & the & <strong style='color: orange;' title='REf: top, CER: 1'>ton</strong> & undedactable \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 1,1ms & 69,0\% & 2,48 & 9 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>in</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>in</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: alternative, CER: 8'>online</strong> & <strong style='color: orange;' title='REf: bottom, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>ca</strong> & define & display & <strong style='color: orange;' title='REf: for, CER: 2'>go</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>menu</strong> & in & <strong style='color: orange;' title='REf: left, CER: 3'>menu</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>in</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>in</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & online & options & physical & <strong style='color: orange;' title='REf: position, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: right, CER: 4'>in</strong> & the & <strong style='color: orange;' title='REf: top, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: undedactable, CER: 9'>physical</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 79,3\% & 3,07 & 6 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: alternative, CER: 8'>define</strong> & <strong style='color: orange;' title='REf: bottom, CER: 4'>monitor</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>monitor</strong> & define & <strong style='color: orange;' title='REf: display, CER: 6'>physical</strong> & for & <strong style='color: orange;' title='REf: help, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: in, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: left, CER: 4'>define</strong> & <strong style='color: orange;' title='REf: M, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: menu, CER: 4'>define</strong> & <strong style='color: orange;' title='REf: MM, CER: 3'>for</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: online, CER: 3'>define</strong> & <strong style='color: orange;' title='REf: options, CER: 4'>position</strong> & physical & position & <strong style='color: orange;' title='REf: right, CER: 5'>for</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: top, CER: 2'>for</strong> & undedactable \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,6ms & 79,3\% & 2,90 & 6 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>ma</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>menu</strong> & <strong style='color: orange;' title='REf: alternative, CER: 8'>online</strong> & <strong style='color: orange;' title='REf: bottom, CER: 4'>matter</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>matter</strong> & <strong style='color: orange;' title='REf: define, CER: 3'>online</strong> & <strong style='color: orange;' title='REf: display, CER: 6'>richt</strong> & for & <strong style='color: orange;' title='REf: help, CER: 3'>menu</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>ma</strong> & <strong style='color: orange;' title='REf: left, CER: 1'>let</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>ma</strong> & menu & <strong style='color: orange;' title='REf: MM, CER: 2'>ma</strong> & <strong style='color: orange;' title='REf: monitor, CER: 4'>matter</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & online & <strong style='color: orange;' title='REf: options, CER: 3'>opti</strong> & <strong style='color: orange;' title='REf: physical, CER: 6'>richt</strong> & position & <strong style='color: orange;' title='REf: right, CER: 1'>richt</strong> & the & top & <strong style='color: orange;' title='REf: undedactable, CER: 10'>the</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,4ms & 82,8\% & 2,97 & 5 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>mm</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>mm</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>mm</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>mm</strong> & <strong style='color: orange;' title='REf: alternative, CER: 8'>define</strong> & <strong style='color: orange;' title='REf: bottom, CER: 4'>monitor</strong> & cancel & define & <strong style='color: orange;' title='REf: display, CER: 6'>define</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>tos</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>mm</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>mm</strong> & <strong style='color: orange;' title='REf: left, CER: 4'>define</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>mm</strong> & <strong style='color: orange;' title='REf: menu, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: MM, CER: 2'>mm</strong> & monitor & <strong style='color: orange;' title='REf: name, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>mm</strong> & <strong style='color: orange;' title='REf: online, CER: 3'>define</strong> & <strong style='color: orange;' title='REf: options, CER: 4'>position</strong> & physical & position & <strong style='color: orange;' title='REf: right, CER: 5'>mm</strong> & <strong style='color: orange;' title='REf: the, CER: 2'>tos</strong> & <strong style='color: orange;' title='REf: top, CER: 1'>tos</strong> & <strong style='color: orange;' title='REf: undedactable, CER: 9'>define</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,7ms & 100,0\% & 4,55 & 0 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>43</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>43</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>43</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>43</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>43</strong> & <strong style='color: orange;' title='REf: 3840, CER: 3'>43</strong> & <strong style='color: orange;' title='REf: alternative, CER: 11'>43</strong> & <strong style='color: orange;' title='REf: bottom, CER: 5'>co</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>co</strong> & <strong style='color: orange;' title='REf: define, CER: 6'>43</strong> & <strong style='color: orange;' title='REf: display, CER: 7'>43</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>co</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>43</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>43</strong> & <strong style='color: orange;' title='REf: left, CER: 4'>43</strong> & <strong style='color: orange;' title='REf: M, CER: 2'>43</strong> & <strong style='color: orange;' title='REf: menu, CER: 4'>43</strong> & <strong style='color: orange;' title='REf: MM, CER: 2'>43</strong> & <strong style='color: orange;' title='REf: monitor, CER: 6'>co</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>43</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>43</strong> & <strong style='color: orange;' title='REf: online, CER: 6'>43</strong> & <strong style='color: orange;' title='REf: options, CER: 6'>co</strong> & <strong style='color: orange;' title='REf: physical, CER: 7'>co</strong> & <strong style='color: orange;' title='REf: position, CER: 7'>co</strong> & <strong style='color: orange;' title='REf: right, CER: 5'>43</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>43</strong> & <strong style='color: orange;' title='REf: top, CER: 2'>co</strong> & <strong style='color: orange;' title='REf: undedactable, CER: 11'>co</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,8ms & 100,0\% & 4,83 & 0 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 000, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: 001, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: 1080, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: 1920, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: 3840, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: alternative, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: bottom, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: define, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: display, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: left, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: M, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: menu, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: MM, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: monitor, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: online, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: physical, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: position, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: right, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: top, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: undedactable, CER: 12'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 1,0ms & 100,0\% & 5,41 & 0 / 29 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.editor\_multimonitor\_example\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: 000, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: 001, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: 1080, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: 1920, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: 3840, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: alternative, CER: 7'>detine</strong> & <strong style='color: orange;' title='REf: bottom, CER: 5'>detine</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: define, CER: 1'>detine</strong> & <strong style='color: orange;' title='REf: display, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: for, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: help, CER: 5'>detine</strong> & <strong style='color: orange;' title='REf: in, CER: 4'>detine</strong> & <strong style='color: orange;' title='REf: left, CER: 5'>detine</strong> & <strong style='color: orange;' title='REf: M, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: menu, CER: 4'>detine</strong> & <strong style='color: orange;' title='REf: MM, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: monitor, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: name, CER: 5'>detine</strong> & <strong style='color: orange;' title='REf: ok, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: online, CER: 3'>detine</strong> & <strong style='color: orange;' title='REf: options, CER: 4'>detine</strong> & <strong style='color: orange;' title='REf: physical, CER: 7'>detine</strong> & <strong style='color: orange;' title='REf: position, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: right, CER: 6'>detine</strong> & <strong style='color: orange;' title='REf: the, CER: 4'>detine</strong> & <strong style='color: orange;' title='REf: top, CER: 5'>detine</strong> & <strong style='color: orange;' title='REf: undedactable, CER: 8'>detine</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 27,6\% & 0,59 & 22 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.editor\_multimonitor\_example\_007.png}} & in & 1080 & top & 1080 & 1920 & 3840 & alternative & bottom & name & define & display & for & help & in & left & in & menu & in & monitor & name & top & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,9ms & 31,0\% & 0,69 & 21 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.editor\_multimonitor\_example\_007.png}} & in & 1080 & 1080 & 1080 & 1920 & 3840 & alternative & bottom & name & define & display & for & the & in & left & in & menu & in & monitor & name & in & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 34,5\% & 0,69 & 21 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.editor\_multimonitor\_example\_007.png}} & in & 1080 & top & 1080 & 1920 & 3840 & alternative & bottom & name & define & display & for & top & in & left & in & menu & in & monitor & name & top & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 37,9\% & 0,76 & 19 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.editor\_multimonitor\_example\_007.png}} & in & 1030 & top & 1030 & 1920 & 3340 & alternative & bottom & name & define & display & for & top & in & left & in & menu & in & monitor & name & top & online & options & physical & position & right & the & top & undedactable \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,4ms & 82,8\% & 2,97 & 5 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.editor\_multimonitor\_example\_007.png}} & mm & mm & mm & mm & mm & mm & define & monitor & cancel & define & define & tos & mm & mm & define & mm & mm & mm & monitor & mm & mm & define & position & physical & position & mm & tos & tos & define \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,7ms & 100,0\% & 4,55 & 0 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.editor\_multimonitor\_example\_007.png}} & 43 & 43 & 43 & 43 & 43 & 43 & 43 & co & co & 43 & 43 & co & 43 & 43 & 43 & 43 & 43 & 43 & co & 43 & 43 & 43 & co & co & co & 43 & 43 & co & co \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,8ms & 100,0\% & 4,83 & 0 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.editor\_multimonitor\_example\_007.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 1,0ms & 100,0\% & 5,41 & 0 / 29 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.editor\_multimonitor\_example\_007.png}} & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine & detine \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{active} & \textbf{axis} & \textbf{clipboard} & \textbf{color} & \textbf{continue} & \textbf{copy} & \textbf{cursor} & \textbf{curve} & \textbf{delete} & \textbf{diagram} & \textbf{export} & \textbf{filter} & \textbf{import} & \textbf{name} & \textbf{off} & \textbf{on} & \textbf{play} & \textbf{print} & \textbf{profiles} & \textbf{refresh} & \textbf{rezoom} & \textbf{savve} & \textbf{settings} & \textbf{stop} & \textbf{text} & \textbf{title} & \textbf{to} & \textbf{trend} & \textbf{WIZ\_VAR\_10} & \textbf{WIZ\_VAR\_11} & \textbf{WIZ\_VAR\_12} & \textbf{WIZ10} & \textbf{zoom} \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 81,8\% & 2,85 & 9 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>10</strong> & clipboard & <strong style='color: orange;' title='REf: color, CER: 3'>zoom</strong> & <strong style='color: orange;' title='REf: continue, CER: 5'>settings</strong> & copy & cursor & <strong style='color: orange;' title='REf: curve, CER: 3'>cursor</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: diagram, CER: 5'>lag</strong> & export & <strong style='color: orange;' title='REf: filter, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: import, CER: 2'>export</strong> & name & <strong style='color: orange;' title='REf: off, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: play, CER: 2'>lag</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: profiles, CER: 6'>settings</strong> & <strong style='color: orange;' title='REf: refresh, CER: 4'>reroam</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 2'>zoom</strong> & <strong style='color: orange;' title='REf: savve, CER: 3'>name</strong> & settings & <strong style='color: orange;' title='REf: stop, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: text, CER: 2'>tt</strong> & <strong style='color: orange;' title='REf: title, CER: 2'>tale</strong> & to & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 8'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 9'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 9'>10</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & zoom \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 87,9\% & 2,45 & 10 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 3'>tile</strong> & <strong style='color: orange;' title='REf: axis, CER: 3'>ia</strong> & clipboard & color & <strong style='color: orange;' title='REf: continue, CER: 5'>title</strong> & copy & cursor & <strong style='color: orange;' title='REf: curve, CER: 2'>cune</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>poet</strong> & <strong style='color: orange;' title='REf: diagram, CER: 5'>ia</strong> & export & <strong style='color: orange;' title='REf: filter, CER: 3'>tile</strong> & import & <strong style='color: orange;' title='REf: name, CER: 2'>save</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>to</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>copy</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: profiles, CER: 5'>poet</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 2'>zoom</strong> & <strong style='color: orange;' title='REf: savve, CER: 1'>save</strong> & <strong style='color: orange;' title='REf: settings, CER: 2'>setungs</strong> & <strong style='color: orange;' title='REf: stop, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>trend</strong> & title & to & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 7'>wu\_var\_11</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 6'>wu\_var\_11</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 7'>wu\_var\_11</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & zoom \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 90,9\% & 3,21 & 6 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 4'>tue</strong> & <strong style='color: orange;' title='REf: axis, CER: 3'>vazio</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 6'>export</strong> & <strong style='color: orange;' title='REf: color, CER: 3'>copy</strong> & <strong style='color: orange;' title='REf: continue, CER: 5'>settings</strong> & copy & <strong style='color: orange;' title='REf: cursor, CER: 4'>cum</strong> & <strong style='color: orange;' title='REf: curve, CER: 3'>tue</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>wee</strong> & <strong style='color: orange;' title='REf: diagram, CER: 5'>gm</strong> & export & <strong style='color: orange;' title='REf: filter, CER: 4'>fin</strong> & <strong style='color: orange;' title='REf: import, CER: 2'>export</strong> & name & <strong style='color: orange;' title='REf: off, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>copy</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: profiles, CER: 6'>settings</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 4'>vazio</strong> & <strong style='color: orange;' title='REf: savve, CER: 3'>name</strong> & settings & <strong style='color: orange;' title='REf: stop, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: title, CER: 3'>tue</strong> & to & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 6'>wuz\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 7'>wuz\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 7'>wuz\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zoom, CER: 3'>copy</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 90,9\% & 2,48 & 9 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 2'>acine</strong> & <strong style='color: orange;' title='REf: axis, CER: 3'>acine</strong> & clipboard & <strong style='color: orange;' title='REf: color, CER: 3'>zoom</strong> & <strong style='color: orange;' title='REf: continue, CER: 4'>stopcontinue</strong> & copy & cursor & <strong style='color: orange;' title='REf: curve, CER: 1'>cure</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>tile</strong> & <strong style='color: orange;' title='REf: diagram, CER: 5'>ita</strong> & export & <strong style='color: orange;' title='REf: filter, CER: 3'>tile</strong> & import & name & <strong style='color: orange;' title='REf: off, CER: 2'>oo</strong> & <strong style='color: orange;' title='REf: on, CER: 1'>oo</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>copy</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>acine</strong> & <strong style='color: orange;' title='REf: profiles, CER: 5'>tile</strong> & refresh & <strong style='color: orange;' title='REf: rezoom, CER: 2'>zoom</strong> & <strong style='color: orange;' title='REf: savve, CER: 1'>save</strong> & <strong style='color: orange;' title='REf: settings, CER: 1'>setiings</strong> & <strong style='color: orange;' title='REf: stop, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>to</strong> & <strong style='color: orange;' title='REf: title, CER: 1'>tile</strong> & to & <strong style='color: orange;' title='REf: trend, CER: 4'>cune</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 8'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 9'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 9'>10</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & zoom \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 93,9\% & 4,61 & 2 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 5'>wis</strong> & <strong style='color: orange;' title='REf: axis, CER: 2'>wis</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 8'>trend</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: continue, CER: 7'>trend</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: cursor, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: diagram, CER: 6'>wis</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>profiles</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>16</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>trend</strong> & profiles & <strong style='color: orange;' title='REf: refresh, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: settings, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: title, CER: 4'>trend</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>16</strong> & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 8'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 9'>16</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 9'>16</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>16</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 97,0\% & 4,79 & 1 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 5'>wis</strong> & <strong style='color: orange;' title='REf: axis, CER: 2'>wis</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 8'>trend</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: continue, CER: 7'>trend</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: cursor, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: diagram, CER: 6'>wis</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>wis</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>16</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: profiles, CER: 6'>wis</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: settings, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>16</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: title, CER: 4'>trend</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>16</strong> & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 8'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 9'>16</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 9'>16</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>16</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 97,0\% & 3,94 & 2 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 3'>tile</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 6'>color</strong> & color & <strong style='color: orange;' title='REf: continue, CER: 5'>tile</strong> & <strong style='color: orange;' title='REf: copy, CER: 3'>color</strong> & <strong style='color: orange;' title='REf: cursor, CER: 3'>color</strong> & <strong style='color: orange;' title='REf: curve, CER: 4'>color</strong> & <strong style='color: orange;' title='REf: delete, CER: 3'>let</strong> & <strong style='color: orange;' title='REf: diagram, CER: 6'>color</strong> & <strong style='color: orange;' title='REf: export, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: filter, CER: 3'>tile</strong> & <strong style='color: orange;' title='REf: import, CER: 4'>color</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>tile</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>18</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>18</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>let</strong> & <strong style='color: orange;' title='REf: print, CER: 4'>text</strong> & <strong style='color: orange;' title='REf: profiles, CER: 5'>tile</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>gee</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>text</strong> & <strong style='color: orange;' title='REf: savve, CER: 4'>tile</strong> & <strong style='color: orange;' title='REf: settings, CER: 6'>text</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>text</strong> & text & <strong style='color: orange;' title='REf: title, CER: 1'>tile</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>18</strong> & <strong style='color: orange;' title='REf: trend, CER: 3'>text</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 8'>10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 9'>18</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 9'>18</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zoom, CER: 3'>color</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 97,0\% & 2,76 & 8 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & active & <strong style='color: orange;' title='REf: axis, CER: 1'>yaxis</strong> & clipboard & color & <strong style='color: orange;' title='REf: continue, CER: 5'>cune</strong> & copy & <strong style='color: orange;' title='REf: cursor, CER: 3'>color</strong> & <strong style='color: orange;' title='REf: curve, CER: 2'>cune</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: diagram, CER: 5'>gm</strong> & export & <strong style='color: orange;' title='REf: filter, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: import, CER: 2'>export</strong> & name & <strong style='color: orange;' title='REf: off, CER: 2'>ot</strong> & <strong style='color: orange;' title='REf: on, CER: 1'>ot</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>copy</strong> & <strong style='color: orange;' title='REf: print, CER: 2'>pont</strong> & <strong style='color: orange;' title='REf: profiles, CER: 6'>tale</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: savve, CER: 3'>tale</strong> & <strong style='color: orange;' title='REf: settings, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: stop, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: title, CER: 2'>tale</strong> & to & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 6'>wiz\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 7'>wiz\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 6'>wiz\_var\_12</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zoom, CER: 3'>color</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 100,0\% & 5,73 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: continue, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: cursor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: diagram, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: print, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: profiles, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: refresh, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: title, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: trend, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 5,03 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 5'>gee</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>ged</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 8'>ged</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>ged</strong> & <strong style='color: orange;' title='REf: continue, CER: 7'>gee</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>ged</strong> & <strong style='color: orange;' title='REf: cursor, CER: 6'>ged</strong> & <strong style='color: orange;' title='REf: curve, CER: 4'>gee</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>gee</strong> & <strong style='color: orange;' title='REf: diagram, CER: 6'>ged</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>ged</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>ged</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>ged</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>gee</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>ged</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>17</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>ged</strong> & <strong style='color: orange;' title='REf: print, CER: 5'>ged</strong> & <strong style='color: orange;' title='REf: profiles, CER: 7'>ged</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>gee</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>ged</strong> & <strong style='color: orange;' title='REf: savve, CER: 4'>gee</strong> & <strong style='color: orange;' title='REf: settings, CER: 7'>ged</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>ged</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>ged</strong> & <strong style='color: orange;' title='REf: title, CER: 4'>gee</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>17</strong> & <strong style='color: orange;' title='REf: trend, CER: 3'>ged</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 9'>17</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 9'>17</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 9'>17</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 4'>17</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>ged</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 100,0\% & 4,55 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 5'>tt</strong> & <strong style='color: orange;' title='REf: axis, CER: 3'>sss</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 8'>tot</strong> & <strong style='color: orange;' title='REf: color, CER: 4'>tot</strong> & <strong style='color: orange;' title='REf: continue, CER: 6'>tot</strong> & <strong style='color: orange;' title='REf: copy, CER: 3'>tot</strong> & <strong style='color: orange;' title='REf: cursor, CER: 5'>tot</strong> & <strong style='color: orange;' title='REf: curve, CER: 4'>fae</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>tt</strong> & <strong style='color: orange;' title='REf: diagram, CER: 6'>fae</strong> & <strong style='color: orange;' title='REf: export, CER: 4'>tot</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>fae</strong> & <strong style='color: orange;' title='REf: import, CER: 4'>tot</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>fae</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>tt</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>tt</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>fae</strong> & <strong style='color: orange;' title='REf: print, CER: 4'>tt</strong> & <strong style='color: orange;' title='REf: profiles, CER: 6'>fae</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>fae</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>tot</strong> & <strong style='color: orange;' title='REf: savve, CER: 3'>fae</strong> & <strong style='color: orange;' title='REf: settings, CER: 6'>tt</strong> & <strong style='color: orange;' title='REf: stop, CER: 2'>tot</strong> & <strong style='color: orange;' title='REf: text, CER: 2'>tt</strong> & <strong style='color: orange;' title='REf: title, CER: 3'>tt</strong> & <strong style='color: orange;' title='REf: to, CER: 1'>tt</strong> & <strong style='color: orange;' title='REf: trend, CER: 4'>tt</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 10'>tt</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 10'>tt</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 10'>tt</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 5'>tt</strong> & <strong style='color: orange;' title='REf: zoom, CER: 3'>tot</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 100,0\% & 5,73 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: continue, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: cursor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: diagram, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: print, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: profiles, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: refresh, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: title, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: trend, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 100,0\% & 5,73 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: continue, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: cursor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: diagram, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: print, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: profiles, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: refresh, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: title, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: trend, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 100,0\% & 3,91 & 1 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: axis, CER: 2'>ax</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 8'>trend</strong> & <strong style='color: orange;' title='REf: color, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: continue, CER: 5'>cune</strong> & <strong style='color: orange;' title='REf: copy, CER: 3'>cune</strong> & <strong style='color: orange;' title='REf: cursor, CER: 4'>cune</strong> & <strong style='color: orange;' title='REf: curve, CER: 2'>cune</strong> & <strong style='color: orange;' title='REf: delete, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: diagram, CER: 5'>nama</strong> & <strong style='color: orange;' title='REf: export, CER: 5'>watt</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>tale</strong> & <strong style='color: orange;' title='REf: import, CER: 5'>watt</strong> & <strong style='color: orange;' title='REf: name, CER: 1'>nama</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: play, CER: 3'>waz</strong> & <strong style='color: orange;' title='REf: print, CER: 3'>trend</strong> & <strong style='color: orange;' title='REf: profiles, CER: 6'>tale</strong> & <strong style='color: orange;' title='REf: refresh, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 5'>trend</strong> & <strong style='color: orange;' title='REf: savve, CER: 3'>tale</strong> & <strong style='color: orange;' title='REf: settings, CER: 6'>trend</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>10</strong> & <strong style='color: orange;' title='REf: text, CER: 2'>twat</strong> & <strong style='color: orange;' title='REf: title, CER: 2'>tale</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>10</strong> & trend & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 6'>w\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 7'>w\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 7'>w\_var\_10</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>10</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 5,73 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: continue, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: cursor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: diagram, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: export, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: import, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: off, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: print, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: profiles, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: refresh, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: text, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: title, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: trend, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 100,0\% & 5,27 & 0 / 33 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.etm\_gantt\_runtime\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: active, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: axis, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: clipboard, CER: 9'>ft</strong> & <strong style='color: orange;' title='REf: color, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: continue, CER: 7'>ft</strong> & <strong style='color: orange;' title='REf: copy, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: cursor, CER: 6'>ft</strong> & <strong style='color: orange;' title='REf: curve, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: diagram, CER: 7'>ft</strong> & <strong style='color: orange;' title='REf: export, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: import, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: off, CER: 2'>ft</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>ft</strong> & <strong style='color: orange;' title='REf: play, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: print, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: profiles, CER: 7'>ft</strong> & <strong style='color: orange;' title='REf: refresh, CER: 6'>ft</strong> & <strong style='color: orange;' title='REf: rezoom, CER: 6'>ft</strong> & <strong style='color: orange;' title='REf: savve, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: settings, CER: 7'>ft</strong> & <strong style='color: orange;' title='REf: stop, CER: 3'>ft</strong> & <strong style='color: orange;' title='REf: text, CER: 3'>ft</strong> & <strong style='color: orange;' title='REf: title, CER: 4'>ft</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>ft</strong> & <strong style='color: orange;' title='REf: trend, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_10, CER: 10'>ft</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_11, CER: 10'>ft</strong> & <strong style='color: orange;' title='REf: WIZ\_VAR\_12, CER: 10'>ft</strong> & <strong style='color: orange;' title='REf: WIZ10, CER: 5'>ft</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>ft</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 81,8\% & 2,85 & 9 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.etm\_gantt\_runtime\_001.png}} & tale & 10 & clipboard & zoom & settings & copy & cursor & cursor & tale & lag & export & tale & export & name & 10 & 10 & lag & trend & settings & reroam & zoom & name & settings & to & tt & tale & to & trend & 10 & 10 & 10 & 10 & zoom \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 87,9\% & 2,45 & 10 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.etm\_gantt\_runtime\_001.png}} & tile & ia & clipboard & color & title & copy & cursor & cune & poet & ia & export & tile & import & save & to & to & copy & trend & poet & trend & zoom & save & setungs & to & trend & title & to & trend & wu\_var\_11 & wu\_var\_11 & wu\_var\_11 & 10 & zoom \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 90,9\% & 3,21 & 6 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.etm\_gantt\_runtime\_001.png}} & tue & vazio & export & copy & settings & copy & cum & tue & wee & gm & export & fin & export & name & 10 & 10 & copy & trend & settings & trend & vazio & name & settings & to & trend & tue & to & trend & wuz\_var\_10 & wuz\_var\_10 & wuz\_var\_10 & 10 & copy \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 90,9\% & 2,48 & 9 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.etm\_gantt\_runtime\_001.png}} & acine & acine & clipboard & zoom & stopcontinue & copy & cursor & cure & tile & ita & export & tile & import & name & oo & oo & copy & acine & tile & refresh & zoom & save & setiings & to & to & tile & to & cune & 10 & 10 & 10 & 10 & zoom \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 0,6ms & 100,0\% & 5,73 & 0 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.etm\_gantt\_runtime\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 100,0\% & 3,91 & 1 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.etm\_gantt\_runtime\_001.png}} & tale & ax & trend & tale & cune & cune & cune & cune & tale & nama & watt & tale & watt & nama & 10 & 10 & waz & trend & tale & trend & trend & tale & trend & 10 & twat & tale & 10 & trend & w\_var\_10 & w\_var\_10 & w\_var\_10 & 10 & 10 \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 5,73 & 0 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.etm\_gantt\_runtime\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 100,0\% & 5,27 & 0 / 33 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.etm\_gantt\_runtime\_001.png}} & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft & ft \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{a} & \textbf{aggregated} & \textbf{an} & \textbf{and} & \textbf{archive} & \textbf{archives} & \textbf{assistant} & \textbf{average} & \textbf{back} & \textbf{basic} & \textbf{be} & \textbf{can} & \textbf{cancel} & \textbf{certain} & \textbf{create} & \textbf{data} & \textbf{engineering} & \textbf{extended} & \textbf{for} & \textbf{help} & \textbf{if} & \textbf{in} & \textbf{longer} & \textbf{maximum} & \textbf{minimum} & \textbf{next} & \textbf{now} & \textbf{of} & \textbf{over} & \textbf{page} & \textbf{period} & \textbf{press} & \textbf{process} & \textbf{recorded} & \textbf{recording} & \textbf{serve} & \textbf{should} & \textbf{start} & \textbf{sum} & \textbf{summarized} & \textbf{teditor} & \textbf{the} & \textbf{this} & \textbf{time} & \textbf{to} & \textbf{trend} & \textbf{used} & \textbf{value} & \textbf{values} & \textbf{want} & \textbf{with} & \textbf{without} & \textbf{you} \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 15,1\% & 0,13 & 50 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>help</strong> & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 15,1\% & 0,08 & 51 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 17,0\% & 0,13 & 50 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & <strong style='color: orange;' title='REf: back, CER: 3'>basic</strong> & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 17,0\% & 0,08 & 51 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 17,0\% & 0,19 & 49 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & <strong style='color: orange;' title='REf: back, CER: 3'>be</strong> & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>be</strong> & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 17,0\% & 0,13 & 50 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>help</strong> & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 17,0\% & 0,11 & 50 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & <strong style='color: orange;' title='REf: back, CER: 2'>baie</strong> & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 18,9\% & 0,25 & 48 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & <strong style='color: orange;' title='REf: back, CER: 3'>be</strong> & basic & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>be</strong> & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 18,9\% & 0,25 & 48 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & <strong style='color: orange;' title='REf: aggregated, CER: 5'>create</strong> & an & and & archive & archives & assistant & average & <strong style='color: orange;' title='REf: back, CER: 3'>can</strong> & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & <strong style='color: orange;' title='REf: without, CER: 1'>yithout</strong> & you \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 30,2\% & 0,66 & 40 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & <strong style='color: orange;' title='REf: average, CER: 4'>serve</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>be</strong> & basic & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & certain & <strong style='color: orange;' title='REf: create, CER: 4'>serve</strong> & data & engineering & extended & for & help & <strong style='color: orange;' title='REf: if, CER: 1'>of</strong> & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>be</strong> & <strong style='color: orange;' title='REf: now, CER: 2'>of</strong> & of & over & <strong style='color: orange;' title='REf: page, CER: 3'>be</strong> & period & press & process & recorded & recording & serve & should & <strong style='color: orange;' title='REf: start, CER: 3'>want</strong> & <strong style='color: orange;' title='REf: sum, CER: 3'>be</strong> & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & <strong style='color: orange;' title='REf: time, CER: 2'>the</strong> & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 32,1\% & 0,40 & 44 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & aggregated & an & and & archive & archives & assistant & average & <strong style='color: orange;' title='REf: back, CER: 3'>data</strong> & basic & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & certain & create & data & engineering & extended & for & help & <strong style='color: orange;' title='REf: if, CER: 1'>of</strong> & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>be</strong> & <strong style='color: orange;' title='REf: now, CER: 2'>of</strong> & of & over & page & period & <strong style='color: orange;' title='REf: press, CER: 2'>process</strong> & process & recorded & recording & serve & should & start & sum & summarized & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & this & time & to & trend & used & value & values & want & with & <strong style='color: orange;' title='REf: without, CER: 3'>with</strong> & you \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 47,2\% & 0,98 & 35 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>ha</strong> & <strong style='color: orange;' title='REf: aggregated, CER: 3'>aggrega</strong> & an & <strong style='color: orange;' title='REf: and, CER: 1'>an</strong> & archive & archives & assistant & <strong style='color: orange;' title='REf: average, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>page</strong> & basic & be & can & cancel & <strong style='color: orange;' title='REf: certain, CER: 4'>create</strong> & create & data & engineering & extended & for & help & <strong style='color: orange;' title='REf: if, CER: 1'>of</strong> & in & longer & <strong style='color: orange;' title='REf: maximum, CER: 5'>basic</strong> & <strong style='color: orange;' title='REf: minimum, CER: 5'>without</strong> & <strong style='color: orange;' title='REf: next, CER: 3'>want</strong> & now & of & <strong style='color: orange;' title='REf: over, CER: 3'>of</strong> & page & period & press & <strong style='color: orange;' title='REf: process, CER: 2'>press</strong> & recorded & recording & serve & should & start & <strong style='color: orange;' title='REf: sum, CER: 3'>of</strong> & <strong style='color: orange;' title='REf: summarized, CER: 7'>recorded</strong> & <strong style='color: orange;' title='REf: teditor, CER: 3'>edit</strong> & the & <strong style='color: orange;' title='REf: this, CER: 2'>the</strong> & time & <strong style='color: orange;' title='REf: to, CER: 1'>io</strong> & trend & used & value & <strong style='color: orange;' title='REf: values, CER: 1'>value</strong> & want & with & without & you \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 56,6\% & 1,79 & 24 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>can</strong> & aggregated & <strong style='color: orange;' title='REf: an, CER: 1'>can</strong> & and & archive & archives & <strong style='color: orange;' title='REf: assistant, CER: 7'>data</strong> & <strong style='color: orange;' title='REf: average, CER: 4'>over</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: basic, CER: 4'>data</strong> & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & certain & create & data & <strong style='color: orange;' title='REf: engineering, CER: 8'>period</strong> & <strong style='color: orange;' title='REf: extended, CER: 5'>recorded</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>of</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>be</strong> & <strong style='color: orange;' title='REf: if, CER: 1'>of</strong> & in & longer & maximum & minimum & <strong style='color: orange;' title='REf: next, CER: 3'>be</strong> & <strong style='color: orange;' title='REf: now, CER: 2'>of</strong> & of & over & <strong style='color: orange;' title='REf: page, CER: 3'>data</strong> & period & <strong style='color: orange;' title='REf: press, CER: 2'>process</strong> & process & recorded & recording & <strong style='color: orange;' title='REf: serve, CER: 4'>be</strong> & <strong style='color: orange;' title='REf: should, CER: 5'>of</strong> & <strong style='color: orange;' title='REf: start, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: sum, CER: 3'>can</strong> & summarized & <strong style='color: orange;' title='REf: teditor, CER: 4'>period</strong> & the & <strong style='color: orange;' title='REf: this, CER: 2'>the</strong> & time & <strong style='color: orange;' title='REf: to, CER: 2'>be</strong> & <strong style='color: orange;' title='REf: trend, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: used, CER: 3'>be</strong> & value & values & <strong style='color: orange;' title='REf: want, CER: 2'>can</strong> & <strong style='color: orange;' title='REf: with, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: without, CER: 5'>the</strong> & <strong style='color: orange;' title='REf: you, CER: 2'>of</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 71,7\% & 2,60 & 15 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 3'>ofan</strong> & aggregated & <strong style='color: orange;' title='REf: an, CER: 2'>ofan</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>ofan</strong> & archive & archives & assistant & <strong style='color: orange;' title='REf: average, CER: 4'>create</strong> & <strong style='color: orange;' title='REf: back, CER: 3'>page</strong> & basic & <strong style='color: orange;' title='REf: be, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: can, CER: 2'>ofan</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: certain, CER: 4'>create</strong> & create & <strong style='color: orange;' title='REf: data, CER: 3'>page</strong> & engineering & <strong style='color: orange;' title='REf: extended, CER: 6'>create</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>you</strong> & help & <strong style='color: orange;' title='REf: if, CER: 3'>this</strong> & <strong style='color: orange;' title='REf: in, CER: 3'>this</strong> & <strong style='color: orange;' title='REf: longer, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: maximum, CER: 5'>basic</strong> & <strong style='color: orange;' title='REf: minimum, CER: 6'>this</strong> & <strong style='color: orange;' title='REf: next, CER: 3'>help</strong> & <strong style='color: orange;' title='REf: now, CER: 2'>you</strong> & <strong style='color: orange;' title='REf: of, CER: 2'>ofan</strong> & <strong style='color: orange;' title='REf: over, CER: 3'>ofan</strong> & page & <strong style='color: orange;' title='REf: period, CER: 5'>this</strong> & <strong style='color: orange;' title='REf: press, CER: 4'>this</strong> & <strong style='color: orange;' title='REf: process, CER: 5'>page</strong> & <strong style='color: orange;' title='REf: recorded, CER: 6'>archives</strong> & <strong style='color: orange;' title='REf: recording, CER: 7'>create</strong> & <strong style='color: orange;' title='REf: serve, CER: 4'>start</strong> & should & start & <strong style='color: orange;' title='REf: sum, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: summarized, CER: 7'>start</strong> & <strong style='color: orange;' title='REf: teditor, CER: 5'>this</strong> & the & this & <strong style='color: orange;' title='REf: time, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: trend, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: used, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: value, CER: 3'>page</strong> & <strong style='color: orange;' title='REf: values, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: want, CER: 3'>start</strong> & with & <strong style='color: orange;' title='REf: without, CER: 3'>with</strong> & you \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 98,1\% & 4,15 & 1 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: aggregated, CER: 7'>recorded</strong> & <strong style='color: orange;' title='REf: an, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>recorded</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>recorded</strong> & <strong style='color: orange;' title='REf: assistant, CER: 7'>set</strong> & <strong style='color: orange;' title='REf: average, CER: 6'>set</strong> & <strong style='color: orange;' title='REf: back, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: basic, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: be, CER: 2'>set</strong> & <strong style='color: orange;' title='REf: can, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: certain, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: create, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: data, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: engineering, CER: 10'>recorded</strong> & <strong style='color: orange;' title='REf: extended, CER: 5'>recorded</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: if, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: in, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: longer, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: maximum, CER: 7'>set</strong> & <strong style='color: orange;' title='REf: minimum, CER: 7'>set</strong> & <strong style='color: orange;' title='REf: next, CER: 2'>set</strong> & <strong style='color: orange;' title='REf: now, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: of, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: over, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: page, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: period, CER: 5'>recorded</strong> & <strong style='color: orange;' title='REf: press, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: process, CER: 6'>set</strong> & recorded & <strong style='color: orange;' title='REf: recording, CER: 3'>recorded</strong> & <strong style='color: orange;' title='REf: serve, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: should, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: start, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: sum, CER: 2'>set</strong> & <strong style='color: orange;' title='REf: summarized, CER: 7'>recorded</strong> & <strong style='color: orange;' title='REf: teditor, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: to, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: trend, CER: 4'>set</strong> & <strong style='color: orange;' title='REf: used, CER: 2'>set</strong> & <strong style='color: orange;' title='REf: value, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: values, CER: 5'>set</strong> & <strong style='color: orange;' title='REf: want, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: with, CER: 3'>set</strong> & <strong style='color: orange;' title='REf: without, CER: 6'>set</strong> & <strong style='color: orange;' title='REf: you, CER: 3'>set</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 100,0\% & 5,15 & 0 / 53 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.historian\_assistent\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: aggregated, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: an, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archives, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: assistant, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: average, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: back, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: basic, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: be, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: can, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: certain, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: create, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: engineering, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: extended, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: if, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: longer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: maximum, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: minimum, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: now, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: of, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: over, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: page, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: period, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: press, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: process, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: recorded, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: recording, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: serve, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: should, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: start, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: sum, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: summarized, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: teditor, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: trend, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: used, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: value, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: values, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: want, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: with, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: without, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: you, CER: 3'>-</strong> \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 15,1\% & 0,13 & 50 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.historian\_assistent\_001.png}} & an & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & help & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & edit & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 15,1\% & 0,08 & 51 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.historian\_assistent\_001.png}} & an & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & edit & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 17,0\% & 0,13 & 50 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.historian\_assistent\_001.png}} & an & aggregated & an & and & archive & archives & assistant & average & basic & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & edit & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 17,0\% & 0,08 & 51 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.historian\_assistent\_001.png}} & an & aggregated & an & and & archive & archives & assistant & average & back & basic & be & can & cancel & certain & create & data & engineering & extended & for & help & if & in & longer & maximum & minimum & next & now & of & over & page & period & press & process & recorded & recording & serve & should & start & sum & summarized & edit & the & this & time & to & trend & used & value & values & want & with & without & you \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 0,5ms & 56,6\% & 1,79 & 24 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.historian\_assistent\_001.png}} & can & aggregated & can & and & archive & archives & data & over & data & data & be & can & can & certain & create & data & period & recorded & of & be & of & in & longer & maximum & minimum & be & of & of & over & data & period & process & process & recorded & recording & be & of & data & can & summarized & period & the & the & time & be & the & be & value & values & can & data & the & of \\ \hline
|
||||
ThresholdAd...ssor(16\_16) & 0,4ms & 71,7\% & 2,60 & 15 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.historian\_assistent\_001.png}} & ofan & aggregated & ofan & ofan & archive & archives & assistant & create & page & basic & the & ofan & page & create & create & page & engineering & create & you & help & this & this & page & basic & this & help & you & ofan & ofan & page & this & this & page & archives & create & start & should & start & the & start & this & the & this & the & the & the & the & page & page & start & with & with & you \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 98,1\% & 4,15 & 1 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.historian\_assistent\_001.png}} & set & recorded & set & set & recorded & recorded & set & set & set & set & set & set & set & set & set & set & recorded & recorded & set & set & set & set & set & set & set & set & set & set & set & set & recorded & set & set & recorded & recorded & set & set & set & set & recorded & set & set & set & set & set & set & set & set & set & set & set & set & set \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,5ms & 100,0\% & 5,15 & 0 / 53 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.historian\_assistent\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{alarm} & \textbf{archive} & \textbf{archiveex} & \textbf{archivem} & \textbf{archivemr} & \textbf{archivemsp} & \textbf{archivemspr} & \textbf{archiver} & \textbf{archivesp} & \textbf{archivexr} & \textbf{cancel} & \textbf{function} & \textbf{help} & \textbf{ok} & \textbf{options} & \textbf{parameter} & \textbf{settings} & \textbf{syntax} & \textbf{wizard} \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 21,1\% & 0,16 & 16 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archiver</strong> & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiver</strong> & cancel & function & help & <strong style='color: orange;' title='REf: ok, CER: 1'>ol</strong> & options & parameter & settings & syntax & wizard \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 26,3\% & 0,53 & 15 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archiver</strong> & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiver</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>alarm</strong> & function & <strong style='color: orange;' title='REf: help, CER: 3'>le</strong> & ok & options & parameter & settings & syntax & wizard \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 31,6\% & 0,47 & 15 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archiver</strong> & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiver</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>alarm</strong> & function & help & <strong style='color: orange;' title='REf: ok, CER: 2'>ur</strong> & options & parameter & settings & syntax & wizard \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 36,8\% & 0,74 & 14 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archiver</strong> & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiver</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>alarm</strong> & function & <strong style='color: orange;' title='REf: help, CER: 3'>thls</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>thls</strong> & options & parameter & settings & syntax & wizard \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 36,8\% & 0,74 & 14 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archiver</strong> & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiver</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>alarm</strong> & function & <strong style='color: orange;' title='REf: help, CER: 3'>thls</strong> & <strong style='color: orange;' title='REf: ok, CER: 4'>thls</strong> & options & parameter & settings & syntax & wizard \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 47,4\% & 1,68 & 11 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archiver</strong> & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiver</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>alarm</strong> & function & <strong style='color: orange;' title='REf: help, CER: 5'>alarm</strong> & <strong style='color: orange;' title='REf: ok, CER: 5'>alarm</strong> & options & parameter & <strong style='color: orange;' title='REf: settings, CER: 5'>options</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>function</strong> & <strong style='color: orange;' title='REf: wizard, CER: 4'>alarm</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 73,7\% & 2,32 & 6 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: archive, CER: 1'>archivem</strong> & archiveex & archivem & <strong style='color: orange;' title='REf: archivemr, CER: 1'>archivem</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 2'>archivem</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 3'>archivem</strong> & <strong style='color: orange;' title='REf: archiver, CER: 1'>archivem</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 2'>archiveex</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 1'>archiveexr</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>alarm</strong> & function & <strong style='color: orange;' title='REf: help, CER: 5'>alarm</strong> & <strong style='color: orange;' title='REf: ok, CER: 5'>alarm</strong> & <strong style='color: orange;' title='REf: options, CER: 5'>function</strong> & parameter & <strong style='color: orange;' title='REf: settings, CER: 7'>function</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>wizard</strong> & wizard \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 89,5\% & 6,26 & 2 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 4'>wizard</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>function</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 8'>wizard</strong> & <strong style='color: orange;' title='REf: archivem, CER: 7'>function</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 8'>wizard</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 9'>wizard</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 10'>wizard</strong> & <strong style='color: orange;' title='REf: archiver, CER: 7'>wizard</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 8'>wizard</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 8'>wizard</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>wizard</strong> & function & <strong style='color: orange;' title='REf: help, CER: 6'>wizard</strong> & <strong style='color: orange;' title='REf: ok, CER: 6'>wizard</strong> & <strong style='color: orange;' title='REf: options, CER: 5'>function</strong> & <strong style='color: orange;' title='REf: parameter, CER: 8'>wizard</strong> & <strong style='color: orange;' title='REf: settings, CER: 7'>function</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>wizard</strong> & wizard \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 100,0\% & 7,42 & 0 / 19 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.report\_example\_data-time\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: archiveex, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivem, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivemr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivemsp, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: archivemspr, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: archiver, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: archivesp, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: archivexr, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: function, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: settings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: syntax, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: wizard, CER: 6'>-</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 21,1\% & 0,16 & 16 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.report\_example\_data-time\_001.png}} & alarm & archiver & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & archiver & cancel & function & help & ol & options & parameter & settings & syntax & wizard \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 26,3\% & 0,53 & 15 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.report\_example\_data-time\_001.png}} & alarm & archiver & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & archiver & alarm & function & le & ok & options & parameter & settings & syntax & wizard \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 31,6\% & 0,47 & 15 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.report\_example\_data-time\_001.png}} & alarm & archiver & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & archiver & alarm & function & help & ur & options & parameter & settings & syntax & wizard \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 36,8\% & 0,74 & 14 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.report\_example\_data-time\_001.png}} & alarm & archiver & archiveex & archivem & archivemr & archivemsp & archivemspr & archiver & archivesp & archiver & alarm & function & thls & thls & options & parameter & settings & syntax & wizard \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 100,0\% & 7,42 & 0 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.report\_example\_data-time\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,8ms & 100,0\% & 7,42 & 0 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.report\_example\_data-time\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 7,42 & 0 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.report\_example\_data-time\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 100,0\% & 7,42 & 0 / 19 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.report\_example\_data-time\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{abs} & \textbf{absolute} & \textbf{alarms} & \textbf{batchhistory} & \textbf{collection} & \textbf{consumption} & \textbf{costs} & \textbf{data} & \textbf{datetimefilter} & \textbf{development} & \textbf{DPA} & \textbf{element} & \textbf{equipment} & \textbf{equipmentfilter} & \textbf{filter} & \textbf{filter()} & \textbf{frequent} & \textbf{group} & \textbf{integer} & \textbf{medium} & \textbf{misc} & \textbf{mnestinglevel} & \textbf{model} & \textbf{most} & \textbf{name} & \textbf{OEEFactor} & \textbf{parameterlist} & \textbf{per} & \textbf{projects} & \textbf{properties} & \textbf{rdl} & \textbf{related} & \textbf{relative} & \textbf{report} & \textbf{report1} & \textbf{reportassistant} & \textbf{single} & \textbf{string} & \textbf{tools} & \textbf{type} & \textbf{variables} & \textbf{ZAD\_CIP} & \textbf{ZAD\_GBL} & \textbf{ZAD\_MAIN} \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 86,4\% & 4,55 & 6 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & abs & <strong style='color: orange;' title='REf: absolute, CER: 5'>abs</strong> & <strong style='color: orange;' title='REf: alarms, CER: 4'>abs</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 9'>costs</strong> & collection & <strong style='color: orange;' title='REf: consumption, CER: 5'>collection</strong> & costs & <strong style='color: orange;' title='REf: data, CER: 1'>date</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 10'>date</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>abs</strong> & <strong style='color: orange;' title='REf: element, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 10'>properties</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>per</strong> & <strong style='color: orange;' title='REf: filter(), CER: 6'>per</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 4'>took</strong> & <strong style='color: orange;' title='REf: integer, CER: 5'>per</strong> & <strong style='color: orange;' title='REf: medium, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: misc, CER: 3'>abs</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 11'>costs</strong> & <strong style='color: orange;' title='REf: model, CER: 3'>dee</strong> & <strong style='color: orange;' title='REf: most, CER: 2'>costs</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>date</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 7'>date</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 8'>properties</strong> & per & <strong style='color: orange;' title='REf: projects, CER: 4'>properties</strong> & properties & <strong style='color: orange;' title='REf: rdl, CER: 2'>da</strong> & <strong style='color: orange;' title='REf: related, CER: 4'>date</strong> & <strong style='color: orange;' title='REf: relative, CER: 5'>date</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 5'>pee</strong> & <strong style='color: orange;' title='REf: string, CER: 5'>took</strong> & <strong style='color: orange;' title='REf: tools, CER: 2'>took</strong> & <strong style='color: orange;' title='REf: type, CER: 3'>took</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>abs</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>abs</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>abs</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>abs</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 93,2\% & 4,95 & 3 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & abs & <strong style='color: orange;' title='REf: absolute, CER: 5'>abs</strong> & <strong style='color: orange;' title='REf: alarms, CER: 4'>abs</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 9'>anintemt</strong> & <strong style='color: orange;' title='REf: collection, CER: 8'>took</strong> & <strong style='color: orange;' title='REf: consumption, CER: 9'>took</strong> & <strong style='color: orange;' title='REf: costs, CER: 4'>took</strong> & <strong style='color: orange;' title='REf: data, CER: 1'>date</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 10'>date</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>per</strong> & <strong style='color: orange;' title='REf: element, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>anintemt</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 11'>anintemt</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>per</strong> & <strong style='color: orange;' title='REf: filter(), CER: 6'>per</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 3'>gun</strong> & <strong style='color: orange;' title='REf: integer, CER: 5'>per</strong> & <strong style='color: orange;' title='REf: medium, CER: 4'>teun</strong> & <strong style='color: orange;' title='REf: misc, CER: 3'>il</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 9'>anintemt</strong> & <strong style='color: orange;' title='REf: model, CER: 3'>oe</strong> & <strong style='color: orange;' title='REf: most, CER: 3'>took</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>date</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 7'>kor</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>report</strong> & per & <strong style='color: orange;' title='REf: projects, CER: 5'>prt</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: rdl, CER: 2'>il</strong> & <strong style='color: orange;' title='REf: related, CER: 4'>date</strong> & <strong style='color: orange;' title='REf: relative, CER: 5'>date</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 4'>il</strong> & <strong style='color: orange;' title='REf: string, CER: 4'>teun</strong> & <strong style='color: orange;' title='REf: tools, CER: 2'>took</strong> & <strong style='color: orange;' title='REf: type, CER: 2'>pe</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>abs</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>per</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>per</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>per</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 93,2\% & 5,07 & 3 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: absolute, CER: 5'>tole</strong> & <strong style='color: orange;' title='REf: alarms, CER: 4'>as</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: collection, CER: 7'>tole</strong> & <strong style='color: orange;' title='REf: consumption, CER: 8'>mon</strong> & <strong style='color: orange;' title='REf: costs, CER: 4'>mon</strong> & <strong style='color: orange;' title='REf: data, CER: 2'>dae</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 11'>tole</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>mon</strong> & <strong style='color: orange;' title='REf: element, CER: 4'>men</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>men</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 12'>per</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>per</strong> & <strong style='color: orange;' title='REf: filter(), CER: 6'>per</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 4'>mon</strong> & <strong style='color: orange;' title='REf: integer, CER: 5'>per</strong> & <strong style='color: orange;' title='REf: medium, CER: 4'>model</strong> & <strong style='color: orange;' title='REf: misc, CER: 3'>mon</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 10'>model</strong> & model & <strong style='color: orange;' title='REf: most, CER: 2'>mon</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>dae</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 7'>recur</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>report</strong> & per & <strong style='color: orange;' title='REf: projects, CER: 5'>recur</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>mon</strong> & <strong style='color: orange;' title='REf: related, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: relative, CER: 6'>report</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 4'>tole</strong> & <strong style='color: orange;' title='REf: string, CER: 5'>mon</strong> & <strong style='color: orange;' title='REf: tools, CER: 2'>tole</strong> & <strong style='color: orange;' title='REf: type, CER: 2'>pe</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>vax</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>report</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 95,5\% & 5,68 & 2 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>rdl</strong> & <strong style='color: orange;' title='REf: absolute, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: alarms, CER: 5'>rdl</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: collection, CER: 8'>one</strong> & <strong style='color: orange;' title='REf: consumption, CER: 9'>one</strong> & <strong style='color: orange;' title='REf: costs, CER: 4'>one</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>rdl</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 12'>report</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>rdl</strong> & <strong style='color: orange;' title='REf: element, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 13'>report</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>rdl</strong> & <strong style='color: orange;' title='REf: filter(), CER: 7'>report</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 4'>rdl</strong> & <strong style='color: orange;' title='REf: integer, CER: 5'>one</strong> & <strong style='color: orange;' title='REf: medium, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>rdl</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 11'>one</strong> & <strong style='color: orange;' title='REf: model, CER: 3'>rdl</strong> & <strong style='color: orange;' title='REf: most, CER: 3'>one</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>one</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>rdl</strong> & <strong style='color: orange;' title='REf: projects, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>report</strong> & rdl & <strong style='color: orange;' title='REf: related, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: relative, CER: 6'>report</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 4'>one</strong> & <strong style='color: orange;' title='REf: string, CER: 5'>rdl</strong> & <strong style='color: orange;' title='REf: tools, CER: 4'>rdl</strong> & <strong style='color: orange;' title='REf: type, CER: 3'>one</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>rdl</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>report</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 97,7\% & 5,84 & 1 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 2'>adl</strong> & <strong style='color: orange;' title='REf: absolute, CER: 6'>adl</strong> & <strong style='color: orange;' title='REf: alarms, CER: 5'>adl</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: collection, CER: 9'>adl</strong> & <strong style='color: orange;' title='REf: consumption, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>adl</strong> & <strong style='color: orange;' title='REf: data, CER: 3'>adl</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 12'>adl</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>adl</strong> & <strong style='color: orange;' title='REf: element, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 13'>report</strong> & <strong style='color: orange;' title='REf: filter, CER: 5'>adl</strong> & <strong style='color: orange;' title='REf: filter(), CER: 7'>adl</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>adl</strong> & <strong style='color: orange;' title='REf: integer, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: medium, CER: 5'>adl</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>adl</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 12'>adl</strong> & <strong style='color: orange;' title='REf: model, CER: 3'>adl</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>adl</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>bae</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 8'>adl</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>adl</strong> & <strong style='color: orange;' title='REf: projects, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: rdl, CER: 1'>adl</strong> & <strong style='color: orange;' title='REf: related, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: relative, CER: 6'>report</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 5'>adl</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>adl</strong> & <strong style='color: orange;' title='REf: tools, CER: 4'>adl</strong> & <strong style='color: orange;' title='REf: type, CER: 3'>bae</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>adl</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>adl</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>adl</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>adl</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 97,7\% & 5,39 & 1 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 2'>das</strong> & <strong style='color: orange;' title='REf: absolute, CER: 5'>ble</strong> & <strong style='color: orange;' title='REf: alarms, CER: 4'>das</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: collection, CER: 8'>toots</strong> & <strong style='color: orange;' title='REf: consumption, CER: 9'>toots</strong> & <strong style='color: orange;' title='REf: costs, CER: 2'>toots</strong> & <strong style='color: orange;' title='REf: data, CER: 2'>das</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 12'>report</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>das</strong> & <strong style='color: orange;' title='REf: element, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 13'>report</strong> & <strong style='color: orange;' title='REf: filter, CER: 4'>ble</strong> & <strong style='color: orange;' title='REf: filter(), CER: 6'>ble</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 4'>toots</strong> & <strong style='color: orange;' title='REf: integer, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: medium, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: misc, CER: 3'>das</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 11'>ble</strong> & <strong style='color: orange;' title='REf: model, CER: 3'>adl</strong> & <strong style='color: orange;' title='REf: most, CER: 3'>toots</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>das</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>das</strong> & <strong style='color: orange;' title='REf: projects, CER: 5'>toots</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: rdl, CER: 1'>adl</strong> & <strong style='color: orange;' title='REf: related, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: relative, CER: 6'>report</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 4'>ble</strong> & <strong style='color: orange;' title='REf: string, CER: 5'>toots</strong> & <strong style='color: orange;' title='REf: tools, CER: 1'>toots</strong> & <strong style='color: orange;' title='REf: type, CER: 3'>ble</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>ble</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>report</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 97,7\% & 6,16 & 1 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>18</strong> & <strong style='color: orange;' title='REf: absolute, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: collection, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: consumption, CER: 10'>report</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>18</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 12'>report</strong> & <strong style='color: orange;' title='REf: development, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>18</strong> & <strong style='color: orange;' title='REf: element, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 13'>report</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: filter(), CER: 7'>report</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: integer, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: medium, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>18</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 12'>report</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>18</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>report</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>18</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>18</strong> & <strong style='color: orange;' title='REf: projects, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>18</strong> & <strong style='color: orange;' title='REf: related, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: relative, CER: 6'>report</strong> & report & <strong style='color: orange;' title='REf: report1, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 9'>report</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>18</strong> & <strong style='color: orange;' title='REf: variables, CER: 8'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>report</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 5,30 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>vox</strong> & <strong style='color: orange;' title='REf: absolute, CER: 5'>alter</strong> & <strong style='color: orange;' title='REf: alarms, CER: 4'>alter</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 7'>actor</strong> & <strong style='color: orange;' title='REf: collection, CER: 7'>actor</strong> & <strong style='color: orange;' title='REf: consumption, CER: 9'>actor</strong> & <strong style='color: orange;' title='REf: costs, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>actor</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 9'>fiter</strong> & <strong style='color: orange;' title='REf: development, CER: 6'>elomanto</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>vox</strong> & <strong style='color: orange;' title='REf: element, CER: 3'>elomanto</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>elomanto</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 10'>fiter</strong> & <strong style='color: orange;' title='REf: filter, CER: 1'>fiter</strong> & <strong style='color: orange;' title='REf: filter(), CER: 3'>fiter</strong> & <strong style='color: orange;' title='REf: frequent, CER: 5'>asestant</strong> & <strong style='color: orange;' title='REf: group, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: integer, CER: 4'>fiter</strong> & <strong style='color: orange;' title='REf: medium, CER: 5'>eef</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 9'>asestant</strong> & <strong style='color: orange;' title='REf: model, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: most, CER: 3'>vox</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 4'>actor</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 9'>alter</strong> & <strong style='color: orange;' title='REf: per, CER: 2'>eef</strong> & <strong style='color: orange;' title='REf: projects, CER: 6'>elomanto</strong> & <strong style='color: orange;' title='REf: properties, CER: 8'>asestant</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>vox</strong> & <strong style='color: orange;' title='REf: related, CER: 4'>alter</strong> & <strong style='color: orange;' title='REf: relative, CER: 6'>alter</strong> & <strong style='color: orange;' title='REf: report, CER: 4'>actor</strong> & <strong style='color: orange;' title='REf: report1, CER: 5'>actor</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 8'>asestant</strong> & <strong style='color: orange;' title='REf: single, CER: 5'>fiter</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>actor</strong> & <strong style='color: orange;' title='REf: tools, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>vox</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>fiter</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>actor</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>actor</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>actor</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 7,48 & 0 / 44 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.reporting-server\_report-assistant\_007.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: abs, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: absolute, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: alarms, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: batchhistory, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: collection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: consumption, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: datetimefilter, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: development, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: DPA, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: element, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: equipmentfilter, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: filter, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filter(), CER: 8'>-</strong> & <strong style='color: orange;' title='REf: frequent, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: integer, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: medium, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: misc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: mnestinglevel, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: most, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: OEEFactor, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: parameterlist, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: per, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: projects, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: rdl, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: related, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: relative, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: report1, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: reportassistant, CER: 15'>-</strong> & <strong style='color: orange;' title='REf: single, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: string, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: tools, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: type, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_CIP, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_GBL, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ZAD\_MAIN, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 86,4\% & 4,55 & 6 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.reporting-server\_report-assistant\_007.png}} & abs & abs & abs & costs & collection & collection & costs & date & date & report & abs & report & report & properties & per & per & report & took & per & report & abs & costs & dee & costs & date & date & properties & per & properties & properties & da & date & date & report & report & report & pee & took & took & took & abs & abs & abs & abs \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 93,2\% & 4,95 & 3 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.reporting-server\_report-assistant\_007.png}} & abs & abs & abs & anintemt & took & took & took & date & date & report & per & report & anintemt & anintemt & per & per & report & gun & per & teun & il & anintemt & oe & took & date & kor & report & per & prt & report & il & date & date & report & report & report & il & teun & took & pe & abs & per & per & per \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 93,2\% & 5,07 & 3 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.reporting-server\_report-assistant\_007.png}} & as & tole & as & report & tole & mon & mon & dae & tole & report & mon & men & men & per & per & per & report & mon & per & model & mon & model & model & mon & dae & recur & report & per & recur & report & mon & report & report & report & report & report & tole & mon & tole & pe & vax & report & report & report \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 95,5\% & 5,68 & 2 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.reporting-server\_report-assistant\_007.png}} & rdl & report & rdl & report & one & one & one & rdl & report & report & rdl & report & report & report & rdl & report & report & rdl & one & report & rdl & one & rdl & one & one & report & report & rdl & report & report & rdl & report & report & report & report & report & one & rdl & rdl & one & rdl & report & report & report \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 100,0\% & 7,48 & 0 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.reporting-server\_report-assistant\_007.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 100,0\% & 7,48 & 0 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.reporting-server\_report-assistant\_007.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 100,0\% & 7,48 & 0 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.reporting-server\_report-assistant\_007.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 7,48 & 0 / 44 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.reporting-server\_report-assistant\_007.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{action} & \textbf{administration} & \textbf{cancel} & \textbf{default} & \textbf{defined} & \textbf{dialog} & \textbf{engine} & \textbf{freely} & \textbf{from} & \textbf{help} & \textbf{in} & \textbf{last} & \textbf{linked} & \textbf{load} & \textbf{name} & \textbf{no} & \textbf{ok} & \textbf{open} & \textbf{profile} & \textbf{profiles} & \textbf{save} & \textbf{service} & \textbf{the} & \textbf{variable} \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 8,3\% & 0,25 & 22 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & default & defined & dialog & engine & freely & from & help & in & last & linked & load & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 12,5\% & 0,33 & 21 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & default & defined & dialog & engine & freely & from & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & last & linked & load & name & no & <strong style='color: orange;' title='REf: ok, CER: 1'>oö</strong> & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 20,8\% & 0,54 & 20 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: default, CER: 4'>defined</strong> & defined & dialog & engine & freely & from & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & last & linked & load & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 25,0\% & 0,46 & 19 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & default & defined & dialog & engine & freely & from & help & in & last & linked & <strong style='color: orange;' title='REf: load, CER: 1'>oload</strong> & name & <strong style='color: orange;' title='REf: no, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & profile & profiles & <strong style='color: orange;' title='REf: save, CER: 2'>name</strong> & service & the & variable \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 25,0\% & 0,38 & 21 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & default & defined & dialog & engine & freely & from & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & last & linked & load & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 50,0\% & 1,67 & 12 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>save</strong> & <strong style='color: orange;' title='REf: default, CER: 5'>help</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & dialog & engine & <strong style='color: orange;' title='REf: freely, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>help</strong> & help & in & <strong style='color: orange;' title='REf: last, CER: 3'>load</strong> & <strong style='color: orange;' title='REf: linked, CER: 4'>in</strong> & load & <strong style='color: orange;' title='REf: name, CER: 2'>save</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: open, CER: 1'>pen</strong> & profile & profiles & save & service & the & <strong style='color: orange;' title='REf: variable, CER: 5'>profile</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 54,2\% & 1,12 & 13 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 1'>cancet</strong> & <strong style='color: orange;' title='REf: default, CER: 5'>help</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & <strong style='color: orange;' title='REf: dialog, CER: 2'>alog</strong> & engine & <strong style='color: orange;' title='REf: freely, CER: 4'>from</strong> & from & help & in & <strong style='color: orange;' title='REf: last, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: linked, CER: 1'>inked</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>no</strong> & name & no & <strong style='color: orange;' title='REf: ok, CER: 1'>ox</strong> & open & <strong style='color: orange;' title='REf: profile, CER: 1'>profiles</strong> & profiles & <strong style='color: orange;' title='REf: save, CER: 2'>name</strong> & service & the & variable \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 58,3\% & 1,58 & 11 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 4'>in</strong> & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>save</strong> & <strong style='color: orange;' title='REf: default, CER: 1'>defaut</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & dialog & engine & <strong style='color: orange;' title='REf: freely, CER: 4'>from</strong> & from & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & <strong style='color: orange;' title='REf: last, CER: 3'>load</strong> & <strong style='color: orange;' title='REf: linked, CER: 4'>load</strong> & load & <strong style='color: orange;' title='REf: name, CER: 2'>save</strong> & <strong style='color: orange;' title='REf: no, CER: 1'>lo</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & profile & <strong style='color: orange;' title='REf: profiles, CER: 1'>profile</strong> & save & service & the & <strong style='color: orange;' title='REf: variable, CER: 5'>profile</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 58,3\% & 1,83 & 11 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 4'>in</strong> & administration & <strong style='color: orange;' title='REf: cancel, CER: 4'>linked</strong> & <strong style='color: orange;' title='REf: default, CER: 5'>dialog</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & dialog & engine & <strong style='color: orange;' title='REf: freely, CER: 5'>open</strong> & <strong style='color: orange;' title='REf: from, CER: 3'>no</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & <strong style='color: orange;' title='REf: last, CER: 4'>open</strong> & linked & <strong style='color: orange;' title='REf: load, CER: 3'>no</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & no & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & <strong style='color: orange;' title='REf: profile, CER: 1'>profiles</strong> & profiles & <strong style='color: orange;' title='REf: save, CER: 3'>the</strong> & service & the & variable \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 58,3\% & 2,08 & 10 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & action & administration & <strong style='color: orange;' title='REf: cancel, CER: 5'>in</strong> & <strong style='color: orange;' title='REf: default, CER: 5'>help</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & dialog & engine & <strong style='color: orange;' title='REf: freely, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>in</strong> & help & in & <strong style='color: orange;' title='REf: last, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: linked, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: load, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & profile & <strong style='color: orange;' title='REf: profiles, CER: 1'>profile</strong> & <strong style='color: orange;' title='REf: save, CER: 3'>the</strong> & service & the & <strong style='color: orange;' title='REf: variable, CER: 5'>profile</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 62,5\% & 2,17 & 10 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 5'>the</strong> & <strong style='color: orange;' title='REf: administration, CER: 10'>dialog</strong> & cancel & <strong style='color: orange;' title='REf: default, CER: 5'>help</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & dialog & engine & <strong style='color: orange;' title='REf: freely, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: from, CER: 3'>ok</strong> & help & <strong style='color: orange;' title='REf: in, CER: 1'>im</strong> & <strong style='color: orange;' title='REf: last, CER: 3'>save</strong> & <strong style='color: orange;' title='REf: linked, CER: 4'>cancel</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>ok</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>save</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>ok</strong> & ok & open & profile & <strong style='color: orange;' title='REf: profiles, CER: 1'>profile</strong> & save & service & the & <strong style='color: orange;' title='REf: variable, CER: 5'>profile</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 66,7\% & 2,46 & 8 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 4'>in</strong> & administration & <strong style='color: orange;' title='REf: cancel, CER: 5'>the</strong> & <strong style='color: orange;' title='REf: default, CER: 5'>dialog</strong> & <strong style='color: orange;' title='REf: defined, CER: 4'>engine</strong> & dialog & engine & <strong style='color: orange;' title='REf: freely, CER: 5'>the</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>the</strong> & in & <strong style='color: orange;' title='REf: last, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: linked, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: load, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & open & <strong style='color: orange;' title='REf: profile, CER: 1'>profiles</strong> & profiles & <strong style='color: orange;' title='REf: save, CER: 3'>the</strong> & service & the & <strong style='color: orange;' title='REf: variable, CER: 6'>engine</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 66,7\% & 2,62 & 8 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 5'>engine</strong> & <strong style='color: orange;' title='REf: administration, CER: 11'>service</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: default, CER: 4'>defined</strong> & defined & <strong style='color: orange;' title='REf: dialog, CER: 5'>from</strong> & engine & freely & from & <strong style='color: orange;' title='REf: help, CER: 4'>from</strong> & <strong style='color: orange;' title='REf: in, CER: 4'>engine</strong> & <strong style='color: orange;' title='REf: last, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: linked, CER: 4'>defined</strong> & <strong style='color: orange;' title='REf: load, CER: 4'>from</strong> & name & <strong style='color: orange;' title='REf: no, CER: 3'>from</strong> & <strong style='color: orange;' title='REf: ok, CER: 3'>from</strong> & <strong style='color: orange;' title='REf: open, CER: 4'>from</strong> & <strong style='color: orange;' title='REf: profile, CER: 1'>profiles</strong> & profiles & <strong style='color: orange;' title='REf: save, CER: 2'>name</strong> & service & <strong style='color: orange;' title='REf: the, CER: 2'>tame</strong> & variable \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 70,8\% & 2,00 & 8 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: administration, CER: 2'>ministration</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>ined</strong> & <strong style='color: orange;' title='REf: default, CER: 5'>last</strong> & <strong style='color: orange;' title='REf: defined, CER: 3'>ined</strong> & <strong style='color: orange;' title='REf: dialog, CER: 5'>from</strong> & engine & <strong style='color: orange;' title='REf: freely, CER: 4'>from</strong> & from & <strong style='color: orange;' title='REf: help, CER: 3'>en</strong> & in & last & <strong style='color: orange;' title='REf: linked, CER: 2'>ined</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>ined</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: open, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: profile, CER: 1'>profiles</strong> & profiles & <strong style='color: orange;' title='REf: save, CER: 3'>the</strong> & service & the & variable \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 5,46 & 0 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: administration, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: default, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: defined, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: dialog, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: engine, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: freely, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: last, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: linked, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: load, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: open, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: profile, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: profiles, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: save, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: service, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 5,00 & 0 / 24 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.runtime\_function\_create\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: action, CER: 6'>ep</strong> & <strong style='color: orange;' title='REf: administration, CER: 14'>ep</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>ep</strong> & <strong style='color: orange;' title='REf: default, CER: 6'>ep</strong> & <strong style='color: orange;' title='REf: defined, CER: 6'>ep</strong> & <strong style='color: orange;' title='REf: dialog, CER: 6'>ep</strong> & <strong style='color: orange;' title='REf: engine, CER: 5'>ep</strong> & <strong style='color: orange;' title='REf: freely, CER: 5'>ep</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>ep</strong> & <strong style='color: orange;' title='REf: help, CER: 2'>ep</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>ep</strong> & <strong style='color: orange;' title='REf: last, CER: 4'>ep</strong> & <strong style='color: orange;' title='REf: linked, CER: 5'>ep</strong> & <strong style='color: orange;' title='REf: load, CER: 4'>ep</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>ep</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>ep</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>ep</strong> & <strong style='color: orange;' title='REf: open, CER: 3'>ep</strong> & <strong style='color: orange;' title='REf: profile, CER: 7'>ep</strong> & <strong style='color: orange;' title='REf: profiles, CER: 7'>ep</strong> & <strong style='color: orange;' title='REf: save, CER: 4'>ep</strong> & <strong style='color: orange;' title='REf: service, CER: 6'>ep</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>ep</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>ep</strong> \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 8,3\% & 0,25 & 22 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.runtime\_function\_create\_002.png}} & action & administration & name & default & defined & dialog & engine & freely & from & help & in & last & linked & load & name & no & in & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 12,5\% & 0,33 & 21 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.runtime\_function\_create\_002.png}} & action & administration & name & default & defined & dialog & engine & freely & from & the & in & last & linked & load & name & no & oö & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 20,8\% & 0,54 & 20 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.runtime\_function\_create\_002.png}} & action & administration & name & defined & defined & dialog & engine & freely & from & the & in & last & linked & load & name & no & in & open & profile & profiles & save & service & the & variable \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 25,0\% & 0,46 & 19 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.runtime\_function\_create\_002.png}} & action & administration & name & default & defined & dialog & engine & freely & from & help & in & last & linked & oload & name & in & in & open & profile & profiles & name & service & the & variable \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 66,7\% & 2,62 & 8 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.runtime\_function\_create\_002.png}} & engine & service & name & defined & defined & from & engine & freely & from & from & engine & name & defined & from & name & from & from & from & profiles & profiles & name & service & tame & variable \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 0,5ms & 70,8\% & 2,00 & 8 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.runtime\_function\_create\_002.png}} & in & ministration & ined & last & ined & from & engine & from & from & en & in & last & ined & ined & the & in & in & en & profiles & profiles & the & service & the & variable \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 5,46 & 0 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.runtime\_function\_create\_002.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 5,00 & 0 / 24 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.runtime\_function\_create\_002.png}} & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep & ep \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{0} & \textbf{1200} & \textbf{700} & \textbf{9000} & \textbf{advanced} & \textbf{apply} & \textbf{box} & \textbf{by} & \textbf{cancel} & \textbf{cold} & \textbf{communication} & \textbf{cyclically} & \textbf{data} & \textbf{delay} & \textbf{documents} & \textbf{event} & \textbf{files} & \textbf{for} & \textbf{general} & \textbf{help} & \textbf{hot} & \textbf{load} & \textbf{mode} & \textbf{name} & \textbf{no} & \textbf{ok} & \textbf{open} & \textbf{path} & \textbf{port} & \textbf{priority} & \textbf{public} & \textbf{real} & \textbf{redundancy} & \textbf{restart} & \textbf{retain} & \textbf{rt} & \textbf{s} & \textbf{settings} & \textbf{standard} & \textbf{start} & \textbf{startup} & \textbf{stepping} & \textbf{store} & \textbf{storing} & \textbf{test} & \textbf{this} & \textbf{time} & \textbf{users} & \textbf{variables} & \textbf{zenon\_projects} \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 28,0\% & 0,92 & 38 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & 1200 & <strong style='color: orange;' title='REf: 700, CER: 2'>9000</strong> & 9000 & advanced & apply & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & communication & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>event</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & help & hot & load & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & open & path & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & real & redundancy & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>real</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 4'>real</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>redundancy</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 34,0\% & 1,14 & 34 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 2'>9000</strong> & <strong style='color: orange;' title='REf: 700, CER: 2'>9000</strong> & 9000 & advanced & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & communication & <strong style='color: orange;' title='REf: cyclically, CER: 2'>yicyclically</strong> & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>event</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & <strong style='color: orange;' title='REf: help, CER: 3'>real</strong> & hot & load & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & open & path & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>by</strong> & real & redundancy & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>time</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 4'>real</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 34,0\% & 1,18 & 34 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>by</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>data</strong> & advanced & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & box & by & cancel & cold & communication & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & <strong style='color: orange;' title='REf: help, CER: 3'>cold</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 1'>joad</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & open & path & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>by</strong> & real & redundancy & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>time</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 4'>open</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>open</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 36,0\% & 1,12 & 34 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 2'>9000</strong> & <strong style='color: orange;' title='REf: 700, CER: 2'>9000</strong> & 9000 & advanced & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & communication & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & <strong style='color: orange;' title='REf: help, CER: 3'>real</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 1'>oad</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & open & path & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>by</strong> & real & redundancy & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>start</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 4'>store</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 36,0\% & 1,06 & 34 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 2'>9000</strong> & <strong style='color: orange;' title='REf: 700, CER: 2'>9000</strong> & 9000 & advanced & <strong style='color: orange;' title='REf: apply, CER: 4'>path</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>advanced</strong> & cold & communication & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>event</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & <strong style='color: orange;' title='REf: help, CER: 3'>cold</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 1'>oad</strong> & mode & name & <strong style='color: orange;' title='REf: no, CER: 1'>na</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & open & path & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>path</strong> & real & redundancy & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>start</strong> & this & time & users & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>restart</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 38,0\% & 1,30 & 33 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 2'>9000</strong> & <strong style='color: orange;' title='REf: 700, CER: 2'>9000</strong> & 9000 & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>port</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & communication & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & <strong style='color: orange;' title='REf: help, CER: 3'>cold</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 1'>oad</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & open & path & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & real & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>port</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>port</strong> & this & time & users & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 38,0\% & 1,28 & 32 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>no</strong> & <strong style='color: orange;' title='REf: 1200, CER: 2'>9000</strong> & <strong style='color: orange;' title='REf: 700, CER: 2'>9000</strong> & 9000 & advanced & <strong style='color: orange;' title='REf: apply, CER: 4'>cold</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & <strong style='color: orange;' title='REf: communication, CER: 9'>cyclically</strong> & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>event</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & general & <strong style='color: orange;' title='REf: help, CER: 3'>cold</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 1'>foad</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & open & path & port & <strong style='color: orange;' title='REf: priority, CER: 1'>priorty</strong> & <strong style='color: orange;' title='REf: public, CER: 4'>lc</strong> & real & redundancy & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>hot</strong> & <strong style='color: orange;' title='REf: s, CER: 1'>su</strong> & settings & standard & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>hot</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 4'>for</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>port</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 52,0\% & 1,86 & 24 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>open</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>open</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>open</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & <strong style='color: orange;' title='REf: communication, CER: 9'>cyclically</strong> & cyclically & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & <strong style='color: orange;' title='REf: event, CER: 3'>open</strong> & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & <strong style='color: orange;' title='REf: general, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>cold</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 2'>cold</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & open & path & <strong style='color: orange;' title='REf: port, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: priority, CER: 1'>priorty</strong> & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & real & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>hot</strong> & <strong style='color: orange;' title='REf: s, CER: 1'>is</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & <strong style='color: orange;' title='REf: standard, CER: 4'>start</strong> & start & startup & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 1'>tes</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 2'>causers</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 5'>\_projects</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 54,0\% & 2,14 & 23 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>by</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>by</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>by</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>name</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & <strong style='color: orange;' title='REf: communication, CER: 10'>retain</strong> & <strong style='color: orange;' title='REf: cyclically, CER: 2'>cyckcally</strong> & data & delay & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & <strong style='color: orange;' title='REf: event, CER: 3'>open</strong> & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & <strong style='color: orange;' title='REf: general, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>real</strong> & hot & <strong style='color: orange;' title='REf: load, CER: 1'>foad</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & open & path & <strong style='color: orange;' title='REf: port, CER: 2'>hot</strong> & <strong style='color: orange;' title='REf: priority, CER: 5'>storing</strong> & <strong style='color: orange;' title='REf: public, CER: 5'>by</strong> & real & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & restart & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 1'>fs</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & <strong style='color: orange;' title='REf: standard, CER: 4'>start</strong> & start & <strong style='color: orange;' title='REf: startup, CER: 2'>start</strong> & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>this</strong> & this & time & users & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 58,0\% & 2,18 & 21 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>no</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>path</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>no</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>path</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>path</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & cold & <strong style='color: orange;' title='REf: communication, CER: 9'>cyclically</strong> & cyclically & data & <strong style='color: orange;' title='REf: delay, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & <strong style='color: orange;' title='REf: event, CER: 3'>open</strong> & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & <strong style='color: orange;' title='REf: general, CER: 5'>rea</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>cold</strong> & <strong style='color: orange;' title='REf: hot, CER: 2'>no</strong> & <strong style='color: orange;' title='REf: load, CER: 1'>oad</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>no</strong> & open & path & <strong style='color: orange;' title='REf: port, CER: 2'>for</strong> & priority & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & <strong style='color: orange;' title='REf: real, CER: 1'>rea</strong> & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & <strong style='color: orange;' title='REf: restart, CER: 2'>start</strong> & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>no</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>no</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & <strong style='color: orange;' title='REf: standard, CER: 4'>start</strong> & start & <strong style='color: orange;' title='REf: startup, CER: 2'>start</strong> & stepping & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>time</strong> & this & time & users & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 60,0\% & 2,28 & 20 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>box</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>port</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: cold, CER: 3'>box</strong> & <strong style='color: orange;' title='REf: communication, CER: 9'>cyclically</strong> & cyclically & data & <strong style='color: orange;' title='REf: delay, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: documents, CER: 6'>open</strong> & event & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>box</strong> & <strong style='color: orange;' title='REf: general, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>real</strong> & <strong style='color: orange;' title='REf: hot, CER: 2'>box</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>box</strong> & mode & name & no & <strong style='color: orange;' title='REf: ok, CER: 2'>box</strong> & open & <strong style='color: orange;' title='REf: path, CER: 2'>data</strong> & port & priority & <strong style='color: orange;' title='REf: public, CER: 5'>box</strong> & real & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & <strong style='color: orange;' title='REf: restart, CER: 2'>start</strong> & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>port</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & standard & start & <strong style='color: orange;' title='REf: startup, CER: 2'>start</strong> & stepping & store & <strong style='color: orange;' title='REf: storing, CER: 3'>store</strong> & <strong style='color: orange;' title='REf: test, CER: 3'>port</strong> & this & time & <strong style='color: orange;' title='REf: users, CER: 4'>store</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 76,0\% & 2,84 & 12 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>by</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & <strong style='color: orange;' title='REf: box, CER: 2'>by</strong> & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: cold, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: communication, CER: 9'>cyciically</strong> & <strong style='color: orange;' title='REf: cyclically, CER: 1'>cyciically</strong> & data & <strong style='color: orange;' title='REf: delay, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: documents, CER: 7'>data</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & <strong style='color: orange;' title='REf: general, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>real</strong> & <strong style='color: orange;' title='REf: hot, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: mode, CER: 3'>store</strong> & name & <strong style='color: orange;' title='REf: no, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: open, CER: 4'>store</strong> & path & <strong style='color: orange;' title='REf: port, CER: 2'>for</strong> & priority & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & real & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & <strong style='color: orange;' title='REf: restart, CER: 3'>retain</strong> & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & <strong style='color: orange;' title='REf: standard, CER: 5'>store</strong> & <strong style='color: orange;' title='REf: start, CER: 2'>store</strong> & <strong style='color: orange;' title='REf: startup, CER: 4'>store</strong> & <strong style='color: orange;' title='REf: stepping, CER: 3'>storing</strong> & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>time</strong> & <strong style='color: orange;' title='REf: this, CER: 3'>time</strong> & time & <strong style='color: orange;' title='REf: users, CER: 4'>store</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 78,0\% & 3,02 & 11 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>by</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & <strong style='color: orange;' title='REf: box, CER: 2'>by</strong> & by & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: cold, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: communication, CER: 9'>cyclically</strong> & cyclically & data & <strong style='color: orange;' title='REf: delay, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: documents, CER: 7'>data</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>help</strong> & <strong style='color: orange;' title='REf: files, CER: 4'>for</strong> & for & <strong style='color: orange;' title='REf: general, CER: 6'>data</strong> & help & <strong style='color: orange;' title='REf: hot, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: mode, CER: 3'>store</strong> & name & <strong style='color: orange;' title='REf: no, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: open, CER: 4'>data</strong> & path & <strong style='color: orange;' title='REf: port, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: priority, CER: 5'>storing</strong> & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & <strong style='color: orange;' title='REf: real, CER: 3'>retain</strong> & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & <strong style='color: orange;' title='REf: restart, CER: 3'>retain</strong> & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & <strong style='color: orange;' title='REf: standard, CER: 5'>store</strong> & <strong style='color: orange;' title='REf: start, CER: 2'>store</strong> & <strong style='color: orange;' title='REf: startup, CER: 4'>store</strong> & <strong style='color: orange;' title='REf: stepping, CER: 3'>storing</strong> & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>help</strong> & <strong style='color: orange;' title='REf: this, CER: 3'>ta</strong> & <strong style='color: orange;' title='REf: time, CER: 2'>name</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>store</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 80,0\% & 3,12 & 10 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>by</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>by</strong> & box & by & <strong style='color: orange;' title='REf: cancel, CER: 5'>data</strong> & <strong style='color: orange;' title='REf: cold, CER: 3'>box</strong> & <strong style='color: orange;' title='REf: communication, CER: 10'>retain</strong> & <strong style='color: orange;' title='REf: cyclically, CER: 8'>variables</strong> & data & <strong style='color: orange;' title='REf: delay, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: documents, CER: 7'>data</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>port</strong> & <strong style='color: orange;' title='REf: files, CER: 4'>this</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>box</strong> & <strong style='color: orange;' title='REf: general, CER: 5'>naa</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: hot, CER: 2'>box</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>box</strong> & mode & <strong style='color: orange;' title='REf: name, CER: 2'>naa</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: open, CER: 3'>mode</strong> & <strong style='color: orange;' title='REf: path, CER: 2'>data</strong> & port & <strong style='color: orange;' title='REf: priority, CER: 4'>port</strong> & <strong style='color: orange;' title='REf: public, CER: 5'>this</strong> & <strong style='color: orange;' title='REf: real, CER: 3'>retain</strong> & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & <strong style='color: orange;' title='REf: restart, CER: 3'>retain</strong> & retain & <strong style='color: orange;' title='REf: rt, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>by</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & standard & <strong style='color: orange;' title='REf: start, CER: 1'>statt</strong> & <strong style='color: orange;' title='REf: startup, CER: 3'>statt</strong> & <strong style='color: orange;' title='REf: stepping, CER: 4'>stang</strong> & store & <strong style='color: orange;' title='REf: storing, CER: 3'>store</strong> & <strong style='color: orange;' title='REf: test, CER: 3'>this</strong> & this & <strong style='color: orange;' title='REf: time, CER: 3'>this</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>this</strong> & variables & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>port</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 84,0\% & 3,20 & 8 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>data</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: box, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: by, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>crac</strong> & <strong style='color: orange;' title='REf: cold, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: communication, CER: 9'>cyckcaty</strong> & <strong style='color: orange;' title='REf: cyclically, CER: 4'>cyckcaty</strong> & data & <strong style='color: orange;' title='REf: delay, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: documents, CER: 7'>data</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: files, CER: 3'>time</strong> & for & <strong style='color: orange;' title='REf: general, CER: 4'>real</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>real</strong> & <strong style='color: orange;' title='REf: hot, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: mode, CER: 3'>store</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>time</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: open, CER: 4'>store</strong> & path & <strong style='color: orange;' title='REf: port, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: priority, CER: 1'>priorty</strong> & <strong style='color: orange;' title='REf: public, CER: 5'>retain</strong> & real & <strong style='color: orange;' title='REf: redundancy, CER: 7'>retain</strong> & <strong style='color: orange;' title='REf: restart, CER: 3'>retain</strong> & retain & <strong style='color: orange;' title='REf: rt, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: s, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>retain</strong> & <strong style='color: orange;' title='REf: standard, CER: 5'>store</strong> & <strong style='color: orange;' title='REf: start, CER: 2'>store</strong> & <strong style='color: orange;' title='REf: startup, CER: 4'>store</strong> & <strong style='color: orange;' title='REf: stepping, CER: 3'>storing</strong> & store & storing & <strong style='color: orange;' title='REf: test, CER: 3'>real</strong> & <strong style='color: orange;' title='REf: this, CER: 3'>time</strong> & time & <strong style='color: orange;' title='REf: users, CER: 4'>store</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>real</strong> & <strong style='color: orange;' title='REf: zenon\_projects, CER: 11'>store</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 98,0\% & 3,90 & 1 / 50 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.straton\_runtime\_configuration\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 0, CER: 2'>ed</strong> & <strong style='color: orange;' title='REf: 1200, CER: 4'>ant</strong> & <strong style='color: orange;' title='REf: 700, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: 9000, CER: 4'>ant</strong> & <strong style='color: orange;' title='REf: advanced, CER: 6'>ant</strong> & <strong style='color: orange;' title='REf: apply, CER: 4'>ant</strong> & <strong style='color: orange;' title='REf: box, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: by, CER: 2'>ed</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>ant</strong> & <strong style='color: orange;' title='REf: cold, CER: 1'>coll</strong> & <strong style='color: orange;' title='REf: communication, CER: 11'>ant</strong> & <strong style='color: orange;' title='REf: cyclically, CER: 7'>coll</strong> & <strong style='color: orange;' title='REf: data, CER: 1'>dat</strong> & <strong style='color: orange;' title='REf: delay, CER: 3'>dat</strong> & <strong style='color: orange;' title='REf: documents, CER: 7'>ant</strong> & <strong style='color: orange;' title='REf: event, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: files, CER: 4'>coll</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: general, CER: 6'>ant</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>coll</strong> & <strong style='color: orange;' title='REf: hot, CER: 2'>ant</strong> & <strong style='color: orange;' title='REf: load, CER: 3'>coll</strong> & <strong style='color: orange;' title='REf: mode, CER: 1'>made</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>made</strong> & <strong style='color: orange;' title='REf: no, CER: 2'>ant</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>ed</strong> & <strong style='color: orange;' title='REf: open, CER: 3'>ed</strong> & <strong style='color: orange;' title='REf: path, CER: 2'>dat</strong> & <strong style='color: orange;' title='REf: port, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: priority, CER: 7'>ant</strong> & <strong style='color: orange;' title='REf: public, CER: 5'>coll</strong> & <strong style='color: orange;' title='REf: real, CER: 3'>coll</strong> & <strong style='color: orange;' title='REf: redundancy, CER: 8'>ant</strong> & <strong style='color: orange;' title='REf: restart, CER: 5'>ant</strong> & <strong style='color: orange;' title='REf: retain, CER: 5'>ant</strong> & <strong style='color: orange;' title='REf: rt, CER: 2'>ant</strong> & <strong style='color: orange;' title='REf: s, CER: 2'>ed</strong> & <strong style='color: orange;' title='REf: settings, CER: 4'>stepping</strong> & <strong style='color: orange;' title='REf: standard, CER: 6'>ant</strong> & <strong style='color: orange;' title='REf: start, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: startup, CER: 5'>ant</strong> & stepping & <strong style='color: orange;' title='REf: store, CER: 4'>coll</strong> & <strong style='color: orange;' title='REf: storing, CER: 3'>stepping</strong> & <strong style='color: orange;' title='REf: test, CER: 3'>ant</strong> & <strong style='color: orange;' title='REf: this, CER: 3'>ih</strong> & <strong style='color: orange;' title='REf: time, CER: 3'>made</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>ed</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>made</strong> & <strong style='color: orange;' title='REf: zenon\_projects, CER: 12'>ant</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 28,0\% & 0,92 & 38 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.straton\_runtime\_configuration\_001.png}} & by & 1200 & 9000 & 9000 & advanced & apply & box & by & name & cold & communication & cyclically & data & delay & event & event & time & for & general & help & hot & load & mode & name & no & by & open & path & port & priority & retain & real & redundancy & restart & retain & by & by & settings & standard & start & startup & stepping & store & storing & real & this & time & real & variables & redundancy \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 34,0\% & 1,14 & 34 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.straton\_runtime\_configuration\_001.png}} & by & 9000 & 9000 & 9000 & advanced & by & box & by & name & cold & communication & yicyclically & data & delay & event & event & time & for & general & real & hot & load & mode & name & no & by & open & path & port & priority & by & real & redundancy & restart & retain & by & by & settings & standard & start & startup & stepping & store & storing & time & this & time & real & variables & store \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 34,0\% & 1,18 & 34 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.straton\_runtime\_configuration\_001.png}} & by & data & by & data & advanced & by & box & by & cancel & cold & communication & cyclically & data & delay & open & event & time & for & general & cold & hot & joad & mode & name & no & by & open & path & port & priority & by & real & redundancy & restart & retain & by & by & settings & standard & start & startup & stepping & store & storing & time & this & time & open & variables & open \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 36,0\% & 1,12 & 34 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.straton\_runtime\_configuration\_001.png}} & by & 9000 & 9000 & 9000 & advanced & by & box & by & name & cold & communication & cyclically & data & delay & open & event & time & for & general & real & hot & oad & mode & name & no & by & open & path & port & priority & by & real & redundancy & restart & retain & by & by & settings & standard & start & startup & stepping & store & storing & start & this & time & store & variables & store \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,5ms & 78,0\% & 3,02 & 11 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.straton\_runtime\_configuration\_001.png}} & by & data & by & data & data & by & by & by & name & for & cyclically & cyclically & data & data & data & help & for & for & data & help & for & for & store & name & by & by & data & path & for & storing & retain & retain & retain & retain & retain & by & by & retain & store & store & store & storing & store & storing & help & ta & name & store & variables & store \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 80,0\% & 3,12 & 10 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.straton\_runtime\_configuration\_001.png}} & by & data & by & data & data & by & box & by & data & box & retain & variables & data & data & data & port & this & box & naa & data & box & box & mode & naa & by & by & mode & data & port & port & this & retain & retain & retain & retain & by & by & retain & standard & statt & statt & stang & store & store & this & this & this & this & variables & port \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 0,6ms & 84,0\% & 3,20 & 8 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.straton\_runtime\_configuration\_001.png}} & for & data & for & data & data & real & for & for & crac & for & cyckcaty & cyckcaty & data & data & data & real & time & for & real & real & for & for & store & time & for & for & store & path & for & priorty & retain & real & retain & retain & retain & data & for & retain & store & store & store & storing & store & storing & real & time & time & store & real & store \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,5ms & 98,0\% & 3,90 & 1 / 50 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.straton\_runtime\_configuration\_001.png}} & ed & ant & ant & ant & ant & ant & ant & ed & ant & coll & ant & coll & dat & dat & ant & ant & coll & ant & ant & coll & ant & coll & made & made & ant & ed & ed & dat & ant & ant & coll & coll & ant & ant & ant & ant & ed & stepping & ant & ant & ant & stepping & coll & stepping & ant & ih & made & ed & made & ant \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{\%} & \textbf{0} & \textbf{100} & \textbf{cancel} & \textbf{delete} & \textbf{edit} & \textbf{existing} & \textbf{help} & \textbf{new} & \textbf{ok} & \textbf{step} & \textbf{steps} & \textbf{to} & \textbf{zoom} \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 28,6\% & 0,64 & 10 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 2'>ok</strong> & <strong style='color: orange;' title='REf: 0, CER: 2'>ok</strong> & 100 & cancel & delete & <strong style='color: orange;' title='REf: edit, CER: 3'>ea</strong> & existing & help & <strong style='color: orange;' title='REf: new, CER: 2'>ea</strong> & ok & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 42,9\% & 1,36 & 8 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: 0, CER: 2'>100</strong> & 100 & cancel & <strong style='color: orange;' title='REf: delete, CER: 5'>steps</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>zoom</strong> & existing & <strong style='color: orange;' title='REf: help, CER: 3'>step</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>step</strong> & ok & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,8ms & 57,1\% & 1,86 & 6 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: 0, CER: 2'>100</strong> & 100 & <strong style='color: orange;' title='REf: cancel, CER: 5'>step</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>steps</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>100</strong> & existing & <strong style='color: orange;' title='REf: help, CER: 3'>step</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>100</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>to</strong> & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 64,3\% & 2,07 & 5 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: 0, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>to</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>step</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>steps</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>zoom</strong> & existing & <strong style='color: orange;' title='REf: help, CER: 3'>step</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>step</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>to</strong> & step & steps & to & zoom \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 85,7\% & 2,64 & 3 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 2'>zz</strong> & <strong style='color: orange;' title='REf: 0, CER: 2'>100</strong> & 100 & <strong style='color: orange;' title='REf: cancel, CER: 6'>zoom</strong> & <strong style='color: orange;' title='REf: delete, CER: 5'>steps</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>zoom</strong> & <strong style='color: orange;' title='REf: existing, CER: 6'>steps</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>zoom</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>100</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>zz</strong> & <strong style='color: orange;' title='REf: step, CER: 1'>steps</strong> & steps & <strong style='color: orange;' title='REf: to, CER: 2'>zz</strong> & zoom \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,6ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,7ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 100,0\% & 3,79 & 0 / 14 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.worldview\_zoom\_steps\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: \%, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 0, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: 100, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: delete, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: existing, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: step, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: steps, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: zoom, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 28,6\% & 0,64 & 10 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.worldview\_zoom\_steps\_001.png}} & ok & ok & 100 & cancel & delete & ea & existing & help & ea & ok & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 42,9\% & 1,36 & 8 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.worldview\_zoom\_steps\_001.png}} & to & 100 & 100 & cancel & steps & zoom & existing & step & step & ok & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,8ms & 57,1\% & 1,86 & 6 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.worldview\_zoom\_steps\_001.png}} & to & 100 & 100 & step & steps & 100 & existing & step & 100 & to & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 64,3\% & 2,07 & 5 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.worldview\_zoom\_steps\_001.png}} & to & to & to & step & steps & zoom & existing & step & step & to & step & steps & to & zoom \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 100,0\% & 3,79 & 0 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.worldview\_zoom\_steps\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 100,0\% & 3,79 & 0 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.worldview\_zoom\_steps\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 100,0\% & 3,79 & 0 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.worldview\_zoom\_steps\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 100,0\% & 3,79 & 0 / 14 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.worldview\_zoom\_steps\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{apply} & \textbf{archives} & \textbf{bottle} & \textbf{changed} & \textbf{class} & \textbf{classes} & \textbf{clear} & \textbf{connected} & \textbf{conveyor} & \textbf{Cur} & \textbf{curves} & \textbf{depalletizer} & \textbf{description} & \textbf{edit} & \textbf{editor} & \textbf{efficiency} & \textbf{equipment} & \textbf{event} & \textbf{file} & \textbf{filler} & \textbf{filtered} & \textbf{glass} & \textbf{grate} & \textbf{groups} & \textbf{help} & \textbf{inspector} & \textbf{labeler} & \textbf{line} & \textbf{local} & \textbf{metadata} & \textbf{modeling} & \textbf{models} & \textbf{name} & \textbf{on} & \textbf{operation} & \textbf{packer} & \textbf{pasteurizer} & \textbf{project} & \textbf{ready} & \textbf{reference} & \textbf{reporting} & \textbf{selected} & \textbf{State} & \textbf{testenv} & \textbf{to} & \textbf{total} & \textbf{unpacker} & \textbf{users} & \textbf{variables} & \textbf{visual} & \textbf{washer} & \textbf{WS} \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 86,5\% & 3,73 & 7 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>ready</strong> & <strong style='color: orange;' title='REf: archives, CER: 5'>variables</strong> & <strong style='color: orange;' title='REf: bottle, CER: 3'>totel</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 4'>ta</strong> & <strong style='color: orange;' title='REf: classes, CER: 4'>changed</strong> & <strong style='color: orange;' title='REf: clear, CER: 3'>le</strong> & <strong style='color: orange;' title='REf: connected, CER: 4'>selected</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>on</strong> & <strong style='color: orange;' title='REf: curves, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 8'>selected</strong> & <strong style='color: orange;' title='REf: description, CER: 7'>reporting</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: editor, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 7'>filtered</strong> & <strong style='color: orange;' title='REf: equipment, CER: 8'>selected</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: file, CER: 2'>le</strong> & <strong style='color: orange;' title='REf: filler, CER: 3'>filtered</strong> & filtered & <strong style='color: orange;' title='REf: glass, CER: 4'>ta</strong> & <strong style='color: orange;' title='REf: grate, CER: 4'>ta</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: help, CER: 1'>hep</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>selected</strong> & <strong style='color: orange;' title='REf: labeler, CER: 5'>le</strong> & <strong style='color: orange;' title='REf: line, CER: 2'>le</strong> & <strong style='color: orange;' title='REf: local, CER: 3'>totel</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>ready</strong> & <strong style='color: orange;' title='REf: modeling, CER: 5'>totel</strong> & <strong style='color: orange;' title='REf: models, CER: 3'>totel</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>ta</strong> & on & <strong style='color: orange;' title='REf: operation, CER: 6'>reporting</strong> & <strong style='color: orange;' title='REf: packer, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 7'>filtered</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>totel</strong> & ready & <strong style='color: orange;' title='REf: reference, CER: 6'>reporting</strong> & reporting & selected & <strong style='color: orange;' title='REf: State, CER: 3'>ta</strong> & <strong style='color: orange;' title='REf: testenv, CER: 4'>totel</strong> & <strong style='color: orange;' title='REf: to, CER: 1'>ta</strong> & <strong style='color: orange;' title='REf: total, CER: 1'>totel</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 6'>selected</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>le</strong> & variables & <strong style='color: orange;' title='REf: visual, CER: 5'>ta</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>hep</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 90,4\% & 4,54 & 5 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>changed</strong> & <strong style='color: orange;' title='REf: bottle, CER: 3'>total</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: classes, CER: 4'>changed</strong> & <strong style='color: orange;' title='REf: clear, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: connected, CER: 4'>selected</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>on</strong> & <strong style='color: orange;' title='REf: curves, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 8'>selected</strong> & <strong style='color: orange;' title='REf: description, CER: 7'>reporting</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: editor, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 8'>selected</strong> & <strong style='color: orange;' title='REf: equipment, CER: 8'>on</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: filler, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>selected</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: grate, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>selected</strong> & <strong style='color: orange;' title='REf: labeler, CER: 6'>changed</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>on</strong> & <strong style='color: orange;' title='REf: local, CER: 2'>total</strong> & <strong style='color: orange;' title='REf: metadata, CER: 6'>total</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: models, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>on</strong> & on & <strong style='color: orange;' title='REf: operation, CER: 6'>reporting</strong> & <strong style='color: orange;' title='REf: packer, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 8'>selected</strong> & <strong style='color: orange;' title='REf: project, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: reference, CER: 6'>reporting</strong> & reporting & selected & <strong style='color: orange;' title='REf: State, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: testenv, CER: 5'>total</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>on</strong> & total & <strong style='color: orange;' title='REf: unpacker, CER: 6'>changed</strong> & <strong style='color: orange;' title='REf: users, CER: 5'>on</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>changed</strong> & <strong style='color: orange;' title='REf: visual, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: washer, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>on</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 92,3\% & 3,85 & 5 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>ready</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>changed</strong> & <strong style='color: orange;' title='REf: bottle, CER: 4'>sate</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 3'>came</strong> & <strong style='color: orange;' title='REf: classes, CER: 4'>changed</strong> & <strong style='color: orange;' title='REf: clear, CER: 3'>cor</strong> & connected & <strong style='color: orange;' title='REf: conveyor, CER: 5'>cor</strong> & <strong style='color: orange;' title='REf: Cur, CER: 1'>gur</strong> & <strong style='color: orange;' title='REf: curves, CER: 3'>cur</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 8'>elected</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>to</strong> & <strong style='color: orange;' title='REf: edit, CER: 2'>di</strong> & <strong style='color: orange;' title='REf: editor, CER: 3'>tor</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 7'>elected</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>une</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>une</strong> & <strong style='color: orange;' title='REf: file, CER: 3'>une</strong> & <strong style='color: orange;' title='REf: filler, CER: 5'>une</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>elected</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: grate, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: groups, CER: 4'>gur</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>meu</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>elected</strong> & <strong style='color: orange;' title='REf: labeler, CER: 4'>vorabler</strong> & <strong style='color: orange;' title='REf: line, CER: 2'>une</strong> & <strong style='color: orange;' title='REf: local, CER: 4'>to</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>state</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: models, CER: 3'>meus</strong> & <strong style='color: orange;' title='REf: name, CER: 1'>came</strong> & on & <strong style='color: orange;' title='REf: operation, CER: 7'>to</strong> & <strong style='color: orange;' title='REf: packer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 8'>sate</strong> & <strong style='color: orange;' title='REf: project, CER: 6'>to</strong> & ready & <strong style='color: orange;' title='REf: reference, CER: 7'>une</strong> & <strong style='color: orange;' title='REf: reporting, CER: 7'>on</strong> & <strong style='color: orange;' title='REf: selected, CER: 1'>elected</strong> & <strong style='color: orange;' title='REf: State, CER: 1'>state</strong> & <strong style='color: orange;' title='REf: testenv, CER: 5'>sate</strong> & to & <strong style='color: orange;' title='REf: total, CER: 3'>to</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 5'>une</strong> & <strong style='color: orange;' title='REf: users, CER: 3'>une</strong> & <strong style='color: orange;' title='REf: variables, CER: 3'>vorabler</strong> & <strong style='color: orange;' title='REf: visual, CER: 4'>sar</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>to</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 92,3\% & 3,87 & 4 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>ope</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>changed</strong> & <strong style='color: orange;' title='REf: bottle, CER: 3'>total</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 4'>stare</strong> & <strong style='color: orange;' title='REf: classes, CER: 4'>changed</strong> & <strong style='color: orange;' title='REf: clear, CER: 3'>oper</strong> & <strong style='color: orange;' title='REf: connected, CER: 4'>elected</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 5'>oper</strong> & <strong style='color: orange;' title='REf: Cur, CER: 1'>sur</strong> & <strong style='color: orange;' title='REf: curves, CER: 4'>une</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 8'>elected</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>elected</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>on</strong> & <strong style='color: orange;' title='REf: editor, CER: 5'>elected</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 7'>elected</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>elected</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>elected</strong> & <strong style='color: orange;' title='REf: file, CER: 2'>ine</strong> & <strong style='color: orange;' title='REf: filler, CER: 4'>ine</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>elected</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>stare</strong> & <strong style='color: orange;' title='REf: grate, CER: 1'>rate</strong> & <strong style='color: orange;' title='REf: groups, CER: 4'>ope</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>we</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>elected</strong> & <strong style='color: orange;' title='REf: labeler, CER: 5'>oper</strong> & <strong style='color: orange;' title='REf: line, CER: 1'>ine</strong> & <strong style='color: orange;' title='REf: local, CER: 2'>total</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>ready</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: models, CER: 4'>ope</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>rate</strong> & on & <strong style='color: orange;' title='REf: operation, CER: 5'>oper</strong> & <strong style='color: orange;' title='REf: packer, CER: 4'>oper</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 7'>stare</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>ope</strong> & ready & <strong style='color: orange;' title='REf: reference, CER: 7'>elected</strong> & <strong style='color: orange;' title='REf: reporting, CER: 7'>elected</strong> & <strong style='color: orange;' title='REf: selected, CER: 1'>elected</strong> & <strong style='color: orange;' title='REf: State, CER: 1'>state</strong> & <strong style='color: orange;' title='REf: testenv, CER: 5'>elected</strong> & <strong style='color: orange;' title='REf: to, CER: 1'>tl</strong> & total & <strong style='color: orange;' title='REf: unpacker, CER: 5'>oper</strong> & <strong style='color: orange;' title='REf: users, CER: 2'>ser</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>rate</strong> & <strong style='color: orange;' title='REf: visual, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: washer, CER: 3'>ser</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>on</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 92,3\% & 3,19 & 8 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>ready</strong> & <strong style='color: orange;' title='REf: archives, CER: 4'>varabies</strong> & <strong style='color: orange;' title='REf: bottle, CER: 1'>botte</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 1'>glass</strong> & <strong style='color: orange;' title='REf: classes, CER: 3'>glase</strong> & <strong style='color: orange;' title='REf: clear, CER: 2'>car</strong> & <strong style='color: orange;' title='REf: connected, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 6'>changed</strong> & <strong style='color: orange;' title='REf: Cur, CER: 2'>er</strong> & <strong style='color: orange;' title='REf: curves, CER: 3'>ure</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 7'>verabler</strong> & <strong style='color: orange;' title='REf: description, CER: 7'>operaton</strong> & <strong style='color: orange;' title='REf: edit, CER: 3'>evert</strong> & <strong style='color: orange;' title='REf: editor, CER: 4'>to</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 8'>evert</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>evert</strong> & <strong style='color: orange;' title='REf: event, CER: 1'>evert</strong> & <strong style='color: orange;' title='REf: file, CER: 2'>ine</strong> & <strong style='color: orange;' title='REf: filler, CER: 4'>er</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>lre</strong> & glass & <strong style='color: orange;' title='REf: grate, CER: 2'>sate</strong> & groups & <strong style='color: orange;' title='REf: help, CER: 3'>er</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>ine</strong> & <strong style='color: orange;' title='REf: labeler, CER: 4'>verabler</strong> & <strong style='color: orange;' title='REf: line, CER: 1'>ine</strong> & <strong style='color: orange;' title='REf: local, CER: 2'>total</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>ready</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>on</strong> & <strong style='color: orange;' title='REf: models, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>sate</strong> & on & <strong style='color: orange;' title='REf: operation, CER: 1'>operaton</strong> & <strong style='color: orange;' title='REf: packer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 8'>sate</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>evert</strong> & ready & <strong style='color: orange;' title='REf: reference, CER: 6'>evert</strong> & reporting & <strong style='color: orange;' title='REf: selected, CER: 4'>slate</strong> & <strong style='color: orange;' title='REf: State, CER: 1'>state</strong> & <strong style='color: orange;' title='REf: testenv, CER: 4'>bette</strong> & to & total & <strong style='color: orange;' title='REf: unpacker, CER: 5'>une</strong> & <strong style='color: orange;' title='REf: users, CER: 3'>evert</strong> & <strong style='color: orange;' title='REf: variables, CER: 2'>varsbles</strong> & <strong style='color: orange;' title='REf: visual, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>to</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 94,2\% & 4,06 & 4 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>ready</strong> & <strong style='color: orange;' title='REf: archives, CER: 5'>variables</strong> & <strong style='color: orange;' title='REf: bottle, CER: 3'>bocce</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: classes, CER: 4'>changed</strong> & <strong style='color: orange;' title='REf: clear, CER: 4'>ready</strong> & <strong style='color: orange;' title='REf: connected, CER: 5'>changed</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 5'>core</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>120</strong> & <strong style='color: orange;' title='REf: curves, CER: 3'>core</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 9'>sate</strong> & <strong style='color: orange;' title='REf: description, CER: 8'>site</strong> & <strong style='color: orange;' title='REf: edit, CER: 3'>ki</strong> & <strong style='color: orange;' title='REf: editor, CER: 4'>site</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 8'>ready</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>site</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>bete</strong> & <strong style='color: orange;' title='REf: file, CER: 2'>site</strong> & <strong style='color: orange;' title='REf: filler, CER: 4'>site</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>site</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: grate, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>ready</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>bete</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>store</strong> & <strong style='color: orange;' title='REf: labeler, CER: 4'>bete</strong> & <strong style='color: orange;' title='REf: line, CER: 2'>site</strong> & <strong style='color: orange;' title='REf: local, CER: 2'>total</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>ready</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>core</strong> & <strong style='color: orange;' title='REf: models, CER: 4'>core</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>ki</strong> & <strong style='color: orange;' title='REf: operation, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: packer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 7'>store</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>bocce</strong> & ready & <strong style='color: orange;' title='REf: reference, CER: 7'>ready</strong> & <strong style='color: orange;' title='REf: reporting, CER: 7'>ready</strong> & <strong style='color: orange;' title='REf: selected, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: State, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: testenv, CER: 4'>bete</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>ki</strong> & total & <strong style='color: orange;' title='REf: unpacker, CER: 6'>sate</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>sate</strong> & variables & <strong style='color: orange;' title='REf: visual, CER: 4'>total</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>ki</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 96,2\% & 3,13 & 8 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 3'>al</strong> & <strong style='color: orange;' title='REf: archives, CER: 4'>carves</strong> & <strong style='color: orange;' title='REf: bottle, CER: 1'>botte</strong> & changed & <strong style='color: orange;' title='REf: class, CER: 2'>classes</strong> & classes & <strong style='color: orange;' title='REf: clear, CER: 2'>car</strong> & connected & <strong style='color: orange;' title='REf: conveyor, CER: 4'>cove</strong> & <strong style='color: orange;' title='REf: Cur, CER: 1'>our</strong> & <strong style='color: orange;' title='REf: curves, CER: 1'>carves</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 7'>beatie</strong> & <strong style='color: orange;' title='REf: description, CER: 8'>evert</strong> & <strong style='color: orange;' title='REf: edit, CER: 2'>it</strong> & <strong style='color: orange;' title='REf: editor, CER: 4'>to</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 7'>fie</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>evert</strong> & <strong style='color: orange;' title='REf: event, CER: 1'>evert</strong> & <strong style='color: orange;' title='REf: file, CER: 1'>fie</strong> & <strong style='color: orange;' title='REf: filler, CER: 3'>fie</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>selected</strong> & <strong style='color: orange;' title='REf: glass, CER: 3'>classes</strong> & <strong style='color: orange;' title='REf: grate, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: groups, CER: 4'>gr</strong> & help & <strong style='color: orange;' title='REf: inspector, CER: 6'>connected</strong> & <strong style='color: orange;' title='REf: labeler, CER: 5'>evert</strong> & <strong style='color: orange;' title='REf: line, CER: 1'>ine</strong> & <strong style='color: orange;' title='REf: local, CER: 3'>al</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>bette</strong> & <strong style='color: orange;' title='REf: modeling, CER: 5'>molws</strong> & <strong style='color: orange;' title='REf: models, CER: 3'>hoes</strong> & name & on & <strong style='color: orange;' title='REf: operation, CER: 5'>beatie</strong> & <strong style='color: orange;' title='REf: packer, CER: 4'>carves</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 8'>selected</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>evert</strong> & <strong style='color: orange;' title='REf: ready, CER: 3'>beate</strong> & <strong style='color: orange;' title='REf: reference, CER: 6'>evert</strong> & <strong style='color: orange;' title='REf: reporting, CER: 6'>evert</strong> & selected & <strong style='color: orange;' title='REf: State, CER: 1'>state</strong> & <strong style='color: orange;' title='REf: testenv, CER: 4'>bette</strong> & to & <strong style='color: orange;' title='REf: total, CER: 3'>to</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 5'>une</strong> & <strong style='color: orange;' title='REf: users, CER: 3'>evert</strong> & <strong style='color: orange;' title='REf: variables, CER: 1'>variabler</strong> & <strong style='color: orange;' title='REf: visual, CER: 4'>suse</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>carves</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>on</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 98,1\% & 5,04 & 1 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>uy</strong> & <strong style='color: orange;' title='REf: archives, CER: 7'>ze</strong> & <strong style='color: orange;' title='REf: bottle, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: changed, CER: 6'>ze</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: classes, CER: 6'>ze</strong> & <strong style='color: orange;' title='REf: clear, CER: 4'>ze</strong> & <strong style='color: orange;' title='REf: connected, CER: 8'>ze</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 6'>editor</strong> & <strong style='color: orange;' title='REf: Cur, CER: 2'>uy</strong> & <strong style='color: orange;' title='REf: curves, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 9'>editor</strong> & <strong style='color: orange;' title='REf: description, CER: 7'>editor</strong> & <strong style='color: orange;' title='REf: edit, CER: 2'>editor</strong> & editor & <strong style='color: orange;' title='REf: efficiency, CER: 8'>editor</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>editor</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>ze</strong> & <strong style='color: orange;' title='REf: file, CER: 3'>ze</strong> & <strong style='color: orange;' title='REf: filler, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: filtered, CER: 6'>editor</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: grate, CER: 4'>ze</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>uy</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>ze</strong> & <strong style='color: orange;' title='REf: inspector, CER: 6'>editor</strong> & <strong style='color: orange;' title='REf: labeler, CER: 6'>ze</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>ze</strong> & <strong style='color: orange;' title='REf: local, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: metadata, CER: 1'>mutadata</strong> & <strong style='color: orange;' title='REf: modeling, CER: 7'>ze</strong> & <strong style='color: orange;' title='REf: models, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>ze</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>ze</strong> & <strong style='color: orange;' title='REf: operation, CER: 6'>editor</strong> & <strong style='color: orange;' title='REf: packer, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 8'>editor</strong> & <strong style='color: orange;' title='REf: project, CER: 6'>ze</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>ze</strong> & <strong style='color: orange;' title='REf: reference, CER: 8'>ze</strong> & <strong style='color: orange;' title='REf: reporting, CER: 7'>editor</strong> & <strong style='color: orange;' title='REf: selected, CER: 6'>editor</strong> & <strong style='color: orange;' title='REf: State, CER: 4'>ze</strong> & <strong style='color: orange;' title='REf: testenv, CER: 6'>ze</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>ze</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 7'>ze</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>ze</strong> & <strong style='color: orange;' title='REf: variables, CER: 8'>ze</strong> & <strong style='color: orange;' title='REf: visual, CER: 5'>uy</strong> & <strong style='color: orange;' title='REf: washer, CER: 5'>ze</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>ze</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 100,0\% & 4,98 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: archives, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: bottle, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: changed, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: class, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: classes, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: clear, CER: 3'>cr</strong> & <strong style='color: orange;' title='REf: connected, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 6'>cr</strong> & <strong style='color: orange;' title='REf: Cur, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: curves, CER: 4'>cr</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 9'>sate</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>sate</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: editor, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 9'>sate</strong> & <strong style='color: orange;' title='REf: equipment, CER: 8'>sate</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>se</strong> & <strong style='color: orange;' title='REf: file, CER: 3'>sate</strong> & <strong style='color: orange;' title='REf: filler, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: filtered, CER: 6'>sate</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: grate, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>cr</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>se</strong> & <strong style='color: orange;' title='REf: inspector, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: labeler, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>sate</strong> & <strong style='color: orange;' title='REf: local, CER: 4'>cr</strong> & <strong style='color: orange;' title='REf: metadata, CER: 6'>sate</strong> & <strong style='color: orange;' title='REf: modeling, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: models, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: operation, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: packer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 8'>sate</strong> & <strong style='color: orange;' title='REf: project, CER: 6'>sate</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: reference, CER: 8'>sate</strong> & <strong style='color: orange;' title='REf: reporting, CER: 8'>sate</strong> & <strong style='color: orange;' title='REf: selected, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: State, CER: 2'>sate</strong> & <strong style='color: orange;' title='REf: testenv, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: total, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 6'>sate</strong> & <strong style='color: orange;' title='REf: users, CER: 3'>se</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>sate</strong> & <strong style='color: orange;' title='REf: visual, CER: 5'>sate</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>sate</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>cr</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 6,46 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archives, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: changed, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: classes, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: clear, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: connected, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: curves, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: editor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: event, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: filler, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filtered, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: grate, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: inspector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: labeler, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: local, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: modeling, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: models, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: operation, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: packer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: reference, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: reporting, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: selected, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: State, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: testenv, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: users, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visual, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: washer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 100,0\% & 6,46 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archives, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: changed, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: classes, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: clear, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: connected, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: curves, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: editor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: event, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: filler, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filtered, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: grate, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: inspector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: labeler, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: local, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: modeling, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: models, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: operation, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: packer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: reference, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: reporting, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: selected, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: State, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: testenv, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: users, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visual, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: washer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 100,0\% & 5,77 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 4'>ll</strong> & <strong style='color: orange;' title='REf: archives, CER: 7'>ii</strong> & <strong style='color: orange;' title='REf: bottle, CER: 5'>ll</strong> & <strong style='color: orange;' title='REf: changed, CER: 7'>ii</strong> & <strong style='color: orange;' title='REf: class, CER: 4'>ll</strong> & <strong style='color: orange;' title='REf: classes, CER: 6'>ll</strong> & <strong style='color: orange;' title='REf: clear, CER: 4'>ll</strong> & <strong style='color: orange;' title='REf: connected, CER: 9'>ii</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>ii</strong> & <strong style='color: orange;' title='REf: curves, CER: 6'>ii</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 10'>ll</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>ii</strong> & <strong style='color: orange;' title='REf: edit, CER: 3'>ii</strong> & <strong style='color: orange;' title='REf: editor, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: equipment, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: event, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: file, CER: 3'>ii</strong> & <strong style='color: orange;' title='REf: filler, CER: 4'>ll</strong> & <strong style='color: orange;' title='REf: filtered, CER: 7'>ii</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>ll</strong> & <strong style='color: orange;' title='REf: grate, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>ii</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>ll</strong> & <strong style='color: orange;' title='REf: inspector, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: labeler, CER: 5'>ll</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>ii</strong> & <strong style='color: orange;' title='REf: local, CER: 3'>ll</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: modeling, CER: 7'>ii</strong> & <strong style='color: orange;' title='REf: models, CER: 5'>ll</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>ii</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>ii</strong> & <strong style='color: orange;' title='REf: operation, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: packer, CER: 6'>ii</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 10'>ii</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>ii</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: reference, CER: 9'>ii</strong> & <strong style='color: orange;' title='REf: reporting, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: selected, CER: 7'>ll</strong> & <strong style='color: orange;' title='REf: State, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: testenv, CER: 7'>ii</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>ii</strong> & <strong style='color: orange;' title='REf: total, CER: 4'>ll</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: users, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: variables, CER: 8'>ii</strong> & <strong style='color: orange;' title='REf: visual, CER: 5'>ii</strong> & <strong style='color: orange;' title='REf: washer, CER: 6'>ii</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>ii</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 100,0\% & 6,46 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archives, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: changed, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: classes, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: clear, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: connected, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: curves, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: editor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: event, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: filler, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filtered, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: grate, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: inspector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: labeler, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: local, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: modeling, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: models, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: operation, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: packer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: reference, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: reporting, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: selected, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: State, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: testenv, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: users, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visual, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: washer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>-</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 6,46 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: archives, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: changed, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: classes, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: clear, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: connected, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: curves, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: editor, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: event, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: file, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: filler, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: filtered, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: grate, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: inspector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: labeler, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: local, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: modeling, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: models, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: operation, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: packer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: reference, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: reporting, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: selected, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: State, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: testenv, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: users, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visual, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: washer, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>-</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 100,0\% & 5,19 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>wre</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>wre</strong> & <strong style='color: orange;' title='REf: bottle, CER: 5'>wre</strong> & <strong style='color: orange;' title='REf: changed, CER: 5'>dead</strong> & <strong style='color: orange;' title='REf: class, CER: 4'>dead</strong> & <strong style='color: orange;' title='REf: classes, CER: 6'>wre</strong> & <strong style='color: orange;' title='REf: clear, CER: 3'>dead</strong> & <strong style='color: orange;' title='REf: connected, CER: 7'>dead</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 7'>wre</strong> & <strong style='color: orange;' title='REf: Cur, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: curves, CER: 4'>wre</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 9'>dead</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>dead</strong> & <strong style='color: orange;' title='REf: edit, CER: 4'>wre</strong> & <strong style='color: orange;' title='REf: editor, CER: 5'>dead</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 9'>wre</strong> & <strong style='color: orange;' title='REf: equipment, CER: 8'>wre</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>wre</strong> & <strong style='color: orange;' title='REf: file, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: filler, CER: 5'>wre</strong> & <strong style='color: orange;' title='REf: filtered, CER: 6'>wre</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>dead</strong> & <strong style='color: orange;' title='REf: grate, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>wre</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>dead</strong> & <strong style='color: orange;' title='REf: inspector, CER: 8'>wre</strong> & <strong style='color: orange;' title='REf: labeler, CER: 6'>wre</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: local, CER: 4'>dead</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>dead</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>dead</strong> & <strong style='color: orange;' title='REf: models, CER: 4'>dead</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: on, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: operation, CER: 7'>dead</strong> & <strong style='color: orange;' title='REf: packer, CER: 5'>wre</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 9'>wre</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>wre</strong> & <strong style='color: orange;' title='REf: ready, CER: 2'>dead</strong> & <strong style='color: orange;' title='REf: reference, CER: 7'>wre</strong> & <strong style='color: orange;' title='REf: reporting, CER: 8'>wre</strong> & <strong style='color: orange;' title='REf: selected, CER: 6'>dead</strong> & <strong style='color: orange;' title='REf: State, CER: 4'>wre</strong> & <strong style='color: orange;' title='REf: testenv, CER: 6'>wre</strong> & <strong style='color: orange;' title='REf: to, CER: 3'>wre</strong> & <strong style='color: orange;' title='REf: total, CER: 4'>dead</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 7'>wre</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>wre</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>wre</strong> & <strong style='color: orange;' title='REf: visual, CER: 5'>dead</strong> & <strong style='color: orange;' title='REf: washer, CER: 4'>wre</strong> & <strong style='color: orange;' title='REf: WS, CER: 3'>wre</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 100,0\% & 5,10 & 0 / 52 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_MetadataEditor\_variables\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: apply, CER: 5'>in</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>nite</strong> & <strong style='color: orange;' title='REf: bottle, CER: 4'>nite</strong> & <strong style='color: orange;' title='REf: changed, CER: 6'>in</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>in</strong> & <strong style='color: orange;' title='REf: classes, CER: 6'>nite</strong> & <strong style='color: orange;' title='REf: clear, CER: 4'>dr</strong> & <strong style='color: orange;' title='REf: connected, CER: 6'>nite</strong> & <strong style='color: orange;' title='REf: conveyor, CER: 7'>in</strong> & <strong style='color: orange;' title='REf: Cur, CER: 2'>dr</strong> & <strong style='color: orange;' title='REf: curves, CER: 5'>dr</strong> & <strong style='color: orange;' title='REf: depalletizer, CER: 10'>dr</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>in</strong> & <strong style='color: orange;' title='REf: edit, CER: 3'>in</strong> & <strong style='color: orange;' title='REf: editor, CER: 4'>dr</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 8'>in</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>in</strong> & <strong style='color: orange;' title='REf: event, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: file, CER: 2'>nite</strong> & <strong style='color: orange;' title='REf: filler, CER: 4'>nite</strong> & <strong style='color: orange;' title='REf: filtered, CER: 5'>nite</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>in</strong> & <strong style='color: orange;' title='REf: grate, CER: 3'>nite</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>dr</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: inspector, CER: 7'>in</strong> & <strong style='color: orange;' title='REf: labeler, CER: 6'>dr</strong> & <strong style='color: orange;' title='REf: line, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: local, CER: 5'>in</strong> & <strong style='color: orange;' title='REf: metadata, CER: 7'>dr</strong> & <strong style='color: orange;' title='REf: modeling, CER: 6'>in</strong> & <strong style='color: orange;' title='REf: models, CER: 5'>dr</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>nite</strong> & <strong style='color: orange;' title='REf: on, CER: 1'>in</strong> & <strong style='color: orange;' title='REf: operation, CER: 7'>in</strong> & <strong style='color: orange;' title='REf: packer, CER: 5'>dr</strong> & <strong style='color: orange;' title='REf: pasteurizer, CER: 9'>nite</strong> & <strong style='color: orange;' title='REf: project, CER: 6'>dr</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>dr</strong> & <strong style='color: orange;' title='REf: reference, CER: 8'>in</strong> & <strong style='color: orange;' title='REf: reporting, CER: 7'>in</strong> & <strong style='color: orange;' title='REf: selected, CER: 6'>nite</strong> & <strong style='color: orange;' title='REf: State, CER: 3'>nite</strong> & <strong style='color: orange;' title='REf: testenv, CER: 5'>nite</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: total, CER: 4'>nite</strong> & <strong style='color: orange;' title='REf: unpacker, CER: 6'>nite</strong> & <strong style='color: orange;' title='REf: users, CER: 4'>dr</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>nite</strong> & <strong style='color: orange;' title='REf: visual, CER: 5'>in</strong> & <strong style='color: orange;' title='REf: washer, CER: 5'>dr</strong> & <strong style='color: orange;' title='REf: WS, CER: 2'>in</strong> \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 0,5ms & 86,5\% & 3,73 & 7 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.zrs\_MetadataEditor\_variables\_001.png}} & ready & variables & totel & changed & ta & changed & le & selected & on & on & changed & selected & reporting & on & on & filtered & selected & on & le & filtered & filtered & ta & ta & on & hep & selected & le & le & totel & ready & totel & totel & ta & on & reporting & changed & filtered & totel & ready & reporting & reporting & selected & ta & totel & ta & totel & selected & le & variables & ta & hep & on \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,5ms & 90,4\% & 4,54 & 5 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.zrs\_MetadataEditor\_variables\_001.png}} & on & changed & total & changed & on & changed & total & selected & on & on & changed & selected & reporting & on & on & selected & on & on & on & on & selected & on & on & on & on & selected & changed & on & total & total & on & total & on & on & reporting & changed & selected & on & on & reporting & reporting & selected & total & total & on & total & changed & on & changed & total & changed & on \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 92,3\% & 3,85 & 5 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.zrs\_MetadataEditor\_variables\_001.png}} & ready & changed & sate & changed & came & changed & cor & connected & cor & gur & cur & elected & to & di & tor & elected & une & une & une & une & elected & sate & sate & gur & meu & elected & vorabler & une & to & state & on & meus & came & on & to & sate & sate & to & ready & une & on & elected & state & sate & to & to & une & une & vorabler & sar & sate & to \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 92,3\% & 3,87 & 4 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.zrs\_MetadataEditor\_variables\_001.png}} & ope & changed & total & changed & stare & changed & oper & elected & oper & sur & une & elected & elected & on & elected & elected & elected & elected & ine & ine & elected & stare & rate & ope & we & elected & oper & ine & total & ready & on & ope & rate & on & oper & oper & stare & ope & ready & elected & elected & elected & state & elected & tl & total & oper & ser & rate & total & ser & on \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 100,0\% & 6,46 & 0 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_MetadataEditor\_variables\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 6,46 & 0 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_MetadataEditor\_variables\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 100,0\% & 5,19 & 0 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.zrs\_MetadataEditor\_variables\_001.png}} & wre & wre & wre & dead & dead & wre & dead & dead & wre & wre & wre & dead & dead & wre & dead & wre & wre & wre & wre & wre & wre & dead & wre & wre & dead & wre & wre & wre & dead & dead & dead & dead & wre & wre & dead & wre & wre & wre & dead & wre & wre & dead & wre & wre & wre & dead & wre & wre & wre & dead & wre & wre \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 100,0\% & 5,10 & 0 / 52 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_MetadataEditor\_variables\_001.png}} & in & nite & nite & in & in & nite & dr & nite & in & dr & dr & dr & in & in & dr & in & in & in & nite & nite & nite & in & nite & dr & in & in & dr & in & in & dr & in & dr & nite & in & in & dr & nite & dr & dr & in & in & nite & nite & nite & in & nite & nite & dr & nite & in & dr & in \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{1} & \textbf{a} & \textbf{allow} & \textbf{an} & \textbf{analysis} & \textbf{analyzer} & \textbf{and} & \textbf{archives} & \textbf{based} & \textbf{be} & \textbf{can} & \textbf{cancel} & \textbf{cen} & \textbf{class} & \textbf{com} & \textbf{contains} & \textbf{copadata} & \textbf{costs} & \textbf{current} & \textbf{data} & \textbf{defined} & \textbf{diagram} & \textbf{efficiency} & \textbf{equipment} & \textbf{EUR} & \textbf{for} & \textbf{formula} & \textbf{formulas} & \textbf{from} & \textbf{groups} & \textbf{higher} & \textbf{historic} & \textbf{hour} & \textbf{in} & \textbf{is} & \textbf{limit} & \textbf{lower} & \textbf{model} & \textbf{models} & \textbf{name} & \textbf{new} & \textbf{normalised} & \textbf{ok} & \textbf{on} & \textbf{or} & \textbf{page} & \textbf{perform} & \textbf{period} & \textbf{preview} & \textbf{processed} & \textbf{report} & \textbf{reports} & \textbf{shown} & \textbf{tables} & \textbf{template} & \textbf{templates} & \textbf{that} & \textbf{the} & \textbf{theme} & \textbf{this} & \textbf{to} & \textbf{value} & \textbf{www} & \textbf{zenon} \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 29,7\% & 0,58 & 48 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & cancel & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 1'>currant</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>can</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>that</strong> & lower & model & models & <strong style='color: orange;' title='REf: name, CER: 1'>nama</strong> & new & normalised & ok & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>can</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 2'>valın</strong> & <strong style='color: orange;' title='REf: www, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 32,8\% & 0,59 & 47 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & cancel & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>on</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 5'>equipment</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>the</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & higher & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 3'>lout</strong> & <strong style='color: orange;' title='REf: lower, CER: 1'>tower</strong> & model & models & name & new & <strong style='color: orange;' title='REf: normalised, CER: 1'>nomalised</strong> & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>name</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 3'>cle</strong> & <strong style='color: orange;' title='REf: www, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 35,9\% & 0,86 & 44 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>the</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>model</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>based</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & normalised & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>based</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 4'>based</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 39,1\% & 0,91 & 43 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 1'>mom</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>the</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>this</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>model</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & <strong style='color: orange;' title='REf: normalised, CER: 5'>formulas</strong> & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>pree</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 43,8\% & 1,00 & 40 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: costs, CER: 3'>class</strong> & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & diagram & efficiency & <strong style='color: orange;' title='REf: equipment, CER: 2'>equipmer</strong> & <strong style='color: orange;' title='REf: EUR, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: for, CER: 1'>or</strong> & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 3'>to</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & <strong style='color: orange;' title='REf: hour, CER: 2'>or</strong> & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>model</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & normalised & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>data</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 46,9\% & 1,25 & 38 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & <strong style='color: orange;' title='REf: archives, CER: 3'>archi</strong> & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 2'>canbe</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>on</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & <strong style='color: orange;' title='REf: diagram, CER: 4'>data</strong> & efficiency & <strong style='color: orange;' title='REf: equipment, CER: 6'>efficiency</strong> & <strong style='color: orange;' title='REf: EUR, CER: 3'>on</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>that</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>model</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>based</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & <strong style='color: orange;' title='REf: normalised, CER: 5'>formulas</strong> & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>based</strong> & perform & period & preview & <strong style='color: orange;' title='REf: processed, CER: 5'>preview</strong> & report & reports & shown & <strong style='color: orange;' title='REf: tables, CER: 4'>based</strong> & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 3'>canbe</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>on</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 48,4\% & 0,44 & 49 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & cancel & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & <strong style='color: orange;' title='REf: contains, CER: 1'>cortains</strong> & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 1'>currant</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>the</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & higher & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 1'>imit</strong> & lower & model & models & name & new & normalised & ok & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>name</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 1'>valua</strong> & <strong style='color: orange;' title='REf: www, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 50,0\% & 0,52 & 50 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & cancel & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & diagram & efficiency & <strong style='color: orange;' title='REf: equipment, CER: 1'>equipmert</strong> & <strong style='color: orange;' title='REf: EUR, CER: 3'>be</strong> & for & formula & formulas & from & groups & higher & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 2'>mit</strong> & lower & model & models & name & new & normalised & ok & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>name</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: www, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 50,0\% & 1,11 & 37 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & <strong style='color: orange;' title='REf: and, CER: 1'>an</strong> & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>on</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: costs, CER: 3'>class</strong> & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & <strong style='color: orange;' title='REf: diagram, CER: 4'>data</strong> & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>on</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & <strong style='color: orange;' title='REf: historic, CER: 1'>hisoric</strong> & <strong style='color: orange;' title='REf: hour, CER: 2'>for</strong> & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>this</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>for</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & <strong style='color: orange;' title='REf: normalised, CER: 1'>nommalised</strong> & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>data</strong> & perform & period & <strong style='color: orange;' title='REf: preview, CER: 4'>period</strong> & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>on</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 51,6\% & 1,36 & 34 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 2'>an</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & <strong style='color: orange;' title='REf: allow, CER: 4'>an</strong> & an & <strong style='color: orange;' title='REf: analysis, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: analyzer, CER: 6'>based</strong> & and & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & <strong style='color: orange;' title='REf: contains, CER: 4'>costs</strong> & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: for, CER: 1'>or</strong> & formula & <strong style='color: orange;' title='REf: formulas, CER: 1'>formula</strong> & <strong style='color: orange;' title='REf: from, CER: 3'>on</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 3'>lie</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>hour</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & <strong style='color: orange;' title='REf: normalised, CER: 6'>based</strong> & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: perform, CER: 3'>period</strong> & period & preview & processed & report & reports & shown & tables & template & <strong style='color: orange;' title='REf: templates, CER: 1'>template</strong> & <strong style='color: orange;' title='REf: that, CER: 2'>the</strong> & the & <strong style='color: orange;' title='REf: theme, CER: 2'>the</strong> & this & to & <strong style='color: orange;' title='REf: value, CER: 3'>lie</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>the</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 51,6\% & 1,11 & 37 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>on</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: costs, CER: 3'>class</strong> & <strong style='color: orange;' title='REf: current, CER: 5'>can</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>be</strong> & <strong style='color: orange;' title='REf: for, CER: 1'>or</strong> & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 3'>on</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 3'>ihe</strong> & historic & <strong style='color: orange;' title='REf: hour, CER: 2'>or</strong> & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>that</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>or</strong> & model & models & <strong style='color: orange;' title='REf: name, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & normalised & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: perform, CER: 3'>period</strong> & period & <strong style='color: orange;' title='REf: preview, CER: 4'>period</strong> & processed & report & <strong style='color: orange;' title='REf: reports, CER: 1'>report</strong> & shown & tables & template & templates & that & the & theme & <strong style='color: orange;' title='REf: this, CER: 2'>that</strong> & to & <strong style='color: orange;' title='REf: value, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>be</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 51,6\% & 0,47 & 51 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & cancel & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>can</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & current & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>be</strong> & for & formula & formulas & from & groups & <strong style='color: orange;' title='REf: higher, CER: 1'>highes</strong> & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>is</strong> & lower & model & models & name & new & normalised & ok & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>name</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: www, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 62,5\% & 0,56 & 48 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>13</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & allow & an & analysis & <strong style='color: orange;' title='REf: analyzer, CER: 3'>analysis</strong> & and & archives & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>on</strong> & contains & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & costs & <strong style='color: orange;' title='REf: current, CER: 4'>cur</strong> & data & defined & diagram & efficiency & equipment & <strong style='color: orange;' title='REf: EUR, CER: 3'>on</strong> & for & formula & formulas & <strong style='color: orange;' title='REf: from, CER: 2'>for</strong> & groups & higher & historic & hour & in & is & <strong style='color: orange;' title='REf: limit, CER: 3'>bit</strong> & lower & model & models & name & new & normalised & <strong style='color: orange;' title='REf: ok, CER: 1'>on</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>name</strong> & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & <strong style='color: orange;' title='REf: value, CER: 1'>valua</strong> & <strong style='color: orange;' title='REf: www, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 62,5\% & 1,55 & 28 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>15</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>an</strong> & <strong style='color: orange;' title='REf: allow, CER: 3'>ll</strong> & an & <strong style='color: orange;' title='REf: analysis, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: analyzer, CER: 5'>name</strong> & and & <strong style='color: orange;' title='REf: archives, CER: 6'>is</strong> & based & be & can & <strong style='color: orange;' title='REf: cancel, CER: 3'>can</strong> & <strong style='color: orange;' title='REf: cen, CER: 1'>can</strong> & class & <strong style='color: orange;' title='REf: com, CER: 2'>or</strong> & <strong style='color: orange;' title='REf: contains, CER: 5'>can</strong> & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: costs, CER: 3'>class</strong> & current & data & defined & diagram & efficiency & <strong style='color: orange;' title='REf: equipment, CER: 5'>current</strong> & <strong style='color: orange;' title='REf: EUR, CER: 3'>and</strong> & <strong style='color: orange;' title='REf: for, CER: 1'>or</strong> & <strong style='color: orange;' title='REf: formula, CER: 1'>formulas</strong> & formulas & <strong style='color: orange;' title='REf: from, CER: 3'>or</strong> & groups & <strong style='color: orange;' title='REf: higher, CER: 4'>the</strong> & historic & <strong style='color: orange;' title='REf: hour, CER: 2'>or</strong> & in & is & <strong style='color: orange;' title='REf: limit, CER: 4'>in</strong> & <strong style='color: orange;' title='REf: lower, CER: 3'>or</strong> & model & <strong style='color: orange;' title='REf: models, CER: 1'>model</strong> & name & <strong style='color: orange;' title='REf: new, CER: 2'>be</strong> & normalised & <strong style='color: orange;' title='REf: ok, CER: 1'>or</strong> & on & or & <strong style='color: orange;' title='REf: page, CER: 2'>name</strong> & <strong style='color: orange;' title='REf: perform, CER: 3'>period</strong> & period & <strong style='color: orange;' title='REf: preview, CER: 4'>period</strong> & processed & report & <strong style='color: orange;' title='REf: reports, CER: 1'>report</strong> & shown & <strong style='color: orange;' title='REf: tables, CER: 4'>be</strong> & template & <strong style='color: orange;' title='REf: templates, CER: 1'>template</strong> & <strong style='color: orange;' title='REf: that, CER: 2'>the</strong> & the & <strong style='color: orange;' title='REf: theme, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: this, CER: 2'>is</strong> & to & <strong style='color: orange;' title='REf: value, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>and</strong> & <strong style='color: orange;' title='REf: zenon, CER: 3'>on</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 93,8\% & 3,75 & 4 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>10</strong> & <strong style='color: orange;' title='REf: a, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: allow, CER: 4'>class</strong> & <strong style='color: orange;' title='REf: an, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: analysis, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: analyzer, CER: 7'>template</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: archives, CER: 6'>class</strong> & <strong style='color: orange;' title='REf: based, CER: 4'>class</strong> & <strong style='color: orange;' title='REf: be, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: can, CER: 2'>dat</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: cen, CER: 3'>10</strong> & class & <strong style='color: orange;' title='REf: com, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: contains, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: copadata, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: costs, CER: 3'>class</strong> & <strong style='color: orange;' title='REf: current, CER: 6'>report</strong> & data & <strong style='color: orange;' title='REf: defined, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: diagram, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 9'>template</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>report</strong> & <strong style='color: orange;' title='REf: EUR, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: formula, CER: 6'>template</strong> & <strong style='color: orange;' title='REf: formulas, CER: 6'>template</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>10</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: higher, CER: 6'>10</strong> & <strong style='color: orange;' title='REf: historic, CER: 6'>report</strong> & <strong style='color: orange;' title='REf: hour, CER: 4'>10</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: is, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: limit, CER: 4'>dat</strong> & <strong style='color: orange;' title='REf: lower, CER: 5'>10</strong> & <strong style='color: orange;' title='REf: model, CER: 4'>dat</strong> & <strong style='color: orange;' title='REf: models, CER: 5'>class</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>dat</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: normalised, CER: 7'>template</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: or, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: page, CER: 3'>dat</strong> & <strong style='color: orange;' title='REf: perform, CER: 4'>report</strong> & <strong style='color: orange;' title='REf: period, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: preview, CER: 5'>report</strong> & <strong style='color: orange;' title='REf: processed, CER: 7'>report</strong> & report & <strong style='color: orange;' title='REf: reports, CER: 1'>report</strong> & <strong style='color: orange;' title='REf: shown, CER: 5'>10</strong> & <strong style='color: orange;' title='REf: tables, CER: 5'>class</strong> & template & <strong style='color: orange;' title='REf: templates, CER: 1'>template</strong> & <strong style='color: orange;' title='REf: that, CER: 2'>dat</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: theme, CER: 5'>template</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>10</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>10</strong> & <strong style='color: orange;' title='REf: value, CER: 4'>dat</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>10</strong> & <strong style='color: orange;' title='REf: zenon, CER: 4'>report</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 5,16 & 0 / 64 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_REPORTS\_EfficencyClass\_009.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 1, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: a, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: allow, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: an, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: analysis, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: analyzer, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: and, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: archives, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: based, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: be, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: can, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cen, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: class, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: com, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: contains, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: copadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: costs, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: current, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: data, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: defined, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: diagram, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: efficiency, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: EUR, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: formula, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: formulas, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: from, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: higher, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: historic, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: hour, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: in, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: is, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: limit, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: lower, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: model, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: models, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: normalised, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: on, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: or, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: page, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: perform, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: period, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: preview, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: processed, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: reports, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: shown, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: tables, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: template, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: templates, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: that, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: theme, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: value, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: www, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: zenon, CER: 5'>-</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 29,7\% & 0,58 & 48 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 13 & an & allow & an & analysis & analysis & and & archives & based & be & can & cancel & can & class & can & contains & data & costs & currant & data & defined & diagram & efficiency & equipment & can & for & formula & formulas & for & groups & the & historic & hour & in & is & that & lower & model & models & nama & new & normalised & ok & on & or & can & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & valın & new & on \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 32,8\% & 0,59 & 47 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 13 & an & allow & an & analysis & analysis & and & archives & based & be & can & cancel & can & class & on & contains & data & costs & equipment & data & defined & diagram & efficiency & equipment & the & for & formula & formulas & for & groups & higher & historic & hour & in & is & lout & tower & model & models & name & new & nomalised & on & on & or & name & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & cle & new & on \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 35,9\% & 0,86 & 44 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 13 & an & allow & an & analysis & analysis & and & archives & based & be & can & can & can & class & can & contains & data & costs & can & data & defined & diagram & efficiency & equipment & the & for & formula & formulas & for & groups & the & historic & hour & in & is & in & model & model & models & based & be & normalised & on & on & or & based & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & based & the & on \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 39,1\% & 0,91 & 43 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 13 & an & allow & an & analysis & analysis & and & archives & based & be & can & can & can & class & mom & contains & data & costs & can & data & defined & diagram & efficiency & equipment & the & for & formula & formulas & for & groups & the & historic & hour & in & is & this & model & model & models & the & be & formulas & on & on & or & pree & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & the & the & on \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 62,5\% & 0,56 & 48 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 13 & an & allow & an & analysis & analysis & and & archives & based & be & can & can & can & class & on & contains & data & costs & cur & data & defined & diagram & efficiency & equipment & on & for & formula & formulas & for & groups & higher & historic & hour & in & is & bit & lower & model & models & name & new & normalised & on & on & or & name & perform & period & preview & processed & report & reports & shown & tables & template & templates & that & the & theme & this & to & valua & new & on \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 62,5\% & 1,55 & 28 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 15 & an & ll & an & class & name & and & is & based & be & can & can & can & class & or & can & data & class & current & data & defined & diagram & efficiency & current & and & or & formulas & formulas & or & groups & the & historic & or & in & is & in & or & model & model & name & be & normalised & or & on & or & name & period & period & period & processed & report & report & shown & be & template & template & the & the & the & is & to & name & and & on \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 93,8\% & 3,75 & 4 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & 10 & 10 & class & 10 & class & template & 10 & class & class & 10 & dat & class & 10 & class & 10 & class & data & class & report & data & report & data & template & report & 10 & 10 & template & template & 10 & class & 10 & report & 10 & 10 & 10 & dat & 10 & dat & class & dat & 10 & template & 10 & 10 & 10 & dat & report & report & report & report & report & report & 10 & class & template & template & dat & 10 & template & 10 & 10 & dat & 10 & report \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,5ms & 100,0\% & 5,16 & 0 / 64 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_REPORTS\_EfficencyClass\_009.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{3rd} & \textbf{archive} & \textbf{assigned} & \textbf{bottle} & \textbf{cancel} & \textbf{connector} & \textbf{cycle} & \textbf{database} & \textbf{datasource} & \textbf{dd} & \textbf{description} & \textbf{equipment} & \textbf{for} & \textbf{glass} & \textbf{groups} & \textbf{hh} & \textbf{identification} & \textbf{line} & \textbf{media} & \textbf{metadata} & \textbf{mm} & \textbf{new} & \textbf{next} & \textbf{ok} & \textbf{party} & \textbf{plant} & \textbf{previous} & \textbf{project} & \textbf{ss} & \textbf{the} & \textbf{time} & \textbf{total} & \textbf{variables} & \textbf{visualname} \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 32,4\% & 0,85 & 25 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 3rd & archive & assigned & bottle & <strong style='color: orange;' title='REf: cancel, CER: 4'>line</strong> & connector & cycle & database & <strong style='color: orange;' title='REf: datasource, CER: 4'>source</strong> & dd & description & equipment & for & glass & groups & hh & identification & line & <strong style='color: orange;' title='REf: media, CER: 4'>data</strong> & metadata & mm & new & <strong style='color: orange;' title='REf: next, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & party & <strong style='color: orange;' title='REf: plant, CER: 3'>line</strong> & <strong style='color: orange;' title='REf: previous, CER: 5'>groups</strong> & project & <strong style='color: orange;' title='REf: ss, CER: 2'>hh</strong> & the & time & <strong style='color: orange;' title='REf: total, CER: 3'>data</strong> & variables & visualname \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 35,3\% & 0,82 & 24 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 3rd & archive & assigned & bottle & <strong style='color: orange;' title='REf: cancel, CER: 4'>cycle</strong> & connector & cycle & database & <strong style='color: orange;' title='REf: datasource, CER: 4'>source</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>3rd</strong> & description & equipment & for & glass & groups & <strong style='color: orange;' title='REf: hh, CER: 1'>he</strong> & identification & line & media & metadata & <strong style='color: orange;' title='REf: mm, CER: 2'>ok</strong> & new & <strong style='color: orange;' title='REf: next, CER: 2'>new</strong> & ok & party & <strong style='color: orange;' title='REf: plant, CER: 3'>party</strong> & <strong style='color: orange;' title='REf: previous, CER: 5'>groups</strong> & project & <strong style='color: orange;' title='REf: ss, CER: 2'>ok</strong> & the & time & <strong style='color: orange;' title='REf: total, CER: 3'>bottle</strong> & variables & visualname \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 41,2\% & 1,18 & 23 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 3rd & archive & assigned & bottle & <strong style='color: orange;' title='REf: cancel, CER: 4'>line</strong> & connector & cycle & database & <strong style='color: orange;' title='REf: datasource, CER: 4'>source</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>3rd</strong> & description & equipment & for & glass & groups & hh & <strong style='color: orange;' title='REf: identification, CER: 7'>description</strong> & line & media & metadata & <strong style='color: orange;' title='REf: mm, CER: 2'>eh</strong> & new & <strong style='color: orange;' title='REf: next, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & party & plant & <strong style='color: orange;' title='REf: previous, CER: 5'>groups</strong> & project & <strong style='color: orange;' title='REf: ss, CER: 2'>eh</strong> & the & time & <strong style='color: orange;' title='REf: total, CER: 3'>data</strong> & variables & <strong style='color: orange;' title='REf: visualname, CER: 7'>line</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 61,8\% & 2,00 & 14 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: archive, CER: 5'>time</strong> & assigned & <strong style='color: orange;' title='REf: bottle, CER: 4'>time</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>cycle</strong> & <strong style='color: orange;' title='REf: connector, CER: 6'>project</strong> & cycle & <strong style='color: orange;' title='REf: database, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: datasource, CER: 4'>source</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>mm</strong> & description & equipment & <strong style='color: orange;' title='REf: for, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: glass, CER: 3'>ss</strong> & groups & <strong style='color: orange;' title='REf: hh, CER: 2'>mm</strong> & identification & <strong style='color: orange;' title='REf: line, CER: 2'>time</strong> & media & metadata & mm & <strong style='color: orange;' title='REf: new, CER: 3'>mm</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>media</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>mm</strong> & <strong style='color: orange;' title='REf: party, CER: 3'>data</strong> & <strong style='color: orange;' title='REf: plant, CER: 4'>data</strong> & <strong style='color: orange;' title='REf: previous, CER: 5'>groups</strong> & project & ss & <strong style='color: orange;' title='REf: the, CER: 2'>time</strong> & time & <strong style='color: orange;' title='REf: total, CER: 3'>data</strong> & variables & visualname \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 67,6\% & 2,88 & 11 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 3rd & archive & <strong style='color: orange;' title='REf: assigned, CER: 5'>line</strong> & <strong style='color: orange;' title='REf: bottle, CER: 1'>botte</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>new</strong> & connector & <strong style='color: orange;' title='REf: cycle, CER: 4'>the</strong> & database & <strong style='color: orange;' title='REf: datasource, CER: 5'>database</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>3rd</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>archive</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>plant</strong> & for & glass & <strong style='color: orange;' title='REf: groups, CER: 4'>glass</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: identification, CER: 10'>connector</strong> & line & <strong style='color: orange;' title='REf: media, CER: 4'>new</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>database</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>at</strong> & new & <strong style='color: orange;' title='REf: next, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & party & plant & <strong style='color: orange;' title='REf: previous, CER: 6'>archive</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>at</strong> & the & <strong style='color: orange;' title='REf: time, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: total, CER: 3'>botte</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>archive</strong> & <strong style='color: orange;' title='REf: visualname, CER: 7'>database</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 67,6\% & 3,00 & 11 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & 3rd & archive & <strong style='color: orange;' title='REf: assigned, CER: 5'>line</strong> & bottle & <strong style='color: orange;' title='REf: cancel, CER: 4'>line</strong> & connector & <strong style='color: orange;' title='REf: cycle, CER: 4'>line</strong> & database & <strong style='color: orange;' title='REf: datasource, CER: 5'>database</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>3rd</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>party</strong> & <strong style='color: orange;' title='REf: equipment, CER: 7'>line</strong> & for & glass & <strong style='color: orange;' title='REf: groups, CER: 4'>glass</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>the</strong> & <strong style='color: orange;' title='REf: identification, CER: 10'>connector</strong> & line & <strong style='color: orange;' title='REf: media, CER: 4'>3rd</strong> & <strong style='color: orange;' title='REf: metadata, CER: 5'>database</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>qf</strong> & new & <strong style='color: orange;' title='REf: next, CER: 2'>new</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & party & <strong style='color: orange;' title='REf: plant, CER: 3'>party</strong> & <strong style='color: orange;' title='REf: previous, CER: 6'>archive</strong> & <strong style='color: orange;' title='REf: project, CER: 6'>party</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>qf</strong> & the & <strong style='color: orange;' title='REf: time, CER: 2'>line</strong> & <strong style='color: orange;' title='REf: total, CER: 3'>bottle</strong> & <strong style='color: orange;' title='REf: variables, CER: 6'>database</strong> & <strong style='color: orange;' title='REf: visualname, CER: 7'>database</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 88,2\% & 4,09 & 4 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>hh</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>media</strong> & <strong style='color: orange;' title='REf: assigned, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: bottle, CER: 3'>total</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: connector, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: cycle, CER: 4'>ey</strong> & <strong style='color: orange;' title='REf: database, CER: 6'>total</strong> & <strong style='color: orange;' title='REf: datasource, CER: 8'>total</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>hh</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>media</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>plant</strong> & <strong style='color: orange;' title='REf: for, CER: 1'>fo</strong> & <strong style='color: orange;' title='REf: glass, CER: 3'>plant</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>total</strong> & hh & <strong style='color: orange;' title='REf: identification, CER: 11'>media</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>plant</strong> & media & <strong style='color: orange;' title='REf: metadata, CER: 4'>media</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>hh</strong> & <strong style='color: orange;' title='REf: new, CER: 2'>ey</strong> & <strong style='color: orange;' title='REf: next, CER: 3'>ey</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>hh</strong> & <strong style='color: orange;' title='REf: party, CER: 3'>plant</strong> & plant & <strong style='color: orange;' title='REf: previous, CER: 6'>media</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>hh</strong> & <strong style='color: orange;' title='REf: the, CER: 2'>hh</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>total</strong> & total & <strong style='color: orange;' title='REf: variables, CER: 7'>media</strong> & <strong style='color: orange;' title='REf: visualname, CER: 8'>plant</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 88,2\% & 5,35 & 4 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>groups</strong> & assigned & <strong style='color: orange;' title='REf: bottle, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: connector, CER: 9'>equipment</strong> & <strong style='color: orange;' title='REf: cycle, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: database, CER: 7'>groups</strong> & <strong style='color: orange;' title='REf: datasource, CER: 8'>groups</strong> & <strong style='color: orange;' title='REf: dd, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: description, CER: 7'>identification</strong> & equipment & <strong style='color: orange;' title='REf: for, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>groups</strong> & groups & <strong style='color: orange;' title='REf: hh, CER: 6'>groups</strong> & identification & <strong style='color: orange;' title='REf: line, CER: 5'>assigned</strong> & <strong style='color: orange;' title='REf: media, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>groups</strong> & <strong style='color: orange;' title='REf: mm, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: new, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: next, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: ok, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: party, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: plant, CER: 6'>equipment</strong> & <strong style='color: orange;' title='REf: previous, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: ss, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: the, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: time, CER: 6'>equipment</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>groups</strong> & <strong style='color: orange;' title='REf: visualname, CER: 8'>assigned</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 88,2\% & 5,38 & 4 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>groups</strong> & assigned & <strong style='color: orange;' title='REf: bottle, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: connector, CER: 6'>project</strong> & <strong style='color: orange;' title='REf: cycle, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: database, CER: 7'>groups</strong> & <strong style='color: orange;' title='REf: datasource, CER: 8'>groups</strong> & <strong style='color: orange;' title='REf: dd, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: description, CER: 8'>equipment</strong> & equipment & <strong style='color: orange;' title='REf: for, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: glass, CER: 4'>groups</strong> & groups & <strong style='color: orange;' title='REf: hh, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: identification, CER: 11'>equipment</strong> & <strong style='color: orange;' title='REf: line, CER: 5'>assigned</strong> & <strong style='color: orange;' title='REf: media, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: metadata, CER: 7'>project</strong> & <strong style='color: orange;' title='REf: mm, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: new, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: next, CER: 5'>project</strong> & <strong style='color: orange;' title='REf: ok, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: party, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: plant, CER: 5'>project</strong> & <strong style='color: orange;' title='REf: previous, CER: 5'>groups</strong> & project & <strong style='color: orange;' title='REf: ss, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: the, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: time, CER: 6'>groups</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>groups</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>groups</strong> & <strong style='color: orange;' title='REf: visualname, CER: 8'>assigned</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 91,2\% & 4,03 & 3 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>ao</strong> & <strong style='color: orange;' title='REf: archive, CER: 5'>tie</strong> & <strong style='color: orange;' title='REf: assigned, CER: 6'>tie</strong> & <strong style='color: orange;' title='REf: bottle, CER: 3'>total</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: connector, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: cycle, CER: 4'>tie</strong> & <strong style='color: orange;' title='REf: database, CER: 6'>tie</strong> & <strong style='color: orange;' title='REf: datasource, CER: 8'>ao</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>media</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>plant</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: glass, CER: 3'>plant</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>ao</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: identification, CER: 11'>media</strong> & <strong style='color: orange;' title='REf: line, CER: 2'>tie</strong> & media & <strong style='color: orange;' title='REf: metadata, CER: 4'>media</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>ao</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>plant</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: party, CER: 3'>plant</strong> & plant & <strong style='color: orange;' title='REf: previous, CER: 6'>media</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: the, CER: 1'>tie</strong> & <strong style='color: orange;' title='REf: time, CER: 1'>tie</strong> & total & <strong style='color: orange;' title='REf: variables, CER: 7'>media</strong> & <strong style='color: orange;' title='REf: visualname, CER: 8'>plant</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 94,1\% & 4,47 & 2 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>hab</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>media</strong> & <strong style='color: orange;' title='REf: assigned, CER: 7'>media</strong> & <strong style='color: orange;' title='REf: bottle, CER: 5'>ao</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: connector, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: cycle, CER: 5'>media</strong> & <strong style='color: orange;' title='REf: database, CER: 6'>hab</strong> & <strong style='color: orange;' title='REf: datasource, CER: 8'>ao</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: description, CER: 9'>media</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>plant</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: glass, CER: 3'>plant</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>ao</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>hab</strong> & <strong style='color: orange;' title='REf: identification, CER: 11'>media</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>plant</strong> & media & <strong style='color: orange;' title='REf: metadata, CER: 4'>media</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>hab</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>media</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: party, CER: 3'>plant</strong> & plant & <strong style='color: orange;' title='REf: previous, CER: 6'>media</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>ao</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>hab</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>hab</strong> & <strong style='color: orange;' title='REf: total, CER: 4'>hab</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>media</strong> & <strong style='color: orange;' title='REf: visualname, CER: 8'>plant</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 97,1\% & 4,88 & 1 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: archive, CER: 6'>hab</strong> & <strong style='color: orange;' title='REf: assigned, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: bottle, CER: 5'>bys</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: connector, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: cycle, CER: 4'>bys</strong> & <strong style='color: orange;' title='REf: database, CER: 6'>bys</strong> & <strong style='color: orange;' title='REf: datasource, CER: 9'>plant</strong> & <strong style='color: orange;' title='REf: dd, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: description, CER: 10'>plant</strong> & <strong style='color: orange;' title='REf: equipment, CER: 6'>plant</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: glass, CER: 3'>plant</strong> & <strong style='color: orange;' title='REf: groups, CER: 5'>bys</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>hab</strong> & <strong style='color: orange;' title='REf: identification, CER: 12'>plant</strong> & <strong style='color: orange;' title='REf: line, CER: 3'>plant</strong> & <strong style='color: orange;' title='REf: media, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: metadata, CER: 6'>plant</strong> & <strong style='color: orange;' title='REf: mm, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>plant</strong> & <strong style='color: orange;' title='REf: ok, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: party, CER: 3'>plant</strong> & plant & <strong style='color: orange;' title='REf: previous, CER: 7'>plant</strong> & <strong style='color: orange;' title='REf: project, CER: 5'>plant</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>bys</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>bys</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>bys</strong> & <strong style='color: orange;' title='REf: total, CER: 4'>hab</strong> & <strong style='color: orange;' title='REf: variables, CER: 7'>bys</strong> & <strong style='color: orange;' title='REf: visualname, CER: 8'>plant</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 100,0\% & 5,88 & 0 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: assigned, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: connector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cycle, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: database, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: datasource, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: identification, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: media, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: party, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: plant, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: previous, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visualname, CER: 10'>-</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 5,88 & 0 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: assigned, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: connector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cycle, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: database, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: datasource, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: identification, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: media, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: party, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: plant, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: previous, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visualname, CER: 10'>-</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 100,0\% & 5,88 & 0 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: assigned, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: connector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cycle, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: database, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: datasource, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: identification, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: media, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: party, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: plant, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: previous, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visualname, CER: 10'>-</strong> \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 100,0\% & 5,88 & 0 / 34 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_3rd-connector\_014.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 3rd, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: archive, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: assigned, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: bottle, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: connector, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: cycle, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: database, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: datasource, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: dd, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: description, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: equipment, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: glass, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: groups, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: hh, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: identification, CER: 14'>-</strong> & <strong style='color: orange;' title='REf: line, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: media, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: metadata, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: mm, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: new, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: next, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: party, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: plant, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: previous, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: project, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ss, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: the, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: time, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: total, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: variables, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: visualname, CER: 10'>-</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 32,4\% & 0,85 & 25 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 3rd & archive & assigned & bottle & line & connector & cycle & database & source & dd & description & equipment & for & glass & groups & hh & identification & line & data & metadata & mm & new & new & for & party & line & groups & project & hh & the & time & data & variables & visualname \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 35,3\% & 0,82 & 24 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 3rd & archive & assigned & bottle & cycle & connector & cycle & database & source & 3rd & description & equipment & for & glass & groups & he & identification & line & media & metadata & ok & new & new & ok & party & party & groups & project & ok & the & time & bottle & variables & visualname \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 41,2\% & 1,18 & 23 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_ZAMS\_3rd-connector\_014.png}} & 3rd & archive & assigned & bottle & line & connector & cycle & database & source & 3rd & description & equipment & for & glass & groups & hh & description & line & media & metadata & eh & new & new & for & party & plant & groups & project & eh & the & time & data & variables & line \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 61,8\% & 2,00 & 14 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.zrs\_ZAMS\_3rd-connector\_014.png}} & mm & time & assigned & time & cycle & project & cycle & data & source & mm & description & equipment & mm & ss & groups & mm & identification & time & media & metadata & mm & mm & media & mm & data & data & groups & project & ss & time & time & data & variables & visualname \\ \hline
|
||||
ThresholdAd...ssor(16\_16) & 0,4ms & 100,0\% & 5,88 & 0 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_3rd-connector\_014.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,5ms & 100,0\% & 5,88 & 0 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_3rd-connector\_014.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdAd...ssor(12\_12) & 0,5ms & 100,0\% & 5,88 & 0 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_3rd-connector\_014.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 100,0\% & 5,88 & 0 / 34 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.zrs\_ZAMS\_3rd-connector\_014.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{a} & \textbf{access} & \textbf{ad} & \textbf{adbc} & \textbf{adhoc} & \textbf{all} & \textbf{allow} & \textbf{applied} & \textbf{are} & \textbf{cancel} & \textbf{cd} & \textbf{CDSBG036} & \textbf{connection} & \textbf{db} & \textbf{disallow} & \textbf{drivers} & \textbf{dynamic} & \textbf{enable} & \textbf{for} & \textbf{general} & \textbf{haraldr} & \textbf{help} & \textbf{index} & \textbf{inprocess} & \textbf{level} & \textbf{like} & \textbf{linked} & \textbf{microsoft} & \textbf{my} & \textbf{name} & \textbf{nested} & \textbf{non} & \textbf{ok} & \textbf{ole} & \textbf{only} & \textbf{operator} & \textbf{options} & \textbf{page} & \textbf{parameter} & \textbf{path} & \textbf{properties} & \textbf{provider} & \textbf{queries} & \textbf{ready} & \textbf{script} & \textbf{select} & \textbf{server} & \textbf{servers} & \textbf{sql} & \textbf{supports} & \textbf{that} & \textbf{these} & \textbf{this} & \textbf{to} & \textbf{transacted} & \textbf{updates} & \textbf{use} & \textbf{using} & \textbf{view} & \textbf{ZA2} & \textbf{zero} \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 39,3\% & 0,82 & 43 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & allow & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>are</strong> & cd & <strong style='color: orange;' title='REf: CDSBG036, CER: 5'>cdsbg036</strong> & connection & <strong style='color: orange;' title='REf: db, CER: 2'>as</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & enable & <strong style='color: orange;' title='REf: for, CER: 2'>to</strong> & general & <strong style='color: orange;' title='REf: haraldr, CER: 5'>are</strong> & <strong style='color: orange;' title='REf: help, CER: 1'>hep</strong> & index & inprocess & level & like & linked & <strong style='color: orange;' title='REf: microsoft, CER: 7'>access</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>as</strong> & name & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>use</strong> & only & operator & options & page & parameter & path & properties & provider & <strong style='color: orange;' title='REf: queries, CER: 2'>quenes</strong> & ready & <strong style='color: orange;' title='REf: script, CER: 4'>select</strong> & select & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & using & view & <strong style='color: orange;' title='REf: ZA2, CER: 3'>use</strong> & zero \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 42,6\% & 1,30 & 36 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & allow & <strong style='color: orange;' title='REf: applied, CER: 5'>are</strong> & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 6'>cdsbgo36</strong> & connection & <strong style='color: orange;' title='REf: db, CER: 2'>as</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & <strong style='color: orange;' title='REf: enable, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: general, CER: 4'>level</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>are</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>zero</strong> & index & inprocess & level & like & linked & <strong style='color: orange;' title='REf: microsoft, CER: 7'>zero</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>are</strong> & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>are</strong> & only & operator & options & <strong style='color: orange;' title='REf: page, CER: 2'>are</strong> & parameter & path & <strong style='color: orange;' title='REf: properties, CER: 5'>progress</strong> & provider & queries & ready & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>servers</strong> & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & using & view & <strong style='color: orange;' title='REf: ZA2, CER: 3'>are</strong> & zero \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 44,3\% & 1,21 & 36 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & <strong style='color: orange;' title='REf: allow, CER: 1'>alow</strong> & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>are</strong> & cd & <strong style='color: orange;' title='REf: CDSBG036, CER: 6'>cdsbgo36</strong> & connection & <strong style='color: orange;' title='REf: db, CER: 2'>as</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & <strong style='color: orange;' title='REf: dynamic, CER: 1'>oynamic</strong> & <strong style='color: orange;' title='REf: enable, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: general, CER: 4'>level</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>parameter</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>these</strong> & index & inprocess & level & like & linked & <strong style='color: orange;' title='REf: microsoft, CER: 7'>access</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>are</strong> & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>are</strong> & only & operator & options & <strong style='color: orange;' title='REf: page, CER: 2'>are</strong> & parameter & path & <strong style='color: orange;' title='REf: properties, CER: 5'>progress</strong> & provider & queries & ready & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>level</strong> & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & using & view & <strong style='color: orange;' title='REf: ZA2, CER: 3'>are</strong> & zero \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 44,3\% & 1,31 & 37 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & allow & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>level</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>path</strong> & <strong style='color: orange;' title='REf: connection, CER: 6'>options</strong> & <strong style='color: orange;' title='REf: db, CER: 2'>to</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & enable & <strong style='color: orange;' title='REf: for, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: general, CER: 4'>level</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>operator</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>zero</strong> & index & inprocess & level & like & linked & <strong style='color: orange;' title='REf: microsoft, CER: 7'>operator</strong> & <strong style='color: orange;' title='REf: my, CER: 1'>my\_</strong> & name & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>use</strong> & only & operator & options & <strong style='color: orange;' title='REf: page, CER: 2'>path</strong> & parameter & path & <strong style='color: orange;' title='REf: properties, CER: 5'>queries</strong> & provider & queries & <strong style='color: orange;' title='REf: ready, CER: 4'>path</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>servers</strong> & server & servers & sql & supports & that & these & this & to & transacted & updates & use & using & <strong style='color: orange;' title='REf: view, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>use</strong> & zero \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 44,3\% & 1,10 & 37 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & allow & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 7'>32</strong> & connection & <strong style='color: orange;' title='REf: db, CER: 2'>as</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & <strong style='color: orange;' title='REf: enable, CER: 3'>name</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>non</strong> & general & <strong style='color: orange;' title='REf: haraldr, CER: 5'>parameter</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>these</strong> & index & inprocess & level & <strong style='color: orange;' title='REf: like, CER: 2'>linked</strong> & linked & <strong style='color: orange;' title='REf: microsoft, CER: 6'>mprocess</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>as</strong> & name & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>use</strong> & only & operator & options & page & parameter & path & <strong style='color: orange;' title='REf: properties, CER: 5'>progress</strong> & provider & <strong style='color: orange;' title='REf: queries, CER: 2'>quenes</strong> & ready & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 1'>selecta</strong> & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & using & <strong style='color: orange;' title='REf: view, CER: 2'>mew</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 2'>32</strong> & zero \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 45,9\% & 1,34 & 35 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & allow & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>name</strong> & <strong style='color: orange;' title='REf: cd, CER: 1'>bd</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>use</strong> & <strong style='color: orange;' title='REf: connection, CER: 6'>options</strong> & <strong style='color: orange;' title='REf: db, CER: 2'>to</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & enable & <strong style='color: orange;' title='REf: for, CER: 2'>non</strong> & general & <strong style='color: orange;' title='REf: haraldr, CER: 5'>parameter</strong> & <strong style='color: orange;' title='REf: help, CER: 2'>heb</strong> & index & inprocess & level & <strong style='color: orange;' title='REf: like, CER: 2'>linked</strong> & linked & <strong style='color: orange;' title='REf: microsoft, CER: 7'>access</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>to</strong> & name & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>use</strong> & only & operator & options & <strong style='color: orange;' title='REf: page, CER: 2'>path</strong> & parameter & path & <strong style='color: orange;' title='REf: properties, CER: 5'>queries</strong> & provider & queries & <strong style='color: orange;' title='REf: ready, CER: 4'>that</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>servers</strong> & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & <strong style='color: orange;' title='REf: using, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: view, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>use</strong> & zero \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 49,2\% & 0,82 & 41 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 1'>odbc</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 1'>adnoc</strong> & all & allow & <strong style='color: orange;' title='REf: applied, CER: 3'>spalıed</strong> & are & cancel & <strong style='color: orange;' title='REf: cd, CER: 2'>as</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>ole</strong> & <strong style='color: orange;' title='REf: connection, CER: 1'>connecton</strong> & db & <strong style='color: orange;' title='REf: disallow, CER: 1'>disalow</strong> & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & enable & for & <strong style='color: orange;' title='REf: general, CER: 4'>level</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>ready</strong> & help & index & inprocess & level & <strong style='color: orange;' title='REf: like, CER: 2'>linked</strong> & linked & microsoft & <strong style='color: orange;' title='REf: my, CER: 2'>as</strong> & name & nested & non & ok & ole & <strong style='color: orange;' title='REf: only, CER: 1'>onty</strong> & operator & options & page & parameter & path & properties & provider & <strong style='color: orange;' title='REf: queries, CER: 2'>quenes</strong> & ready & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & select & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & using & <strong style='color: orange;' title='REf: view, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>ole</strong> & zero \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 55,7\% & 1,80 & 28 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>as</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>as</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhoc</strong> & adhoc & all & allow & <strong style='color: orange;' title='REf: applied, CER: 5'>nested</strong> & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>access</strong> & <strong style='color: orange;' title='REf: cd, CER: 1'>bd</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>servers</strong> & <strong style='color: orange;' title='REf: connection, CER: 6'>options</strong> & <strong style='color: orange;' title='REf: db, CER: 2'>to</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & <strong style='color: orange;' title='REf: dynamic, CER: 6'>that</strong> & <strong style='color: orange;' title='REf: enable, CER: 4'>all</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: general, CER: 4'>level</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>all</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>zero</strong> & index & inprocess & level & like & <strong style='color: orange;' title='REf: linked, CER: 1'>inked</strong> & <strong style='color: orange;' title='REf: microsoft, CER: 7'>access</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>are</strong> & nested & non & <strong style='color: orange;' title='REf: ok, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>use</strong> & only & operator & options & <strong style='color: orange;' title='REf: page, CER: 2'>path</strong> & <strong style='color: orange;' title='REf: parameter, CER: 5'>provider</strong> & path & <strong style='color: orange;' title='REf: properties, CER: 5'>queries</strong> & provider & queries & <strong style='color: orange;' title='REf: ready, CER: 4'>that</strong> & <strong style='color: orange;' title='REf: script, CER: 5'>servers</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>servers</strong> & <strong style='color: orange;' title='REf: server, CER: 1'>servers</strong> & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & transacted & updates & use & <strong style='color: orange;' title='REf: using, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: view, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>non</strong> & zero \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 67,2\% & 2,11 & 21 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>db</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: adbc, CER: 1'>odbc</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 1'>achoc</strong> & all & <strong style='color: orange;' title='REf: allow, CER: 2'>all</strong> & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>all</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>db</strong> & <strong style='color: orange;' title='REf: connection, CER: 6'>options</strong> & db & <strong style='color: orange;' title='REf: disallow, CER: 5'>all</strong> & drivers & <strong style='color: orange;' title='REf: dynamic, CER: 5'>mail</strong> & <strong style='color: orange;' title='REf: enable, CER: 4'>ole</strong> & for & <strong style='color: orange;' title='REf: general, CER: 5'>servers</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>all</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: index, CER: 2'>inked</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 5'>access</strong> & <strong style='color: orange;' title='REf: level, CER: 4'>use</strong> & <strong style='color: orange;' title='REf: like, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: linked, CER: 1'>inked</strong> & microsoft & <strong style='color: orange;' title='REf: my, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>are</strong> & <strong style='color: orange;' title='REf: nested, CER: 4'>use</strong> & non & <strong style='color: orange;' title='REf: ok, CER: 2'>db</strong> & ole & <strong style='color: orange;' title='REf: only, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: operator, CER: 1'>operctor</strong> & options & <strong style='color: orange;' title='REf: page, CER: 2'>are</strong> & <strong style='color: orange;' title='REf: parameter, CER: 5'>provider</strong> & <strong style='color: orange;' title='REf: path, CER: 3'>to</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>provider</strong> & provider & <strong style='color: orange;' title='REf: queries, CER: 4'>servers</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>db</strong> & <strong style='color: orange;' title='REf: script, CER: 5'>this</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>ole</strong> & <strong style='color: orange;' title='REf: server, CER: 1'>servers</strong> & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & supports & that & these & this & to & <strong style='color: orange;' title='REf: transacted, CER: 1'>trensacted</strong> & updates & use & using & <strong style='color: orange;' title='REf: view, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>db</strong> & <strong style='color: orange;' title='REf: zero, CER: 3'>for</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 72,1\% & 2,07 & 20 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>al</strong> & <strong style='color: orange;' title='REf: access, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: ad, CER: 1'>al</strong> & <strong style='color: orange;' title='REf: adbc, CER: 1'>odbc</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 3'>odbc</strong> & <strong style='color: orange;' title='REf: all, CER: 1'>al</strong> & <strong style='color: orange;' title='REf: allow, CER: 3'>al</strong> & <strong style='color: orange;' title='REf: applied, CER: 5'>ole</strong> & are & cancel & <strong style='color: orange;' title='REf: cd, CER: 1'>co</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>db</strong> & <strong style='color: orange;' title='REf: connection, CER: 2'>connecbon</strong> & db & <strong style='color: orange;' title='REf: disallow, CER: 6'>select</strong> & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & dynamic & <strong style='color: orange;' title='REf: enable, CER: 3'>name</strong> & for & <strong style='color: orange;' title='REf: general, CER: 1'>gereral</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>are</strong> & <strong style='color: orange;' title='REf: help, CER: 2'>hes</strong> & <strong style='color: orange;' title='REf: index, CER: 3'>der</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 6'>servers</strong> & <strong style='color: orange;' title='REf: level, CER: 3'>server</strong> & <strong style='color: orange;' title='REf: like, CER: 2'>linked</strong> & linked & microsoft & <strong style='color: orange;' title='REf: my, CER: 2'>db</strong> & name & <strong style='color: orange;' title='REf: nested, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: non, CER: 2'>for</strong> & ok & ole & <strong style='color: orange;' title='REf: only, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: operator, CER: 5'>server</strong> & options & page & parameter & <strong style='color: orange;' title='REf: path, CER: 2'>page</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>provider</strong> & provider & <strong style='color: orange;' title='REf: queries, CER: 2'>quenes</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>db</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>select</strong> & select & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>al</strong> & <strong style='color: orange;' title='REf: supports, CER: 5'>servers</strong> & <strong style='color: orange;' title='REf: that, CER: 1'>thet</strong> & these & this & <strong style='color: orange;' title='REf: to, CER: 1'>co</strong> & <strong style='color: orange;' title='REf: transacted, CER: 6'>cancel</strong> & <strong style='color: orange;' title='REf: updates, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: use, CER: 2'>ole</strong> & using & <strong style='color: orange;' title='REf: view, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>db</strong> & <strong style='color: orange;' title='REf: zero, CER: 2'>der</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 75,4\% & 2,56 & 16 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>are</strong> & <strong style='color: orange;' title='REf: access, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: ad, CER: 1'>cd</strong> & <strong style='color: orange;' title='REf: adbc, CER: 3'>are</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 4'>prov</strong> & all & <strong style='color: orange;' title='REf: allow, CER: 2'>all</strong> & applied & are & <strong style='color: orange;' title='REf: cancel, CER: 4'>are</strong> & cd & <strong style='color: orange;' title='REf: CDSBG036, CER: 5'>cdsbg036</strong> & connection & <strong style='color: orange;' title='REf: db, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: disallow, CER: 5'>all</strong> & <strong style='color: orange;' title='REf: drivers, CER: 3'>servers</strong> & <strong style='color: orange;' title='REf: dynamic, CER: 6'>this</strong> & <strong style='color: orange;' title='REf: enable, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: general, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>are</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>all</strong> & <strong style='color: orange;' title='REf: index, CER: 3'>linked</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 4'>progress</strong> & <strong style='color: orange;' title='REf: level, CER: 3'>server</strong> & <strong style='color: orange;' title='REf: like, CER: 2'>linked</strong> & linked & <strong style='color: orange;' title='REf: microsoft, CER: 7'>prov</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>are</strong> & <strong style='color: orange;' title='REf: nested, CER: 4'>use</strong> & <strong style='color: orange;' title='REf: non, CER: 1'>nn</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>to</strong> & <strong style='color: orange;' title='REf: ole, CER: 2'>use</strong> & <strong style='color: orange;' title='REf: only, CER: 3'>all</strong> & <strong style='color: orange;' title='REf: operator, CER: 5'>prov</strong> & options & <strong style='color: orange;' title='REf: page, CER: 2'>are</strong> & <strong style='color: orange;' title='REf: parameter, CER: 5'>provider</strong> & <strong style='color: orange;' title='REf: path, CER: 3'>prov</strong> & properties & provider & <strong style='color: orange;' title='REf: queries, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>are</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>server</strong> & server & servers & <strong style='color: orange;' title='REf: sql, CER: 2'>all</strong> & <strong style='color: orange;' title='REf: supports, CER: 5'>servers</strong> & that & <strong style='color: orange;' title='REf: these, CER: 2'>this</strong> & this & to & <strong style='color: orange;' title='REf: transacted, CER: 7'>linked</strong> & <strong style='color: orange;' title='REf: updates, CER: 5'>use</strong> & use & <strong style='color: orange;' title='REf: using, CER: 3'>use</strong> & view & <strong style='color: orange;' title='REf: ZA2, CER: 3'>use</strong> & <strong style='color: orange;' title='REf: zero, CER: 3'>prov</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 82,0\% & 3,00 & 11 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: access, CER: 5'>ole</strong> & <strong style='color: orange;' title='REf: ad, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: adbc, CER: 1'>odbc</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 3'>odbc</strong> & <strong style='color: orange;' title='REf: all, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: allow, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: applied, CER: 5'>ole</strong> & <strong style='color: orange;' title='REf: are, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>for</strong> & connection & db & <strong style='color: orange;' title='REf: disallow, CER: 7'>for</strong> & drivers & <strong style='color: orange;' title='REf: dynamic, CER: 6'>db</strong> & <strong style='color: orange;' title='REf: enable, CER: 4'>ole</strong> & for & general & <strong style='color: orange;' title='REf: haraldr, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: index, CER: 4'>ole</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 6'>drivers</strong> & <strong style='color: orange;' title='REf: level, CER: 3'>server</strong> & <strong style='color: orange;' title='REf: like, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: linked, CER: 5'>ole</strong> & microsoft & <strong style='color: orange;' title='REf: my, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: name, CER: 2'>page</strong> & <strong style='color: orange;' title='REf: nested, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: non, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & ole & <strong style='color: orange;' title='REf: only, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: operator, CER: 5'>server</strong> & options & page & <strong style='color: orange;' title='REf: parameter, CER: 5'>provider</strong> & <strong style='color: orange;' title='REf: path, CER: 2'>page</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>provider</strong> & provider & <strong style='color: orange;' title='REf: queries, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>db</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 1'>selecta</strong> & server & <strong style='color: orange;' title='REf: servers, CER: 1'>server</strong> & <strong style='color: orange;' title='REf: sql, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: supports, CER: 6'>for</strong> & <strong style='color: orange;' title='REf: that, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: these, CER: 4'>ole</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: transacted, CER: 8'>provider</strong> & <strong style='color: orange;' title='REf: updates, CER: 4'>page</strong> & <strong style='color: orange;' title='REf: use, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: using, CER: 5'>for</strong> & <strong style='color: orange;' title='REf: view, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: zero, CER: 3'>for</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 86,9\% & 3,36 & 8 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: access, CER: 5'>ole</strong> & <strong style='color: orange;' title='REf: ad, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: adbc, CER: 1'>odbc</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 3'>odbc</strong> & <strong style='color: orange;' title='REf: all, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: allow, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: applied, CER: 5'>ole</strong> & <strong style='color: orange;' title='REf: are, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>provider</strong> & <strong style='color: orange;' title='REf: connection, CER: 6'>options</strong> & db & <strong style='color: orange;' title='REf: disallow, CER: 7'>for</strong> & drivers & <strong style='color: orange;' title='REf: dynamic, CER: 6'>odbc</strong> & <strong style='color: orange;' title='REf: enable, CER: 4'>ole</strong> & for & <strong style='color: orange;' title='REf: general, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: index, CER: 4'>odbc</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 6'>drivers</strong> & <strong style='color: orange;' title='REf: level, CER: 3'>server</strong> & <strong style='color: orange;' title='REf: like, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: linked, CER: 5'>server</strong> & microsoft & <strong style='color: orange;' title='REf: my, CER: 2'>db</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: nested, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: non, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & ole & <strong style='color: orange;' title='REf: only, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: operator, CER: 5'>server</strong> & options & <strong style='color: orange;' title='REf: page, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: parameter, CER: 5'>provider</strong> & <strong style='color: orange;' title='REf: path, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>provider</strong> & provider & <strong style='color: orange;' title='REf: queries, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>db</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>server</strong> & server & <strong style='color: orange;' title='REf: servers, CER: 1'>server</strong> & <strong style='color: orange;' title='REf: sql, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: supports, CER: 6'>for</strong> & <strong style='color: orange;' title='REf: that, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: these, CER: 4'>ole</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>for</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>for</strong> & <strong style='color: orange;' title='REf: transacted, CER: 8'>provider</strong> & <strong style='color: orange;' title='REf: updates, CER: 5'>options</strong> & <strong style='color: orange;' title='REf: use, CER: 2'>ole</strong> & <strong style='color: orange;' title='REf: using, CER: 5'>for</strong> & <strong style='color: orange;' title='REf: view, CER: 3'>ole</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: zero, CER: 3'>for</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 93,4\% & 3,62 & 4 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>au</strong> & access & <strong style='color: orange;' title='REf: ad, CER: 1'>au</strong> & <strong style='color: orange;' title='REf: adbc, CER: 2'>adhec</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 1'>adhec</strong> & <strong style='color: orange;' title='REf: all, CER: 2'>au</strong> & <strong style='color: orange;' title='REf: allow, CER: 3'>disallow</strong> & <strong style='color: orange;' title='REf: applied, CER: 5'>adhec</strong> & <strong style='color: orange;' title='REf: are, CER: 2'>au</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>access</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>au</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>access</strong> & <strong style='color: orange;' title='REf: connection, CER: 7'>non</strong> & <strong style='color: orange;' title='REf: db, CER: 2'>au</strong> & disallow & <strong style='color: orange;' title='REf: drivers, CER: 5'>access</strong> & <strong style='color: orange;' title='REf: dynamic, CER: 6'>adhec</strong> & <strong style='color: orange;' title='REf: enable, CER: 5'>adhec</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>non</strong> & <strong style='color: orange;' title='REf: general, CER: 4'>opener</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 6'>access</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>adhec</strong> & index & <strong style='color: orange;' title='REf: inprocess, CER: 5'>access</strong> & <strong style='color: orange;' title='REf: level, CER: 4'>adhec</strong> & <strong style='color: orange;' title='REf: like, CER: 4'>adhec</strong> & <strong style='color: orange;' title='REf: linked, CER: 3'>index</strong> & <strong style='color: orange;' title='REf: microsoft, CER: 7'>access</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>au</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: nested, CER: 5'>adhec</strong> & non & <strong style='color: orange;' title='REf: ok, CER: 2'>au</strong> & <strong style='color: orange;' title='REf: ole, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: only, CER: 3'>non</strong> & <strong style='color: orange;' title='REf: operator, CER: 4'>opener</strong> & <strong style='color: orange;' title='REf: options, CER: 5'>non</strong> & <strong style='color: orange;' title='REf: page, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: parameter, CER: 6'>opener</strong> & <strong style='color: orange;' title='REf: path, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: properties, CER: 6'>opener</strong> & <strong style='color: orange;' title='REf: provider, CER: 5'>opener</strong> & <strong style='color: orange;' title='REf: queries, CER: 5'>us</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>au</strong> & <strong style='color: orange;' title='REf: script, CER: 5'>access</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>adhec</strong> & <strong style='color: orange;' title='REf: server, CER: 4'>opener</strong> & <strong style='color: orange;' title='REf: servers, CER: 5'>access</strong> & <strong style='color: orange;' title='REf: sql, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: supports, CER: 6'>us</strong> & <strong style='color: orange;' title='REf: that, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: these, CER: 4'>access</strong> & <strong style='color: orange;' title='REf: this, CER: 3'>us</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>au</strong> & <strong style='color: orange;' title='REf: transacted, CER: 8'>access</strong> & <strong style='color: orange;' title='REf: updates, CER: 5'>adhec</strong> & <strong style='color: orange;' title='REf: use, CER: 1'>us</strong> & <strong style='color: orange;' title='REf: using, CER: 3'>us</strong> & <strong style='color: orange;' title='REf: view, CER: 4'>adhec</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>au</strong> & <strong style='color: orange;' title='REf: zero, CER: 4'>au</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 93,4\% & 3,72 & 4 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: access, CER: 5'>mew</strong> & <strong style='color: orange;' title='REf: ad, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: adbc, CER: 4'>mew</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 4'>this</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: allow, CER: 4'>mew</strong> & <strong style='color: orange;' title='REf: applied, CER: 5'>linked</strong> & <strong style='color: orange;' title='REf: are, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>linked</strong> & <strong style='color: orange;' title='REf: cd, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>mew</strong> & connection & <strong style='color: orange;' title='REf: db, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: disallow, CER: 7'>mew</strong> & <strong style='color: orange;' title='REf: drivers, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: dynamic, CER: 6'>mew</strong> & <strong style='color: orange;' title='REf: enable, CER: 6'>mew</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: general, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: help, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: index, CER: 3'>linked</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 6'>propenies</strong> & <strong style='color: orange;' title='REf: level, CER: 3'>server</strong> & <strong style='color: orange;' title='REf: like, CER: 2'>linked</strong> & linked & <strong style='color: orange;' title='REf: microsoft, CER: 8'>mew</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>mew</strong> & <strong style='color: orange;' title='REf: name, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: nested, CER: 4'>linked</strong> & <strong style='color: orange;' title='REf: non, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: ok, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: ole, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: only, CER: 4'>mew</strong> & <strong style='color: orange;' title='REf: operator, CER: 5'>server</strong> & <strong style='color: orange;' title='REf: options, CER: 5'>this</strong> & <strong style='color: orange;' title='REf: page, CER: 4'>mew</strong> & <strong style='color: orange;' title='REf: parameter, CER: 6'>propenies</strong> & <strong style='color: orange;' title='REf: path, CER: 4'>mew</strong> & <strong style='color: orange;' title='REf: properties, CER: 2'>propenies</strong> & <strong style='color: orange;' title='REf: provider, CER: 5'>propenies</strong> & <strong style='color: orange;' title='REf: queries, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: ready, CER: 4'>mew</strong> & <strong style='color: orange;' title='REf: script, CER: 4'>server</strong> & <strong style='color: orange;' title='REf: select, CER: 4'>server</strong> & server & <strong style='color: orange;' title='REf: servers, CER: 1'>server</strong> & <strong style='color: orange;' title='REf: sql, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: supports, CER: 6'>server</strong> & <strong style='color: orange;' title='REf: that, CER: 2'>this</strong> & <strong style='color: orange;' title='REf: these, CER: 2'>this</strong> & this & <strong style='color: orange;' title='REf: to, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: transacted, CER: 7'>linked</strong> & <strong style='color: orange;' title='REf: updates, CER: 6'>mew</strong> & <strong style='color: orange;' title='REf: use, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: using, CER: 4'>this</strong> & <strong style='color: orange;' title='REf: view, CER: 2'>mew</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>mew</strong> & <strong style='color: orange;' title='REf: zero, CER: 3'>mew</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 100,0\% & 5,31 & 0 / 61 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_OLEDB-server\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: a, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: access, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: ad, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: adbc, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: adhoc, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: allow, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: applied, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: are, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: cd, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: CDSBG036, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: connection, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: db, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: disallow, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: drivers, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: dynamic, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: enable, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: general, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: haraldr, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: help, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: index, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: inprocess, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: level, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: like, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: linked, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: microsoft, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: my, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: name, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: nested, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: non, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: ole, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: only, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: operator, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: options, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: page, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: parameter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: path, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: properties, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: provider, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: queries, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: ready, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: script, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: select, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: server, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: servers, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: sql, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: supports, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: that, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: these, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: this, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: to, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: transacted, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: updates, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: use, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: using, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: view, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: ZA2, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: zero, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 39,3\% & 0,82 & 43 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & as & access & as & adhoc & adhoc & all & allow & applied & are & are & cd & cdsbg036 & connection & as & disallow & servers & dynamic & enable & to & general & are & hep & index & inprocess & level & like & linked & access & as & name & nested & non & as & use & only & operator & options & page & parameter & path & properties & provider & quenes & ready & select & select & server & servers & all & supports & that & these & this & to & transacted & updates & use & using & view & use & zero \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 42,6\% & 1,30 & 36 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & as & access & as & adhoc & adhoc & all & allow & are & are & are & as & cdsbgo36 & connection & as & disallow & servers & dynamic & are & to & level & are & zero & index & inprocess & level & like & linked & zero & as & are & nested & non & as & are & only & operator & options & are & parameter & path & progress & provider & queries & ready & server & servers & server & servers & all & supports & that & these & this & to & transacted & updates & use & using & view & are & zero \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 44,3\% & 1,21 & 36 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & as & access & as & adhoc & adhoc & all & alow & applied & are & are & cd & cdsbgo36 & connection & as & disallow & servers & oynamic & are & non & level & parameter & these & index & inprocess & level & like & linked & access & as & are & nested & non & non & are & only & operator & options & are & parameter & path & progress & provider & queries & ready & server & level & server & servers & all & supports & that & these & this & to & transacted & updates & use & using & view & are & zero \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 44,3\% & 1,31 & 37 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & as & access & as & adhoc & adhoc & all & allow & applied & are & level & to & path & options & to & disallow & servers & dynamic & enable & non & level & operator & zero & index & inprocess & level & like & linked & operator & my\_ & name & nested & non & non & use & only & operator & options & path & parameter & path & queries & provider & queries & path & server & servers & server & servers & sql & supports & that & these & this & to & transacted & updates & use & using & use & use & zero \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 0,6ms & 86,9\% & 3,36 & 8 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & db & ole & db & odbc & odbc & ole & for & ole & ole & server & db & provider & options & db & for & drivers & odbc & ole & for & server & server & ole & odbc & drivers & server & ole & server & microsoft & db & ole & server & for & for & ole & ole & server & options & ole & provider & for & provider & provider & server & db & server & server & server & server & for & for & for & ole & for & for & provider & options & ole & for & ole & for & for \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,5ms & 93,4\% & 3,62 & 4 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & au & access & au & adhec & adhec & au & disallow & adhec & au & access & au & access & non & au & disallow & access & adhec & adhec & non & opener & access & adhec & index & access & adhec & adhec & index & access & au & au & adhec & non & au & au & non & opener & non & au & opener & au & opener & opener & us & au & access & adhec & opener & access & au & us & au & access & us & au & access & adhec & us & us & adhec & au & au \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 93,4\% & 3,72 & 4 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & mew & mew & mew & mew & this & mew & mew & linked & mew & linked & mew & mew & connection & mew & mew & server & mew & mew & mew & server & server & mew & linked & propenies & server & linked & linked & mew & mew & mew & linked & mew & mew & mew & mew & server & this & mew & propenies & mew & propenies & propenies & server & mew & server & server & server & server & mew & server & this & this & this & mew & linked & mew & mew & this & mew & mew & mew \\ \hline
|
||||
ThresholdAd...ssor(16\_16) & 0,4ms & 100,0\% & 5,31 & 0 / 61 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_OLEDB-server\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{alarm} & \textbf{all} & \textbf{deselect} & \textbf{emergency} & \textbf{enable} & \textbf{eqauipment} & \textbf{external} & \textbf{failure} & \textbf{group} & \textbf{machine} & \textbf{prefilter} & \textbf{prefiltering} & \textbf{select} & \textbf{static} & \textbf{stop} \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 13,3\% & 0,20 & 13 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & all & deselect & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & prefilter & prefiltering & select & static & stop \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 20,0\% & 0,20 & 13 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & all & deselect & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & prefilter & prefiltering & select & static & stop \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 20,0\% & 0,20 & 13 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & all & deselect & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & prefilter & prefiltering & select & static & stop \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 26,7\% & 0,40 & 12 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & all & deselect & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & prefilter & <strong style='color: orange;' title='REf: prefiltering, CER: 3'>prefilter</strong> & select & static & stop \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 40,0\% & 1,07 & 10 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>emergency</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & prefilter & prefiltering & <strong style='color: orange;' title='REf: select, CER: 5'>alarm</strong> & static & stop \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 46,7\% & 1,27 & 9 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 4'>exémal</strong> & failure & group & machine & prefilter & <strong style='color: orange;' title='REf: prefiltering, CER: 1'>prefittering</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>static</strong> & static & stop \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 46,7\% & 1,07 & 10 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>emergency</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & prefilter & prefiltering & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 53,3\% & 1,27 & 8 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 3'>etemal</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 1'>prefiter</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 1'>prefittering</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 53,3\% & 1,20 & 8 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>emergency</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 1'>prefitter</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 1'>prefittering</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 53,3\% & 1,53 & 8 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 2'>prefiker</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 5'>prefiker</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 60,0\% & 1,13 & 8 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 1'>eternal</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 1'>prefiter</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 1'>prefitering</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 60,0\% & 1,53 & 7 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & <strong style='color: orange;' title='REf: failure, CER: 2'>faire</strong> & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 1'>prefiter</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 4'>prefiter</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 60,0\% & 1,20 & 8 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 2'>alam</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & emergency & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 2'>extemal</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 1'>prefitter</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 1'>prefitering</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>stop</strong> & static & stop \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 73,3\% & 2,73 & 5 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & alarm & <strong style='color: orange;' title='REf: all, CER: 3'>alarm</strong> & <strong style='color: orange;' title='REf: deselect, CER: 6'>enable</strong> & <strong style='color: orange;' title='REf: emergency, CER: 7'>enable</strong> & enable & <strong style='color: orange;' title='REf: eqauipment, CER: 1'>equipment</strong> & <strong style='color: orange;' title='REf: external, CER: 6'>enable</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 4'>prefittering</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 1'>prefittering</strong> & <strong style='color: orange;' title='REf: select, CER: 5'>alarm</strong> & <strong style='color: orange;' title='REf: static, CER: 5'>enable</strong> & <strong style='color: orange;' title='REf: stop, CER: 3'>group</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 1,0ms & 80,0\% & 4,27 & 3 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 4'>failure</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>wan</strong> & <strong style='color: orange;' title='REf: deselect, CER: 7'>failure</strong> & <strong style='color: orange;' title='REf: emergency, CER: 7'>machine</strong> & <strong style='color: orange;' title='REf: enable, CER: 5'>failure</strong> & <strong style='color: orange;' title='REf: eqauipment, CER: 8'>machine</strong> & <strong style='color: orange;' title='REf: external, CER: 7'>machine</strong> & failure & group & machine & <strong style='color: orange;' title='REf: prefilter, CER: 5'>pretitenng</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 4'>pretitenng</strong> & <strong style='color: orange;' title='REf: select, CER: 6'>failure</strong> & <strong style='color: orange;' title='REf: static, CER: 5'>wan</strong> & <strong style='color: orange;' title='REf: stop, CER: 3'>group</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 7,00 & 0 / 15 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: alarm, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: all, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: deselect, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: emergency, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: enable, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: eqauipment, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: external, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: failure, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: group, CER: 5'>-</strong> & <strong style='color: orange;' title='REf: machine, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: prefilter, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: prefiltering, CER: 12'>-</strong> & <strong style='color: orange;' title='REf: select, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: static, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: stop, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 13,3\% & 0,20 & 13 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(40\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & alarm & all & deselect & emergency & enable & equipment & extemal & failure & group & machine & prefilter & prefiltering & select & static & stop \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 20,0\% & 0,20 & 13 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & alarm & all & deselect & emergency & enable & equipment & extemal & failure & group & machine & prefilter & prefiltering & select & static & stop \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 20,0\% & 0,20 & 13 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(50\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & alarm & all & deselect & emergency & enable & equipment & extemal & failure & group & machine & prefilter & prefiltering & select & static & stop \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 26,7\% & 0,40 & 12 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & alarm & all & deselect & emergency & enable & equipment & extemal & failure & group & machine & prefilter & prefilter & select & static & stop \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 0,6ms & 60,0\% & 1,20 & 8 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & alarm & alam & enable & emergency & enable & equipment & extemal & failure & group & machine & prefitter & prefitering & stop & static & stop \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 73,3\% & 2,73 & 5 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & alarm & alarm & enable & enable & enable & equipment & enable & failure & group & machine & prefittering & prefittering & alarm & enable & group \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 1,0ms & 80,0\% & 4,27 & 3 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & failure & wan & failure & machine & failure & machine & machine & failure & group & machine & pretitenng & pretitenng & failure & wan & group \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,5ms & 100,0\% & 7,00 & 0 / 15 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_filter-alarmgroup\_001.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{configure} & \textbf{horizontal} & \textbf{horizontalindicator} & \textbf{indicator} & \textbf{mea} & \textbf{meaning} & \textbf{meanings} & \textbf{plot} & \textbf{scatter} & \textbf{vertical} & \textbf{verticalindicator} \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 9,1\% & 0,00 & 11 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & horizontalindicator & indicator & mea & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 9,1\% & 0,00 & 11 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & horizontalindicator & indicator & mea & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 18,2\% & 0,82 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizontallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 8'>indicator</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 27,3\% & 1,18 & 8 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 8'>meanings</strong> & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizortalindicator</strong> & indicator & <strong style='color: orange;' title='REf: mea, CER: 4'>plot</strong> & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 27,3\% & 0,82 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 2'>horzontallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 7'>horzontallndicator</strong> \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 27,3\% & 0,18 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizontallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 1'>verticallndicator</strong> \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 27,3\% & 0,18 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizontallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 1'>verticallndicator</strong> \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 27,3\% & 0,18 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizontallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 1'>verticallndicator</strong> \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 27,3\% & 0,18 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizontallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 1'>verticallndicator</strong> \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 27,3\% & 0,27 & 9 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & configure & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 2'>horizonttallndicator</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 1'>verticallndicator</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 45,5\% & 1,09 & 8 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 8'>indicator</strong> & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 1'>horizontallndicator</strong> & indicator & <strong style='color: orange;' title='REf: mea, CER: 3'>pl</strong> & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 45,5\% & 2,27 & 8 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 8'>meaning</strong> & horizontal & <strong style='color: orange;' title='REf: horizontalindicator, CER: 9'>horizontal</strong> & indicator & mea & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 8'>indicator</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 45,5\% & 2,36 & 6 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 8'>meaning</strong> & <strong style='color: orange;' title='REf: horizontal, CER: 7'>vertical</strong> & <strong style='color: orange;' title='REf: horizontalindicator, CER: 8'>verticallndicator</strong> & indicator & <strong style='color: orange;' title='REf: mea, CER: 2'>en</strong> & meaning & meanings & plot & scatter & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 1'>verticallndicator</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 90,9\% & 7,00 & 1 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 8'>vertical</strong> & <strong style='color: orange;' title='REf: horizontal, CER: 7'>vertical</strong> & <strong style='color: orange;' title='REf: horizontalindicator, CER: 14'>vertical</strong> & <strong style='color: orange;' title='REf: indicator, CER: 7'>vertical</strong> & <strong style='color: orange;' title='REf: mea, CER: 6'>vertical</strong> & <strong style='color: orange;' title='REf: meaning, CER: 6'>vertical</strong> & <strong style='color: orange;' title='REf: meanings, CER: 6'>vertical</strong> & <strong style='color: orange;' title='REf: plot, CER: 7'>vertical</strong> & <strong style='color: orange;' title='REf: scatter, CER: 7'>vertical</strong> & vertical & <strong style='color: orange;' title='REf: verticalindicator, CER: 9'>vertical</strong> \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 100,0\% & 9,18 & 0 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: horizontal, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: horizontalindicator, CER: 19'>-</strong> & <strong style='color: orange;' title='REf: indicator, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: mea, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: meaning, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: meanings, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: plot, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: scatter, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: vertical, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: verticalindicator, CER: 17'>-</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 6,91 & 0 / 11 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_scatter\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: configure, CER: 1'>onfigure</strong> & <strong style='color: orange;' title='REf: horizontal, CER: 9'>catter</strong> & <strong style='color: orange;' title='REf: horizontalindicator, CER: 16'>catter</strong> & <strong style='color: orange;' title='REf: indicator, CER: 6'>catter</strong> & <strong style='color: orange;' title='REf: mea, CER: 5'>catter</strong> & <strong style='color: orange;' title='REf: meaning, CER: 6'>catter</strong> & <strong style='color: orange;' title='REf: meanings, CER: 7'>catter</strong> & <strong style='color: orange;' title='REf: plot, CER: 5'>catter</strong> & <strong style='color: orange;' title='REf: scatter, CER: 1'>catter</strong> & <strong style='color: orange;' title='REf: vertical, CER: 7'>catter</strong> & <strong style='color: orange;' title='REf: verticalindicator, CER: 13'>catter</strong> \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 9,1\% & 0,00 & 11 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_scatter\_002.png}} & configure & horizontal & horizontalindicator & indicator & mea & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 9,1\% & 0,00 & 11 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(80\%).00.zrs\_ZAMS\_scatter\_002.png}} & configure & horizontal & horizontalindicator & indicator & mea & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdAd...ssor(24\_24) & 0,6ms & 18,2\% & 0,82 & 9 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_scatter\_002.png}} & configure & horizontal & horizontallndicator & indicator & mea & meaning & meanings & plot & scatter & vertical & indicator \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,5ms & 27,3\% & 1,18 & 8 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_scatter\_002.png}} & meanings & horizontal & horizortalindicator & indicator & plot & meaning & meanings & plot & scatter & vertical & verticalindicator \\ \hline
|
||||
ThresholdAd...ssor(08\_08) & 0,9ms & 45,5\% & 2,36 & 6 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_scatter\_002.png}} & meaning & vertical & verticallndicator & indicator & en & meaning & meanings & plot & scatter & vertical & verticallndicator \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 90,9\% & 7,00 & 1 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_scatter\_002.png}} & vertical & vertical & vertical & vertical & vertical & vertical & vertical & vertical & vertical & vertical & vertical \\ \hline
|
||||
AutoThresho...r(Triangle) & 0,5ms & 100,0\% & 9,18 & 0 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_scatter\_002.png}} & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 6,91 & 0 / 11 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_scatter\_002.png}} & onfigure & catter & catter & catter & catter & catter & catter & catter & catter & catter & catter \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
@@ -1,84 +1,12 @@
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}
|
||||
\hline
|
||||
\textbf{Processor} & \textbf{Elapsed} & \textbf{WER} & \textbf{CER (avg)} & \textbf{Perfect matches} & \textbf{Image} & \textbf{16} & \textbf{angular} & \textbf{cancel} & \textbf{configuration} & \textbf{degree} & \textbf{direction} & \textbf{directions} & \textbf{E} & \textbf{ENE} & \textbf{for} & \textbf{granularity} & \textbf{indicator} & \textbf{meaning} & \textbf{measurement} & \textbf{N} & \textbf{NE} & \textbf{NNE} & \textbf{ok} & \textbf{report} & \textbf{results} & \textbf{rose} & \textbf{validate} & \textbf{validation} & \textbf{variable} & \textbf{wind} \\ \hline
|
||||
AutoThresholdProcessor(OTSU) & 0,7ms & 28,0\% & 0,60 & 18 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 16 & angular & cancel & configuration & degree & direction & <strong style='color: orange;' title='REf: directions, CER: 1'>direction</strong> & <strong style='color: orange;' title='REf: E, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdAdaptiveProcessor(20\_20) & 0,5ms & 32,0\% & 0,72 & 18 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 16 & angular & <strong style='color: orange;' title='REf: cancel, CER: 4'>ne</strong> & configuration & degree & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 32,0\% & 0,64 & 18 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(60\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>li</strong> & angular & cancel & configuration & degree & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>li</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>li</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>li</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 32,0\% & 0,84 & 17 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(70\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 3'>for</strong> & angular & cancel & configuration & degree & direction & <strong style='color: orange;' title='REf: directions, CER: 1'>direction</strong> & <strong style='color: orange;' title='REf: E, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: NE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdAdaptiveProcessor(16\_16) & 0,4ms & 36,0\% & 0,72 & 18 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(16\_16).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 16 & angular & <strong style='color: orange;' title='REf: cancel, CER: 4'>ne</strong> & configuration & degree & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>16</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>16</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>16</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdAdaptiveProcessor(24\_24) & 0,6ms & 40,0\% & 1,16 & 15 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(24\_24).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 16 & angular & <strong style='color: orange;' title='REf: cancel, CER: 4'>ne</strong> & configuration & <strong style='color: orange;' title='REf: degree, CER: 4'>ene</strong> & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & <strong style='color: orange;' title='REf: results, CER: 4'>report</strong> & rose & <strong style='color: orange;' title='REf: validate, CER: 3'>validation</strong> & validation & variable & wind \\ \hline
|
||||
ThresholdProcessor(80\%) & 0,7ms & 40,0\% & 0,92 & 16 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(80\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>ll</strong> & angular & <strong style='color: orange;' title='REf: cancel, CER: 5'>wind</strong> & configuration & <strong style='color: orange;' title='REf: degree, CER: 2'>bearee</strong> & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>ll</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>ll</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>ll</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdAdaptiveProcessor(12\_12) & 0,5ms & 44,0\% & 1,40 & 14 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(12\_12).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 16 & angular & <strong style='color: orange;' title='REf: cancel, CER: 4'>ne</strong> & configuration & <strong style='color: orange;' title='REf: degree, CER: 4'>ene</strong> & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & <strong style='color: orange;' title='REf: granularity, CER: 6'>angular</strong> & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & <strong style='color: orange;' title='REf: results, CER: 4'>report</strong> & rose & validate & <strong style='color: orange;' title='REf: validation, CER: 3'>validate</strong> & variable & wind \\ \hline
|
||||
ThresholdProcessor(50\%) & 0,8ms & 48,0\% & 0,92 & 15 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(50\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>in</strong> & angular & <strong style='color: orange;' title='REf: cancel, CER: 4'>cegres</strong> & configuration & <strong style='color: orange;' title='REf: degree, CER: 2'>cegres</strong> & direction & <strong style='color: orange;' title='REf: directions, CER: 1'>direction</strong> & <strong style='color: orange;' title='REf: E, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & granularity & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>in</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>for</strong> & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdAdaptiveProcessor(08\_08) & 0,9ms & 48,0\% & 1,48 & 14 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(08\_08).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: angular, CER: 5'>results</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>meaning</strong> & configuration & <strong style='color: orange;' title='REf: degree, CER: 5'>for</strong> & direction & directions & <strong style='color: orange;' title='REf: E, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & <strong style='color: orange;' title='REf: granularity, CER: 7'>results</strong> & indicator & meaning & measurement & <strong style='color: orange;' title='REf: N, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>en</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & ok & report & results & rose & <strong style='color: orange;' title='REf: validate, CER: 1'>walidate</strong> & validation & variable & wind \\ \hline
|
||||
ThresholdProcessor(40\%) & 1,9ms & 64,0\% & 1,60 & 12 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(40\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>le</strong> & angular & cancel & configuration & <strong style='color: orange;' title='REf: degree, CER: 5'>rose</strong> & direction & <strong style='color: orange;' title='REf: directions, CER: 1'>direction</strong> & <strong style='color: orange;' title='REf: E, CER: 2'>le</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>for</strong> & for & <strong style='color: orange;' title='REf: granularity, CER: 6'>angular</strong> & indicator & meaning & <strong style='color: orange;' title='REf: measurement, CER: 7'>meaning</strong> & <strong style='color: orange;' title='REf: N, CER: 2'>le</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>le</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>for</strong> & <strong style='color: orange;' title='REf: ok, CER: 1'>ak</strong> & report & <strong style='color: orange;' title='REf: results, CER: 4'>report</strong> & rose & validate & validation & <strong style='color: orange;' title='REf: variable, CER: 2'>vanable</strong> & wind \\ \hline
|
||||
AutoThresholdProcessor(Triangle) & 0,5ms & 84,0\% & 4,16 & 4 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Triangle).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & 16 & <strong style='color: orange;' title='REf: angular, CER: 7'>rose</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>rose</strong> & <strong style='color: orange;' title='REf: configuration, CER: 9'>directions</strong> & <strong style='color: orange;' title='REf: degree, CER: 5'>rose</strong> & <strong style='color: orange;' title='REf: direction, CER: 1'>directions</strong> & directions & <strong style='color: orange;' title='REf: E, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>16</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>rose</strong> & <strong style='color: orange;' title='REf: granularity, CER: 10'>rose</strong> & <strong style='color: orange;' title='REf: indicator, CER: 7'>wind</strong> & <strong style='color: orange;' title='REf: meaning, CER: 5'>wind</strong> & <strong style='color: orange;' title='REf: measurement, CER: 9'>rose</strong> & <strong style='color: orange;' title='REf: N, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>16</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>16</strong> & <strong style='color: orange;' title='REf: report, CER: 4'>rose</strong> & <strong style='color: orange;' title='REf: results, CER: 5'>rose</strong> & rose & <strong style='color: orange;' title='REf: validate, CER: 7'>rose</strong> & <strong style='color: orange;' title='REf: validation, CER: 7'>directions</strong> & <strong style='color: orange;' title='REf: variable, CER: 6'>rose</strong> & wind \\ \hline
|
||||
AutoThresholdProcessor(Kapur) & 0,6ms & 92,0\% & 4,24 & 2 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: angular, CER: 6'>ne</strong> & <strong style='color: orange;' title='REf: cancel, CER: 4'>ne</strong> & configuration & <strong style='color: orange;' title='REf: degree, CER: 4'>ehe</strong> & <strong style='color: orange;' title='REf: direction, CER: 8'>configuration</strong> & <strong style='color: orange;' title='REf: directions, CER: 9'>configuration</strong> & <strong style='color: orange;' title='REf: E, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>ne</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>ok</strong> & <strong style='color: orange;' title='REf: granularity, CER: 8'>yaldate</strong> & <strong style='color: orange;' title='REf: indicator, CER: 7'>yaldate</strong> & <strong style='color: orange;' title='REf: meaning, CER: 6'>ne</strong> & <strong style='color: orange;' title='REf: measurement, CER: 9'>yaldate</strong> & <strong style='color: orange;' title='REf: N, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>ne</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>ne</strong> & ok & <strong style='color: orange;' title='REf: report, CER: 5'>ne</strong> & <strong style='color: orange;' title='REf: results, CER: 6'>ne</strong> & <strong style='color: orange;' title='REf: rose, CER: 3'>ne</strong> & <strong style='color: orange;' title='REf: validate, CER: 2'>yaldate</strong> & <strong style='color: orange;' title='REf: validation, CER: 5'>yaldate</strong> & <strong style='color: orange;' title='REf: variable, CER: 5'>yaldate</strong> & <strong style='color: orange;' title='REf: wind, CER: 3'>ne</strong> \\ \hline
|
||||
ThresholdAdaptiveProcessor(04\_04) & 0,9ms & 96,0\% & 4,56 & 1 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: angular, CER: 6'>cr</strong> & <strong style='color: orange;' title='REf: cancel, CER: 5'>cr</strong> & <strong style='color: orange;' title='REf: configuration, CER: 7'>validation</strong> & <strong style='color: orange;' title='REf: degree, CER: 5'>cr</strong> & <strong style='color: orange;' title='REf: direction, CER: 6'>validation</strong> & <strong style='color: orange;' title='REf: directions, CER: 7'>validation</strong> & <strong style='color: orange;' title='REf: E, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>cr</strong> & <strong style='color: orange;' title='REf: for, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: granularity, CER: 8'>validation</strong> & <strong style='color: orange;' title='REf: indicator, CER: 6'>validation</strong> & <strong style='color: orange;' title='REf: meaning, CER: 7'>cr</strong> & <strong style='color: orange;' title='REf: measurement, CER: 10'>validation</strong> & <strong style='color: orange;' title='REf: N, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>cr</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>cr</strong> & <strong style='color: orange;' title='REf: report, CER: 5'>cr</strong> & <strong style='color: orange;' title='REf: results, CER: 7'>cr</strong> & <strong style='color: orange;' title='REf: rose, CER: 4'>cr</strong> & <strong style='color: orange;' title='REf: validate, CER: 3'>validation</strong> & validation & <strong style='color: orange;' title='REf: variable, CER: 6'>validation</strong> & <strong style='color: orange;' title='REf: wind, CER: 4'>cr</strong> \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 100,0\% & 6,12 & 0 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(30\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: angular, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: configuration, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: degree, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: direction, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: directions, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: E, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: granularity, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: indicator, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: meaning, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: measurement, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: N, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: results, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: rose, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: validate, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: validation, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: wind, CER: 4'>-</strong> \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 6,12 & 0 / 25 &
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{results\ThresholdProcessor(20\%).00.zrs\_ZAMS\_windrose\_002.png}}
|
||||
\end{figure} & <strong style='color: orange;' title='REf: 16, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: angular, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: cancel, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: configuration, CER: 13'>-</strong> & <strong style='color: orange;' title='REf: degree, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: direction, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: directions, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: E, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: ENE, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: for, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: granularity, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: indicator, CER: 9'>-</strong> & <strong style='color: orange;' title='REf: meaning, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: measurement, CER: 11'>-</strong> & <strong style='color: orange;' title='REf: N, CER: 1'>-</strong> & <strong style='color: orange;' title='REf: NE, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: NNE, CER: 3'>-</strong> & <strong style='color: orange;' title='REf: ok, CER: 2'>-</strong> & <strong style='color: orange;' title='REf: report, CER: 6'>-</strong> & <strong style='color: orange;' title='REf: results, CER: 7'>-</strong> & <strong style='color: orange;' title='REf: rose, CER: 4'>-</strong> & <strong style='color: orange;' title='REf: validate, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: validation, CER: 10'>-</strong> & <strong style='color: orange;' title='REf: variable, CER: 8'>-</strong> & <strong style='color: orange;' title='REf: wind, CER: 4'>-</strong> \\ \hline
|
||||
AutoThresho...essor(OTSU) & 0,7ms & 28,0\% & 0,60 & 18 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(OTSU).00.zrs\_ZAMS\_windrose\_002.png}} & 16 & angular & cancel & configuration & degree & direction & direction & 16 & for & for & granularity & indicator & meaning & measurement & 16 & 16 & for & for & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdAd...ssor(20\_20) & 0,5ms & 32,0\% & 0,72 & 18 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(20\_20).00.zrs\_ZAMS\_windrose\_002.png}} & 16 & angular & ne & configuration & degree & direction & directions & ne & for & for & granularity & indicator & meaning & measurement & ne & ne & for & for & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdProcessor(60\%) & 0,7ms & 32,0\% & 0,64 & 18 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(60\%).00.zrs\_ZAMS\_windrose\_002.png}} & li & angular & cancel & configuration & degree & direction & directions & li & for & for & granularity & indicator & meaning & measurement & li & li & for & for & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
ThresholdProcessor(70\%) & 0,7ms & 32,0\% & 0,84 & 17 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(70\%).00.zrs\_ZAMS\_windrose\_002.png}} & for & angular & cancel & configuration & degree & direction & direction & for & for & for & granularity & indicator & meaning & measurement & for & for & for & for & report & results & rose & validate & validation & variable & wind \\ \hline
|
||||
AutoThresho...ssor(Kapur) & 0,6ms & 92,0\% & 4,24 & 2 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/AutoThresholdProcessor(Kapur).00.zrs\_ZAMS\_windrose\_002.png}} & ne & ne & ne & configuration & ehe & configuration & configuration & ne & ne & ok & yaldate & yaldate & ne & yaldate & ne & ne & ne & ok & ne & ne & ne & yaldate & yaldate & yaldate & ne \\ \hline
|
||||
ThresholdAd...ssor(04\_04) & 0,9ms & 96,0\% & 4,56 & 1 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdAdaptiveProcessor(04\_04).00.zrs\_ZAMS\_windrose\_002.png}} & cr & cr & cr & validation & cr & validation & validation & cr & cr & cr & validation & validation & cr & validation & cr & cr & cr & cr & cr & cr & cr & validation & validation & validation & cr \\ \hline
|
||||
ThresholdProcessor(30\%) & 0,6ms & 100,0\% & 6,12 & 0 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(30\%).00.zrs\_ZAMS\_windrose\_002.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
ThresholdProcessor(20\%) & 0,7ms & 100,0\% & 6,12 & 0 / 25 & \includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/results/ThresholdProcessor(20\%).00.zrs\_ZAMS\_windrose\_002.png}} & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - & - \\ \hline
|
||||
\end{tabular}
|
||||
|
||||
144
Implementation/testdata/report/main.tex
vendored
144
Implementation/testdata/report/main.tex
vendored
@@ -98,11 +98,7 @@
|
||||
|
||||
\subsection{command-processing_screentypes_controlgroup_005}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\command-processing_screentypes_controlgroup_005}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/command-processing_screentypes_controlgroup_005}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_command-processing_screentypes_controlgroup_005_1.tex}
|
||||
|
||||
@@ -110,11 +106,7 @@ Comparison data generated based on 9 tagged words.
|
||||
|
||||
\subsection{driver_archdrv_variablendefinition_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\driver_archdrv_variablendefinition_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/driver_archdrv_variablendefinition_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_driver_archdrv_variablendefinition_001_1.tex}
|
||||
|
||||
@@ -122,11 +114,7 @@ Comparison data generated based on 18 tagged words.
|
||||
|
||||
\subsection{driver_BQLSX00_connections_002}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\driver_BQLSX00_connections_002}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/driver_BQLSX00_connections_002}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_driver_BQLSX00_connections_002_1.tex}
|
||||
|
||||
@@ -134,11 +122,7 @@ Comparison data generated based on 27 tagged words.
|
||||
|
||||
\subsection{driver_brpvi_offlineimport_004}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\driver_brpvi_offlineimport_004}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/driver_brpvi_offlineimport_004}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_driver_brpvi_offlineimport_004_1.tex}
|
||||
|
||||
@@ -146,11 +130,7 @@ Comparison data generated based on 13 tagged words.
|
||||
|
||||
\subsection{driver_SEL_Options_002}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\driver_SEL_Options_002}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/driver_SEL_Options_002}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_driver_SEL_Options_002_1.tex}
|
||||
|
||||
@@ -158,11 +138,7 @@ Comparison data generated based on 9 tagged words.
|
||||
|
||||
\subsection{driver_simotion_online_import_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\driver_simotion_online_import_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/driver_simotion_online_import_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_driver_simotion_online_import_001_1.tex}
|
||||
|
||||
@@ -170,11 +146,7 @@ Comparison data generated based on 19 tagged words.
|
||||
|
||||
\subsection{editor_multimonitor_example_007}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\editor_multimonitor_example_007}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/editor_multimonitor_example_007}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_editor_multimonitor_example_007_1.tex}
|
||||
|
||||
@@ -182,11 +154,7 @@ Comparison data generated based on 29 tagged words.
|
||||
|
||||
\subsection{editor_startpage_project-exist_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\editor_startpage_project-exist_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/editor_startpage_project-exist_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_editor_startpage_project-exist_001_1.tex}
|
||||
|
||||
@@ -194,11 +162,7 @@ Comparison data generated based on 76 tagged words.
|
||||
|
||||
\subsection{editor_windows_position_006}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\editor_windows_position_006}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/editor_windows_position_006}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_editor_windows_position_006_1.tex}
|
||||
|
||||
@@ -206,11 +170,7 @@ Comparison data generated based on 72 tagged words.
|
||||
|
||||
\subsection{etm_gantt_runtime_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\etm_gantt_runtime_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/etm_gantt_runtime_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_etm_gantt_runtime_001_1.tex}
|
||||
|
||||
@@ -218,11 +178,7 @@ Comparison data generated based on 33 tagged words.
|
||||
|
||||
\subsection{historian_assistent_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\historian_assistent_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/historian_assistent_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_historian_assistent_001_1.tex}
|
||||
|
||||
@@ -230,11 +186,7 @@ Comparison data generated based on 53 tagged words.
|
||||
|
||||
\subsection{reporting-server_report-assistant_007}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\reporting-server_report-assistant_007}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/reporting-server_report-assistant_007}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_reporting-server_report-assistant_007_1.tex}
|
||||
|
||||
@@ -242,11 +194,7 @@ Comparison data generated based on 44 tagged words.
|
||||
|
||||
\subsection{report_example_data-time_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\report_example_data-time_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/report_example_data-time_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_report_example_data-time_001_1.tex}
|
||||
|
||||
@@ -254,11 +202,7 @@ Comparison data generated based on 19 tagged words.
|
||||
|
||||
\subsection{runtime_function_create_002}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\runtime_function_create_002}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/runtime_function_create_002}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_runtime_function_create_002_1.tex}
|
||||
|
||||
@@ -266,11 +210,7 @@ Comparison data generated based on 24 tagged words.
|
||||
|
||||
\subsection{straton_runtime_configuration_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\straton_runtime_configuration_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/straton_runtime_configuration_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_straton_runtime_configuration_001_1.tex}
|
||||
|
||||
@@ -278,11 +218,7 @@ Comparison data generated based on 50 tagged words.
|
||||
|
||||
\subsection{worldview_zoom_steps_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\worldview_zoom_steps_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/worldview_zoom_steps_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_worldview_zoom_steps_001_1.tex}
|
||||
|
||||
@@ -290,11 +226,7 @@ Comparison data generated based on 14 tagged words.
|
||||
|
||||
\subsection{zrs_MetadataEditor_variables_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_MetadataEditor_variables_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_MetadataEditor_variables_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_MetadataEditor_variables_001_1.tex}
|
||||
|
||||
@@ -302,11 +234,7 @@ Comparison data generated based on 52 tagged words.
|
||||
|
||||
\subsection{zrs_REPORTS_EfficencyClass_009}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_REPORTS_EfficencyClass_009}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_REPORTS_EfficencyClass_009}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_REPORTS_EfficencyClass_009_1.tex}
|
||||
|
||||
@@ -314,11 +242,7 @@ Comparison data generated based on 64 tagged words.
|
||||
|
||||
\subsection{zrs_REPORTS_extended-analysis_017}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_REPORTS_extended-analysis_017}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_REPORTS_extended-analysis_017}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_REPORTS_extended-analysis_017_1.tex}
|
||||
|
||||
@@ -326,11 +250,7 @@ Comparison data generated based on 76 tagged words.
|
||||
|
||||
\subsection{zrs_ZAMS_3rd-connector_014}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_ZAMS_3rd-connector_014}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_ZAMS_3rd-connector_014}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_ZAMS_3rd-connector_014_1.tex}
|
||||
|
||||
@@ -338,11 +258,7 @@ Comparison data generated based on 34 tagged words.
|
||||
|
||||
\subsection{zrs_ZAMS_filter-alarmgroup_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_ZAMS_filter-alarmgroup_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_ZAMS_filter-alarmgroup_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_ZAMS_filter-alarmgroup_001_1.tex}
|
||||
|
||||
@@ -350,11 +266,7 @@ Comparison data generated based on 15 tagged words.
|
||||
|
||||
\subsection{zrs_ZAMS_OLEDB-server_001}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_ZAMS_OLEDB-server_001}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_ZAMS_OLEDB-server_001}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_ZAMS_OLEDB-server_001_1.tex}
|
||||
|
||||
@@ -362,11 +274,7 @@ Comparison data generated based on 61 tagged words.
|
||||
|
||||
\subsection{zrs_ZAMS_scatter_002}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_ZAMS_scatter_002}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_ZAMS_scatter_002}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_ZAMS_scatter_002_1.tex}
|
||||
|
||||
@@ -374,11 +282,7 @@ Comparison data generated based on 11 tagged words.
|
||||
|
||||
\subsection{zrs_ZAMS_windrose_002}
|
||||
|
||||
|
||||
\begin{figure}[ht]
|
||||
\centering
|
||||
\fbox{\includegraphics[width=.7\textwidth]{img\zrs_ZAMS_windrose_002}}
|
||||
\end{figure}
|
||||
\includegraphics[width=3cm,height=2cm,keepaspectratio]{\detokenize{include/img/zrs_ZAMS_windrose_002}}
|
||||
|
||||
\include{D:\git\ba_ocr\Implementation\testdata\report\figures\fig_zrs_ZAMS_windrose_002_1.tex}
|
||||
|
||||
|
||||
@@ -86,9 +86,5 @@ public class LatexIncludeDocumentGenerator : DocumentGeneratorBase
|
||||
|
||||
#endregion
|
||||
|
||||
public override string FormatImage(string path, IBounds? bounds = default) => @$"
|
||||
\begin{{figure}}[ht]
|
||||
\centering
|
||||
\fbox{{\includegraphics[width=.7\textwidth]{{{path}}}}}
|
||||
\end{{figure}}";
|
||||
public override string FormatImage(string path, IBounds? bounds = default) => @$"\includegraphics[width=3cm,height=2cm,keepaspectratio]{{\detokenize{{{"include/" + path.Replace("\\", "/")}}}}}";
|
||||
}
|
||||
Reference in New Issue
Block a user