From 0b01b41685e594f9ab7bd3d0d7069bccfd03f5d0 Mon Sep 17 00:00:00 2001 From: Simon Gruber Date: Mon, 4 Dec 2023 18:22:08 +0100 Subject: [PATCH] Reworked distance info algo --- Examples/Common/Distance/DistanceComparer.cs | 17 ++++-- .../Generator/HtmlDocumentGenerator.cs | 35 +----------- .../ReportGenerator/Models/ProcessorStat.cs | 56 ++++++++---------- Examples/ReportGenerator/Program.cs | 6 +- Examples/ReportGenerator/ReportGenerator.cs | 57 ++++++++++++++++++- Examples/testdata/report.html | 2 +- 6 files changed, 97 insertions(+), 76 deletions(-) diff --git a/Examples/Common/Distance/DistanceComparer.cs b/Examples/Common/Distance/DistanceComparer.cs index 1156c23..e672cdc 100644 --- a/Examples/Common/Distance/DistanceComparer.cs +++ b/Examples/Common/Distance/DistanceComparer.cs @@ -26,11 +26,18 @@ public readonly struct DistanceComparer : IDistanceComparer Distance = Calculator.GetDistance(Reference, Hypothesis); } + /// - public override string ToString() => Hypothesis switch + public override string ToString() { - null => "`null`", - var hyp when Equals(hyp, Reference) => Hypothesis.ToString() ?? string.Empty, - _ => $"{Hypothesis}" - }; + var str = Hypothesis?.ToString(); + + if (Hypothesis is var hyp && Equals(hyp, Reference)) + { + return str ?? string.Empty; + } + + return + $"{str ?? "-"}"; + } } diff --git a/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs b/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs index 08a8e2c..ae67e82 100644 --- a/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs +++ b/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs @@ -80,39 +80,8 @@ public class HtmlDocumentGenerator : DocumentGeneratorBase AppendParagraph(text, default); /// - public override IDocumentGenerator AppendHeading(int level, string text) - { - if (_sectionLevel > 0) - { - // todo ?? - } - - var delta = level - _sectionLevel; - switch (delta) - { - case > 0: - for (int i = 0; i < delta; i++) - { - Append("
"); - } - - break; - case < 0: - for (int i = delta; i < 0; i++) - { - Append("
"); - } - - break; - } - - Append(""); - Append("
"); - - _sectionLevel = level; - - return Append($"{text}"); - } + public override IDocumentGenerator AppendHeading(int level, string text) => + Append($"{text}"); /// protected override ITableGenerator MakeTable(int columns, Stream stream) => diff --git a/Examples/ReportGenerator/Models/ProcessorStat.cs b/Examples/ReportGenerator/Models/ProcessorStat.cs index 56ac0cf..0bdfe7b 100644 --- a/Examples/ReportGenerator/Models/ProcessorStat.cs +++ b/Examples/ReportGenerator/Models/ProcessorStat.cs @@ -46,50 +46,40 @@ public readonly struct ProcessorStat : IDistanceComparer> hypothesis.OrderBy(s => s).ToArray() ) / reference.Count; - Words = reference.Select(r => GetDistanceInfo(r, hypothesis)).ToArray(); + Words = GetDistanceInfos(reference, hypothesis).ToArray(); + // Words = reference.Select(r => GetDistanceInfo(r, hypothesis)).ToArray(); } - private static ICollection> GetDistanceInfos( - ICollection reference, - ICollection hypothesis - ) - { - // todo avoid matching the same reference with a value multiple times - throw new NotImplementedException(); - } /// - /// Compares the with all given - /// and determines the with the lowest error + /// Compares the with all given values in the + /// , determining the + /// with the lowest error /// - private static IDistanceComparer GetDistanceInfo( - string reference, - IEnumerable values + private static IEnumerable> GetDistanceInfos( + ICollection referenceCollection, + ICollection hypothesisCollection ) { - var result = new DistanceComparer(reference); + var results = new List>(); - // Determine character stat with lowest error - foreach (var value in values) + foreach (var reference in referenceCollection) { - // todo avoid matching the same reference with a value multiple times + var tResults = hypothesisCollection + .Select(hypothesis => new DistanceComparer(reference, hypothesis)) + .Cast>() + .ToList(); - var stat = new DistanceComparer(reference, value); - if (stat.Distance > result.Distance || (stat.Distance / reference.Length) > 0.6d) - { - // todo fine-tune threshold - continue; - } - - result = stat; - - if (stat.Distance <= 0) - { - // We cannot go lower than zero, break - return result; - } + results.AddRange(tResults); } - return result; + var lookup = results + .OrderBy(result => result.Distance) + .ToLookup(result => result.Reference); + + foreach (var reference in referenceCollection) + { + yield return lookup[reference].FirstOrDefault() ?? new DistanceComparer(reference); + } } } diff --git a/Examples/ReportGenerator/Program.cs b/Examples/ReportGenerator/Program.cs index 51315fb..5b0243e 100644 --- a/Examples/ReportGenerator/Program.cs +++ b/Examples/ReportGenerator/Program.cs @@ -1,4 +1,5 @@ -using ReportGenerator.Generator.Generator; +using Common.Extensions; +using ReportGenerator.Generator.Generator; using ReportGenerator.Models; namespace ReportGenerator; @@ -24,7 +25,8 @@ internal static class Program using var report = new ReportGenerator("OCR Report", document, scans) .AddComparison("Processing summary (Average)", v => v.Average()) // .AddComparison("Processing summary (Cumulative)", v => v.Sum()) - // .AddComparison("Processing summary (Median)", v => v.Median()) + .AddComparison("Processing summary (Median)", v => v.Median()) + // .AddProcessorStats("Processor Stats") .AddImageStatsFull("Scan Results"); Console.WriteLine($"Saved report to '{path}'"); diff --git a/Examples/ReportGenerator/ReportGenerator.cs b/Examples/ReportGenerator/ReportGenerator.cs index 167b03a..37fc9b9 100644 --- a/Examples/ReportGenerator/ReportGenerator.cs +++ b/Examples/ReportGenerator/ReportGenerator.cs @@ -39,7 +39,55 @@ public class ReportGenerator : IDisposable { Document.AppendHeading(2, title); - // todo show best/worst images per processor + var processors = new Dictionary>(); + foreach (var image in Images) + { + foreach (var processor in image.Processors) + { + if (processors.TryGetValue(processor.Name, out var images)) + { + images.Add(image); + } + else + { + processors.Add(processor.Name, new List { image }); + } + } + } + + foreach (var (processor, images) in processors) + { + var ordered = images + .Select(i => (Stats: i, Distance: i + .Processors + .Where(p => p.Name.Equals(processor)) + .Select(p => p.Distance) + .Average() + )) + .OrderBy(i => i.Distance) + .ToArray(); + + Document + .AppendHeading(3, processor) + .AppendTable(2, table => + { + table.AppendHeader(new[] { "Image", "Preview", "Distance" }); + + foreach (var (stats, distance) in ordered) + { + var imgPath = Path.Combine("results", $"{processor}.00.{stats.ImageName}.png"); + + table.AppendRow(new[] + { + $"{stats.ImageName}", + Document.FormatImage(imgPath, new Bounds(0, 150)), + distance.ToString("F2") + }); + } + } + ); + } + return this; } @@ -75,10 +123,15 @@ public class ReportGenerator : IDisposable { var imgPath = Path.Combine("results", $"{processor.Name}.00.{stat.ImageName}.png"); + string summarizedCer = string.Empty; + summarizedCer = processor.Words + .Average(s => s.Distance) + .ToString("F2"); + table.AppendRow(processor.Words .Select(s => s.ToString() ?? string.Empty) .Prepend(Document.FormatImage(imgPath, new Bounds(0, 150))) - .Prepend(processor.Words.Average(s => s.Distance).ToString("F2")) + .Prepend(summarizedCer) .Prepend($"{processor.Distance * 100:F1}%") .Prepend($"{processor.ProcessingTime * 1000:F1}ms") .Prepend(processor.Name) diff --git a/Examples/testdata/report.html b/Examples/testdata/report.html index 990ed0a..506656e 100644 --- a/Examples/testdata/report.html +++ b/Examples/testdata/report.html @@ -14,4 +14,4 @@ tbody tr:nth-child(odd) { caption { font-size: .8rem -}

OCR Report

Processing summary (Average)

WER

Show table
ProcessorError
ThresholdProcessor(40%)46,04%
ThresholdProcessor(30%)46,84%
AutoThresholdProcessor(OTSU)48,76%
ThresholdProcessor(50%)49,95%
ThresholdProcessor(70%)49,96%
......
ThresholdAdaptiveProcessor(12_12)70,85%
ThresholdAdaptiveProcessor(16_16)71,32%
ThresholdAdaptiveProcessor(08_08)73,94%
AutoThresholdProcessor(Triangle)91,24%
ThresholdAdaptiveProcessor(04_04)94,55%

CER

Show table
ProcessorChanges
ThresholdProcessor(40%)1,85
ThresholdProcessor(30%)1,97
ThresholdProcessor(50%)2,30
AutoThresholdProcessor(OTSU)2,41
ThresholdProcessor(60%)2,43
......
ThresholdAdaptiveProcessor(12_12)3,35
ThresholdAdaptiveProcessor(16_16)3,57
ThresholdAdaptiveProcessor(08_08)3,63
AutoThresholdProcessor(Triangle)5,08
ThresholdAdaptiveProcessor(04_04)5,12

Time

Show table
ProcessorTime
ThresholdAdaptiveProcessor(24_24)0,49ms
ThresholdAdaptiveProcessor(16_16)0,54ms
ThresholdAdaptiveProcessor(12_12)0,60ms
ThresholdAdaptiveProcessor(08_08)0,65ms
ThresholdProcessor(50%)0,79ms
......
AutoThresholdProcessor(Triangle)0,93ms
AutoThresholdProcessor(Kapur)1,02ms
AutoThresholdProcessor(OTSU)1,16ms
ThresholdAdaptiveProcessor(04_04)1,40ms
ThresholdProcessor(30%)1,40ms

Scan Results

command-processing_screentypes_controlgroup_005

Show table
ProcessorElapsedWERCER (avg)Image10034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(60%)0,7ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(30%)0,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(70%)0,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(40%)1,0ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(50%)1,8ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
AutoThresholdProcessor(OTSU)2,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
AutoThresholdProcessor(Kapur)0,7ms11,1%0,2210034activeidinterlockinginterlockings`null`statictexttyp
ThresholdProcessor(80%)0,7ms11,1%0,2210034activeidinterlockinginterlockings`null`statictexttyp
ThresholdProcessor(20%)0,7ms33,3%0,1110034activeidinterlockinginterlackingsnostatictexttyp
ThresholdAdaptiveProcessor(24_24)1,1ms44,4%1,78`null`active`null`interlockinginterlockingsno`null`text`null`
ThresholdAdaptiveProcessor(20_20)0,5ms55,6%2,00`null`active`null`interlockinginterlockings`null``null`text`null`
ThresholdAdaptiveProcessor(16_16)0,7ms66,7%2,11`null`active`null`interlockinginterlocking`null``null`text`null`
ThresholdAdaptiveProcessor(12_12)0,5ms77,8%3,00`null``null``null`interlockinginterlockingno`null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms88,9%3,00`null``null``null`interlockings'interlockings'`null``null`text`null`
AutoThresholdProcessor(Triangle)1,0ms100,0%5,89`null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)1,3ms100,0%5,89`null``null``null``null``null``null``null``null``null`

Comparison data generated based on 9 tagged words.

driver_archdrv_variablendefinition_001

Show table
ProcessorElapsedWERCER (avg)Imagearchivebitbytedasdoppelwortfloatgewünschtehilfekonfigurationneuobjektselektierensiestringtreibervariablevariablendefinitionverlassenwort
ThresholdProcessor(50%)0,7ms16,7%1,61`null`bitbytedasdoppelwortfloatgewünschtehilfekonfiguration`null`objektselektierensiestringtreibervariable`null`verlassenwort
ThresholdProcessor(40%)1,0ms16,7%1,61`null`bitbytedasdoppelwortfloatgewünschtehilfekonfiguration`null`objektselektierensiestringtreibervariable`null`verlassenwort
ThresholdProcessor(30%)11,6ms16,7%1,61`null`bitbytedasdoppelwortfloatgewünschtehilfekonfiguration`null`objektselektierensiestringtreibervariable`null`verlassenwort
ThresholdProcessor(60%)0,8ms22,2%1,67`null`bitbytedasdoppelwortfloatgewunschtehilfekonfiguration`null`objektselektierensiestringtreibervariable`null`verlassenwort
AutoThresholdProcessor(OTSU)1,1ms22,2%1,61`null`bitbytedasdoppelwortfloatgewünschtehilfekonfiguration`null`objektselektierensiestringtreibervariable`null`verlassenwort
ThresholdAdaptiveProcessor(24_24)0,5ms33,3%1,06`null`bitbytedasdoppelwortfloatgewünschtesiekonfiguration`null`objektselektierensiestringtreibervariableyariablendefiiverlassenwort
ThresholdAdaptiveProcessor(16_16)1,2ms38,9%1,17archivebitbytedasdoppelwortfloatgewünschtesiekonfiguration`null``null`selektierensiestringtreibervariablevariablendefinition`null`wort
ThresholdProcessor(70%)0,8ms50,0%3,50`null`bitbyte`null`doppelwortfloat`null`hilfekonfiguration`null``null``null``null`stringtreibervariable`null`verlassenort
AutoThresholdProcessor(Triangle)0,8ms55,6%4,11`null`bitbyte`null`doppelwortfloat`null``null`konfigurationnew`null``null``null`stringtreibervariable`null``null`wort
ThresholdProcessor(20%)0,8ms55,6%4,33archive`null``null`das`null`floatgewunschtehilfe`null``null`objektselektierensie`null``null``null`verlassen`null`
ThresholdAdaptiveProcessor(20_20)0,7ms61,1%3,50archivebitbyte`null`doppelwortfloat`null``null``null``null``null``null``null`stringtreibervariablevariablendefinition`null`wort
ThresholdProcessor(80%)0,7ms61,1%4,22`null`bitbyte`null`doppelwortfloat`null``null`konfiguration`null``null``null``null`stringtreibervariable`null``null`wort
ThresholdAdaptiveProcessor(08_08)0,6ms72,2%5,33archive`null``null`das`null`floatgewünschtesie`null``null``null`elektierensie`null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%7,28`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`essen`null`
AutoThresholdProcessor(Kapur)0,6ms100,0%7,56`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,56`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 18 tagged words.

driver_BQLSX00_connections_002

Show table
ProcessorElapsedWERCER (avg)Image01abbrechenarchiv kennungdatenbausteindatenbausteinkonfigurationdatensatzdatentypdoppelworteinstellungenfreiidlöschennameneueneueroffsetohneokprodukt IDS7-300schreibstatusseriellSOspaltenorientiertstellewert
ThresholdProcessor(20%)0,9ms70,4%3,85`null``null`techenkennungdaterbaustaindaterbaustaindatensatzdatensatz`null`einstellungenfreiidtechennamenameneveroffsetohne`null``null``null``null`stele`null``null`stelewert
ThresholdProcessor(40%)0,9ms70,4%4,52`null``null`archivkennungdatenbausteindatenbausteindatensatzdatentyp`null``null``null`id`null`namenamenameoffsetohne`null`produkt`null``null``null``null``null``null`wert
ThresholdProcessor(30%)1,0ms74,1%4,26`null``null`abbrechenkennungdatenbausteindatenbaustein`null``null`ooppetwort`null``null`id`null`namenamenameoffsetohne`null``null``null`screbstetusserie`null``null`seriewert
ThresholdProcessor(50%)1,7ms85,2%6,00`null``null``null``null`datentyp`null`datentypdatentypdoppelwort`null`frei`null``null``null``null``null``null``null``null``null``null``null`stele`null``null`stelewert
ThresholdAdaptiveProcessor(20_20)0,6ms96,3%7,26`null``null``null``null``null``null``null``null``null``null``null``null``null``null`werewere`null``null``null``null``null``null`were`null``null``null`wert
ThresholdProcessor(70%)0,7ms96,3%7,37`null``null``null``null``null``null``null``null``null``null``null``null``null`namenamename`null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Kapur)1,1ms96,3%7,52`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`wert
ThresholdProcessor(80%)1,1ms96,3%7,52`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`wert
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(16_16)0,6ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(60%)0,9ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(OTSU)1,1ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)1,2ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 27 tagged words.

driver_brpvi_offlineimport_004

Show table
ProcessorElapsedWERCER (avg)ImageabackcanceldeclarationdescriptionfilefilenamefinishhelpnewnewOpcTag.opctopctag
ThresholdProcessor(50%)0,7ms23,1%1,15`null`backcanceldeclarationdescriptionfilefilenamefinishhelpnew`null`opctag
ThresholdProcessor(60%)0,9ms30,8%1,92`null`backcanceldeclarationdescriptionfilefilename`null``null`new`null`opctag
ThresholdProcessor(70%)0,8ms38,5%2,15`null`backanewdeclarationdescriptionfilefilename`null``null`new`null`opctag
ThresholdProcessor(40%)1,3ms38,5%1,38`null`backcanceldeclarationcescriptiorfilefileramefinishhelpnew`null`opctag
AutoThresholdProcessor(OTSU)1,1ms46,2%1,38`null`backanewdeclarationdescriptionfilefilenamefish`null`newnewopcopctag
AutoThresholdProcessor(Kapur)1,1ms53,8%2,00`null``null`anewdeclarationdescriptionfilefilename`null``null`newnewopcopctag
ThresholdProcessor(30%)1,1ms53,8%1,92`null`backcanceldeclarationdeclarationfilefilefinishhelpnews`null`opctag
ThresholdAdaptiveProcessor(16_16)0,5ms69,2%3,15`null``null`anewdeclarationdeclarationfilefile`null``null`new`null`opctag
ThresholdProcessor(80%)1,4ms76,9%4,46`null``null`anew`null``null`filefile`null``null`new`null`opctag
ThresholdAdaptiveProcessor(08_08)0,6ms84,6%5,15`null``null`anew`null``null``null``null``null``null`anew`null`opctag
ThresholdAdaptiveProcessor(12_12)0,6ms84,6%3,77`null``null`anewdescriptiondescriptionfic`null``null``null`anew`null`opctad
ThresholdAdaptiveProcessor(20_20)0,5ms92,3%4,92`null``null``null``null``null`filefile`null``null``null``null`opctag
AutoThresholdProcessor(Triangle)0,9ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(20%)1,0ms100,0%4,15`null``null``null`zeclarationzeclarationfal`null``null``null`mew`null`opctay
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,38`null``null`anew`null``null`tile`null``null``null`anew`null``null``null`
ThresholdAdaptiveProcessor(24_24)1,4ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 13 tagged words.

driver_SEL_Options_002

Show table
ProcessorElapsedWERCER (avg)Image100180000anandbetweenenterintegerokSEL
ThresholdAdaptiveProcessor(16_16)0,5ms22,2%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(60%)0,7ms22,2%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(70%)0,7ms22,2%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(80%)0,9ms22,2%0,56100180000anandbetweenenterinteger`null``null`
ThresholdAdaptiveProcessor(12_12)1,0ms22,2%0,56100180000anandbetweenenterinteger`null``null`
AutoThresholdProcessor(OTSU)1,1ms22,2%0,56100180000anandbetweenenterinteger`null``null`
ThresholdAdaptiveProcessor(08_08)0,5ms33,3%0,56100180000anandbetweenenterinteger`null``null`
ThresholdAdaptiveProcessor(20_20)0,5ms33,3%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(40%)0,8ms33,3%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(50%)0,8ms33,3%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(30%)0,9ms33,3%0,56100180000anandbetweenenterinteger`null``null`
ThresholdProcessor(20%)1,0ms33,3%0,56100180000anandbetweenenterinteger`null``null`
AutoThresholdProcessor(Kapur)1,2ms33,3%0,56100180000anandbetweenenterinteger`null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms88,9%3,11`null`300001`null``null`between`null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%4,22`null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,8ms100,0%4,22`null``null``null``null``null``null``null``null``null`

Comparison data generated based on 9 tagged words.

driver_simotion_online_import_001

Show table
ProcessorElapsedWERCER (avg)Image(1)aallcancelconnectionconnectionsD445existingfilterimportlabelnewokonlyresourcesselectsetvariablevariables
ThresholdProcessor(50%)0,7ms26,3%0,68`null``null`alllabelconnectionconnections`null`existingfilterimportlabelnew`null`onlyresourcesselectsetvariablevariables
ThresholdProcessor(60%)0,8ms31,6%0,63`null``null`alllabelconnectionconnectionsd445existingfilterimportlabelnew`null`ovonlyresourcesselectsetvariablevariables
ThresholdAdaptiveProcessor(20_20)0,9ms31,6%1,00`null``null`alllabelconnectionconnections`null`existing`null`importlabelnew`null`onlyresourcesselectsetvariablevariables
ThresholdProcessor(80%)0,9ms31,6%0,63`null``null``null`labelconnectionconnectionsd445existingfiterimportlabelnewokonlyresourcesselectsetvariablevariables
AutoThresholdProcessor(OTSU)0,9ms36,8%0,58`null``null`alllabelconnectionconnectionsd445existingfitterimportlabelnew`null`onlyresourcesselectsetvariablevariables
ThresholdProcessor(70%)0,9ms36,8%0,42`null``null`allcanceconnectionconnectionsd445existingfitterimportlabelnewoxonlyresourcesselectsetvariablevariables
ThresholdAdaptiveProcessor(12_12)0,4ms42,1%1,05`null``null`allabelconnectionconnectionsd445existing`null`importlabelnew`null`onlyresourcesselect`null`variablevariables
ThresholdProcessor(40%)0,7ms47,4%0,95`null``null`allcancelconnectienconnections`null`existingfitterimportlabelnew`null``null`resourcesselectetvariablesvariables
AutoThresholdProcessor(Kapur)0,9ms57,9%1,05`null``null``null`cancelconnecticnconnections`null`existingfitterimportlabelnewck`null`resourcesselectetvariablesvariables
ThresholdAdaptiveProcessor(08_08)1,1ms57,9%1,84`null``null``null`labelconnectionconnection`null`existing`null`importlabelnew`null`only`null`select`null`variablevariables
ThresholdAdaptiveProcessor(24_24)0,5ms63,2%2,21`null``null`all`null`connectionconnectionsd445existing`null``null`allnew`null`oniy`null`select`null`variablesvariables
ThresholdProcessor(30%)1,1ms63,2%1,68`null``null`alllabelcennecticncennecticn`null`istingfilterimportlabel`null`ok`null`resourcesselectsetyanablesyanables
ThresholdAdaptiveProcessor(16_16)0,4ms84,2%4,05`null``null``null``null`connectionconnections445`null``null``null``null``null``null``null``null`select`null``null``null`
AutoThresholdProcessor(Triangle)0,9ms89,5%4,11`null``null``null``null`connectionconnection0445`null``null``null``null``null``null``null``null`select`null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms94,7%4,58`null``null``null``null`connectionconnection`null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(20%)1,1ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 19 tagged words.

editor_multimonitor_example_007

Show table
ProcessorElapsedWERCER (avg)Image0000001108019203840alternativebottomcanceldefinedisplayforhelpinleftMmenuMMmonitornameokonlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(70%)0,8ms27,6%0,62`null``null``null`108019203840alternativebottom`null`definedisplayforhelpinleft`null`menu`null`monitorname`null`onlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(80%)1,0ms31,0%0,76`null``null``null`108019203840alternativebottom`null`definedisplayfor`null`inleft`null`menu`null`monitorname`null`onlineoptionsphysicalpositionrightthetopundedactable
AutoThresholdProcessor(OTSU)1,4ms34,5%0,76`null``null``null`108019203840alternativebottom`null`definedisplayfor`null`inleft`null`menu`null`monitorname`null`onlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(60%)0,8ms37,9%0,83`null``null``null`103019203340alternativebottom`null`definedisplayfor`null`inleft`null`menu`null`monitorname`null`onlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(40%)0,9ms41,4%1,28`null``null``null``null``null``null`alternativebottom`null`onlinedisplayfor`null`inleft`null`menu`null`monitorname`null`onlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(50%)0,7ms55,2%2,00`null``null``null``null``null``null`alternativebottom`null`onlinedisplayfor`null`in`null``null`menu`null`monitor`null``null`onlineoptions`null`position`null`thetopundedactable
ThresholdAdaptiveProcessor(24_24)0,5ms62,1%2,10`null``null``null``null``null``null`alternative`null``null`definedisplayfor`null`in`null``null`menu`null`monitor`null``null`onineoptionsphysicaloptions`null`the`null`undedactable
ThresholdAdaptiveProcessor(12_12)0,6ms62,1%2,45`null``null``null``null``null``null``null``null``null`definedisplayfor`null`in`null``null`menu`null`monitor`null``null`onlineonlinephysicalposition`null`the`null`undedactable
ThresholdProcessor(30%)0,9ms62,1%2,14`null``null``null``null``null``null``null`bottomcancelonline`null`forhelpinleft`null`menu`null`monitor`null`okonlineoptians`null`tionnightthetonundedactable
ThresholdAdaptiveProcessor(08_08)0,6ms69,0%2,97`null``null``null``null``null``null``null``null``null`definedisplay`null``null`in`null``null`menu`null`monitor`null``null`onlineoptionsphysicaloptions`null`the`null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms79,3%3,10`null``null``null``null``null``null``null``null``null`define`null`for`null``null``null``null``null``null`monitor`null``null`definepositionphysicalposition`null``null``null`undedactable
AutoThresholdProcessor(Triangle)0,9ms79,3%3,31`null``null``null``null``null``null``null``null``null`online`null`for`null``null`let`null`menu`null`position`null``null`onlineopti`null`positionrichtthetop`null`
ThresholdAdaptiveProcessor(20_20)0,9ms82,8%3,34`null``null``null``null``null``null``null``null`canceldefine`null``null``null``null``null``null``null``null`monitor`null``null`definetosphysicalposition`null``null`tos`null`
AutoThresholdProcessor(Kapur)0,8ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(20%)0,9ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%4,45`null``null``null``null``null``null``null``null``null`detine`null``null``null``null``null``null``null``null``null``null``null`detinedetine`null``null``null``null``null``null`

Comparison data generated based on 29 tagged words.

editor_startpage_project-exist_001

Show table
ProcessorElapsedWERCER (avg)Imageaandanythingapplicationarebackbasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednextnotofparameterspointsprocessesprojectprojectspropertiesrprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(40%)0,9ms13,2%0,22`null`andanythingapplicationare`null`basicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneedneednotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwe`null`whatworkyouyour
AutoThresholdProcessor(OTSU)1,1ms15,8%0,21`null`andanythingapplicationare`null`basicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednotnotofparameterspointsprocessesprojectprojectspropertesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwe`null`whatworkyouyour
ThresholdProcessor(50%)0,7ms19,7%0,26`null`andanythingapplicationare`null`bastcbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowitinincorporateintointroducingtsitmakeneednotnotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwe`null`whatworkyouyour
ThresholdProcessor(30%)0,9ms19,7%0,32`null`andanythingapplicationare`null`basicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontexecutiongenerallyhashowifinincorporateintointroducingijitmakeneedneednotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotool`null`visualizationwantwewelcomewhatworkyouyour
AutoThresholdProcessor(Kapur)1,1ms21,1%0,33`null`andanythingapplicationare`null`basicbecausebeencanchapterscompleconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnectiongenerallyhashowifinincorporateintointroducing'sitmakeneedneednotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotool`null`visualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(60%)0,8ms27,6%0,36`null`andanythingapplicationare`null`basicbecausebeencanchapterscompileconfiguredconfiguitngconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowininincorporateintointroducing1sitınakeneedneednotofparameterspointsprocessesprojectprojectspropectprojectscreenseeservicesettingstartstepsstudiothethemthenthistotovariablevisualizationwantwe`null`whatworkyouyour
ThresholdProcessor(20%)0,9ms31,6%1,03`null`and`null`applicationare`null`basiceasybeencanchapterscompileconfiguredconfiguringconnectiontoolcreatedata`null`todrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnection`null`hashowifinincorporateintoiniroducingisitmakeneedneed`null`ofchapterspointsprojectsprojectprojectsprojectsprojectseeseeserviceenginestartstepsstudiothethenthenthistotool`null`visualizationwantwewelcomewhatworkyouyour
ThresholdAdaptiveProcessor(20_20)0,9ms32,9%0,33`null`andanythingapplicationarebackbasicbecausebeencanchapterscompteconfiguredconfiguringcontrolcontrolcreatedata`null`dodrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontexecutiongenerallyhashowifinincorporateintointroducingisiomakeneednextnotofparameterspointsprocessesprojectprojectspropertiesprojectscreenseeservicesettingstatstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour
ThresholdAdaptiveProcessor(12_12)0,6ms34,2%0,57`null`andanythingfunctionare`null`basicbecausebeencanchapters`null`configuredconfiguringfunctioncontrolcreatedatadtalogsdodrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontfunctiongenerallyhashowifinincorporateintointroducingititmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotool`null`visualizationwantwewelcomewantworkyouyour
ThresholdAdaptiveProcessor(16_16)0,5ms36,8%0,64`null`andanythingapplicationare`null`basicbecausebeencanchapters`null`configuredconfiguringconnectiontoolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforaefrontfunction`null`hashowifinincorporateintointroducingisitmakeneedneed`null`ofparameterspointsprojetsprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotool`null`visualizationwantwewelcomewhatworkyouyour
ThresholdAdaptiveProcessor(24_24)0,4ms38,2%0,75`null`andanythingvisualizationare`null`basicbecausebeen`null`chapters`null`configuredconfiguringconnectioncontrolcreateaadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongeneraltyhas`null`ifincreateintheintroducingififmakeneednotnotofparameters`null`processesprojectprojectspropertiesprojectseeseeenginesettingaststepsstudiothethemthenthistotootvariablevisualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(70%)0,9ms46,1%0,55`null`andanythingapplicationarebackbasicbecausedeencanchaptersconiplecont-quredconfguungconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollawingforframefrontfunctiongenerallyhashowitinincorperateinteintroducingtsitareneednext`null`ofchapterspointsprocessesprojectproyectspropericsprojectscreenseeservicesettingstartstepsstudiothethenthentstotoolvariablevisualizationentwe`null`whatworkyouyour
ThresholdAdaptiveProcessor(08_08)0,6ms61,8%1,99`null`end`null`visualizationare`null`basic`null`needcanchapterscolconfiguringconfiguringgonnectioncolcreatedata`null`to`null``null`end`null`engineeringexezutionforfollowingforcreateforgonnection`null``null`howininincorporateintointroducingininmakeneedneed`null``null`chapterspointsprojedisprojectprojectprojedisproject`null``null`serviceservicewantstepsstudiothethethethistocol`null`visualizationwantwe`null`whatworkyouyour
AutoThresholdProcessor(Triangle)0,9ms80,3%4,14`null`and`null``null``null``null`easyeasy`null``null``null`male`null`engineering`null``null``null``null``null`to`null`easyand`null`engineering`null`first`null`formaletent`null``null``null``null`inin`null`in`null`ininmale`null`tent`null``null``null``null``null``null``null``null``null``null``null``null``null`tentstepsstudiothethethethetoto`null``null`wantwewelcomewhatworkyouryour
ThresholdProcessor(80%)0,8ms81,6%3,54`null`and`null`functionatebackback`null``null`ca`null`apple`null``null`connection`null`createate`null``null`driver`null`and`null``null`executionfirst`null``null`frameframefunction`null``null``null``null``null`create`null``null``null`ctatenextnext`null``null`frame`null``null``null``null`create`null`screen`null``null``null`studsstepsstudsthethethethetetalvariablevisualizationwallwie`null`what`null``null`zur
ThresholdAdaptiveProcessor(04_04)1,4ms88,2%3,89`null`end`null``null``null``null``null``null``null``null``null``null`conhguringconhguringconhguring`null``null`gata`null`to`null``null`end`null`engineering`null`for`null`for`null`row`null``null``null`rowigigincorporatetomtrodvcngigig`null`end`null``null`ofbasicsteps`null`projectprojectprojectprojectproject`null``null``null``null``null``null``null`thethethethetoto`null``null``null``null``null``null`foryouyou

Comparison data generated based on 76 tagged words.

editor_windows_position_006

Show table
ProcessorElapsedWERCER (avg)Image100aactivatestartupscreenalsoandbriefCEcontrolcrossdependeddisplayedDOKUeachediteditionelementeenergyetcfilefilterfilteredforfromfunctionshelphistorianinformationisitslanguagelinklistloadnameneedednetworkononlineoptionsotheroutputprojectpropertiespropertyproperyprovidedreadyrecipesreferencereportscreensselectshowsstandardstarttextthetimetotopologytotaltreevaluevariablesVBAVSTAwelcomewhatwindowwindowsyouzenon
ThresholdProcessor(20%)0,9ms55,6%2,03`null``null``null`alsoandbrief`null``null`cersdependeddisplayed`null`eacheditedition`null`energyetcfiefiefitteredforfromoptionshelp`null`informationistslanguagelinklink`null`nameneaded`null`ononlineoptionsother`null`projectpropertiespropertypropertyprovidedreadyrepl`null`replcersselectshowsstandardsr`null`thefieto`null`totreevalue`null``null``null`welcomewhatwindowwindowyouzenon
ThresholdProcessor(30%)0,9ms58,3%1,64`null``null``null`alsoandbrief`null`cortocrowedependeddisplayed`null`eacheditedition`null`energyetcfilefilefileforfromoptionshelp`null`informationisitelanguagelinklinkloadnameneededhetwarkononlineoptionsother`null`projectpropertiespropertypropertyprovidedreplracpes`null`reportscreensselectshowsstandardstat`null`thetmetotopologystattreevalueracpes`null``null``null`whatwindowwindowyouzenon
AutoThresholdProcessor(Kapur)1,1ms59,7%1,62`null``null``null`alsoandbrief`null``null`proydependeddisplayed`null`eacheditedition`null`energyetcflefilteredfilteredforfromfunctonshelp`null`informationisitslanguagelinklinkloadnameneededhetwarkononlineoptionsother`null`prosectpropertiespropertypropertyprovidedreeree`null`reportscreensselectshowsstandardstat`null`thetmetotopologygrotalreevalue`null``null``null`weicomewhatwindowswindowsyouzenon
ThresholdProcessor(40%)0,9ms62,5%2,15`null``null``null``null`ancbrief`null`cotcotdependeddepended`null`eacheditedit`null``null`etefilefilefilteredforfromfurcbonshelp`null`informationisitolanguage`null`isloadnameneedednetworkon`null``null`other`null`projectpropertiespropertypropertyprovectreplrepl`null`'report'screensselectshowsstandardar`null`thetimetotapatogytotaltreevalue`null``null``null`welcomewhatwindowwindowsyouzenon
ThresholdAdaptiveProcessor(20_20)0,9ms76,4%3,53`null``null``null`aseandie`null``null`thowsneeded`null``null`each`null``null``null``null``null`ie`null``null`frfr`null`help`null`informationists`null``null`isloadnameneededthorononethowsthor`null`projectpropertiespropertyproperty`null`load`null``null`report`null``null`thowsstandardwhattetheieto`null`tothetevalue`null``null``null``null`what`null`thowsyouon
ThresholdProcessor(50%)0,7ms90,3%4,65`null``null``null`ase`null``null``null`total`null``null``null``null``null``null``null``null``null``null``null``null``null`frfr`null`help`null``null`io`null``null``null``null`loadume`null``null``null``null``null``null``null`projectproperyproperypropery`null`load`null``null`'report'`null`select`null``null``null``null``null`umeio`null`total`null`ue`null``null``null`welcome`null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,6ms91,7%4,79`null``null``null``null``null`bet`null``null`cross`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`help`null``null``null``null`manager`null``null``null``null``null``null``null``null``null`treeoutputprojectpropertypropertyproperty`null``null``null``null``null`tree`null`cross`null``null`bet`null`tree`null``null``null`treeva`null``null``null``null``null``null``null``null``null`
ThresholdProcessor(60%)0,8ms93,1%4,90`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`help`null``null``null``null``null``null``null`load`null``null``null``null``null``null``null`gutautprojectpropertypropertyproperty`null`load`null``null``null``null``null``null``null`gutaut`null``null``null``null``null`load`null``null``null``null``null``null``null`windowwindow`null``null`
AutoThresholdProcessor(OTSU)1,1ms94,4%5,01`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`help`null``null``null``null``null``null``null`lead`null``null``null``null``null``null``null``null`projectpropertypropertyproperty`null`lead`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`windowwindow`null``null`
AutoThresholdProcessor(Triangle)0,9ms95,8%5,14`null``null``null``null``null``null``null`total`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`loadnm`null``null``null``null``null``null``null`projectprojectprojectproject`null`load`null``null`'report'`null``null``null``null``null``null``null``null``null``null`total`null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(70%)0,9ms95,8%5,06`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`mor`null``null`nelp`null``null``null``null``null``null``null`load`null``null`report`null``null``null`sger`null`projectprojectprojectproject`null`load`null``null`report`null``null``null``null`sger`null``null``null``null``null`load`null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms98,6%5,28`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`ii`null`manage`null``null``null``null``null``null``null``null``null``null``null`projectprojectprojectproject`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`eeau`null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms98,6%5,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`projectprojectprojectproject`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,43`null``null``null`so`null`re`null``null`yous`null``null``null``null`dia`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`jon`null``null``null``null``null``null``null``null``null`re`null``null``null``null``null`so`null``null``null``null``null`so`null``null`re`null``null``null``null``null``null``null``null`yousjon
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,36`null``null``null`wls`null`re`null`croscros`null``null``null``null``null``null``null``null``null``null``null``null``null`cros`null``null``null``null``null``null``null``null``null``null``null``null``null`nn`null``null``null``null``null``null``null``null``null`re`null``null``null`cros`null`cros`null``null``null``null``null``null``null``null`re`null``null``null``null``null``null``null``null``null`nn
ThresholdProcessor(80%)0,8ms100,0%5,71`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 72 tagged words.

etm_gantt_runtime_001

Show table
ProcessorElapsedWERCER (avg)ImageactiveaxisclipboardcolorcontinuecopycursorcurvedeletediagramexportfilterimportnameoffonplayprintprofilesrefreshrezoomsavvesettingsstoptexttitletotrendWIZ_VAR_10WIZ_VAR_11WIZ_VAR_12WIZ10zoom
ThresholdProcessor(50%)0,7ms81,8%3,36`null``null`clipboardcursor`null`copycursorcursor`null``null`export`null`exportname`null``null`lagtrend`null`reroamreroamtalesettingstotttaletotrend`null``null``null`10zoom
ThresholdProcessor(30%)0,9ms87,9%3,09tile`null`clipboardcolor`null`copycursorcune`null``null`exporttileimportsave`null``null``null`poet`null``null`zoomsavesetungsto`null`titletotrend`null`wu_var_11`null`10zoom
ThresholdProcessor(20%)0,9ms90,9%2,97acine`null`clipboardoostopcontinuecopycursorcure`null``null`exporttileimportname`null`oo`null`acine`null`refreshzoomsavesetiingsto`null`tileto`null``null``null``null`10zoom
AutoThresholdProcessor(Kapur)1,1ms90,9%4,18`null``null``null`cr`null`copy`null`cr`null``null`export`null`imponname`null``null``null`fin`null``null``null`namesettingsto`null`titotrendwuz_var_10`null``null`10`null`
ThresholdProcessor(70%)0,9ms93,9%5,15`null`wis`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`trendprofiles`null``null``null``null``null``null``null``null`trend`null``null``null`10`null`
ThresholdProcessor(80%)0,8ms97,0%4,85tile`null``null`color`null``null`color`null`let`null``null`tile`null``null``null``null``null``null``null``null``null``null``null``null`texttile`null`text`null``null``null`10`null`
ThresholdProcessor(40%)0,9ms97,0%3,45activeyaxisclipboardcolor`null`copycolorcune`null``null`export`null`exportname`null`ot`null`pont`null``null``null`se`null`to`null`taletotrendwiz_var_10`null`wiz_var_1210`null`
AutoThresholdProcessor(OTSU)1,1ms97,0%5,39`null`wis`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`trend`null``null``null``null``null``null``null``null``null`trend`null``null``null`10`null`
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%5,39`null``null``null``null``null``null``null``null``null``null``null``null``null`fae`null``null``null``null``null``null``null`fae`null`tottottottot`null``null``null``null``null``null`
ThresholdProcessor(60%)0,8ms100,0%4,88`null`ax`null``null``null``null``null`cune`null``null``null``null``null`nama`null``null``null`win`null``null``null`tale`null``null`twattale`null`trendw_var_10`null``null`10`null`
AutoThresholdProcessor(Triangle)0,9ms100,0%5,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`ged`null``null``null``null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 33 tagged words.

historian_assistent_001

Show table
ProcessorElapsedWERCER (avg)Imageaaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizedteditorthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(60%)0,8ms15,1%0,08`null`aggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
AutoThresholdProcessor(OTSU)1,1ms15,1%0,15`null`aggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimum`null`nowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(50%)0,7ms17,0%0,15`null`aggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimum`null`nowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(80%)0,8ms17,0%0,23`null`aggregatedanandarchivearchivesassistantaverage`null`basicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimum`null`nowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(30%)0,9ms17,0%0,15`null`aggregatedanandarchivearchivesassistantaverage`null`basicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(40%)0,9ms17,0%0,11`null`aggregatedanandarchivearchivesassistantaveragebaiebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(70%)0,9ms17,0%0,08`null`aggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(20%)0,9ms18,9%0,26`null`createanandarchivearchivesassistantaverage`null`basicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithyithoutyou
AutoThresholdProcessor(Kapur)1,1ms18,9%0,28`null`aggregatedanandarchivearchivesassistantaverage`null`basicbecancancertaincreatedataengineeringextendedforhelpifinlongermaximumminimum`null`nowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdAdaptiveProcessor(08_08)0,6ms30,2%0,77`null`aggregatedanandarchivearchivesassistantover`null`basicbecancancertain`null`dataengineeringextendedforhelpofinlongermaximumminimum`null``null`ofover`null`periodpressprocessrecordedrecordingserveshouldwant`null`summarizededitthethisthetotrendusedvaluevalueswantwithwithoutyou
ThresholdAdaptiveProcessor(24_24)0,4ms32,1%0,45`null`aggregatedanandarchivearchivesassistantaverage`null`basicbecancancertaincreatedataengineeringextendedforhelpisinlongermaximumminimum`null``null`ofoverpageperiodprocessprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithyou
AutoThresholdProcessor(Triangle)0,9ms47,2%1,17`null`aggregaananarchivearchivesassistantserve`null`basicbecancancelcancreatedataengineeringextendedforhelpafinlonger`null``null``null`nowof`null`pageperiodpresspressrecordedrecordingserveshouldstart`null``null`editthethetimeiotrendusedvaluevaluewantwithwithoutyou
ThresholdAdaptiveProcessor(12_12)0,6ms56,6%2,21`null`aggregatedinandarchivearchives`null`create`null``null`becancancertaincreatedata`null``null``null``null`ininlongermaximumminimum`null``null`ofover`null`periodprocessprocessrecordedrecording`null``null``null``null`summarizedperiodthethetime`null`and`null`valuevaluesand`null``null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms71,7%3,17`null`aggregated`null``null`archivearchivesassistantpage`null`basic`null``null``null`createcreate`null`engineering`null``null`help`null``null``null``null``null``null``null``null``null`page`null``null``null``null``null``null`shouldstart`null``null``null`thethisthe`null`the`null`page`null``null`withwithyou
ThresholdAdaptiveProcessor(04_04)1,4ms98,1%4,74`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`set`null``null``null``null``null``null``null`recordedrecordedset`null`set`null``null``null``null``null``null``null``null`set`null``null``null``null``null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%5,15`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 53 tagged words.

reporting-server_report-assistant_007

Show table
ProcessorElapsedWERCER (avg)ImageabsabsolutealarmsbatchhistorycollectionconsumptioncostsdatadatetimefilterdevelopmentDPAelementequipmentequipmentfilterfilterfilter()frequentgroupintegermediummiscmnestinglevelmodelmostnameOEEFactorparameterlistperprojectspropertiesrdlrelatedrelativereportreport1reportassistantsinglestringtoolstypevariablesZAD_CIPZAD_GBLZAD_MAIN
ThresholdProcessor(40%)0,9ms86,4%5,80abs`null``null``null`collectioncollectioncostsdate`null``null``null``null``null``null``null``null``null``null``null``null``null``null`deecostsdate`null``null`perpropertiesproperties`null`date`null`reportreportreport`null``null`took`null``null``null``null``null`
ThresholdProcessor(30%)0,9ms93,2%6,43as`null``null``null``null``null``null`dae`null``null``null`men`null``null``null``null``null``null``null``null``null``null`modelmtdae`null``null`per`null`report`null``null``null`reportreportreport`null``null`toletole`null``null``null``null`
AutoThresholdProcessor(Kapur)1,1ms93,2%6,45abs`null``null``null``null``null``null`date`null``null``null``null``null``null``null``null``null`gun`null``null``null``null`dee`null`date`null``null`per`null`report`null`date`null`reportreportreport`null``null`tookpe`null``null``null``null`
ThresholdProcessor(50%)0,7ms95,5%6,86`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`one`null``null``null``null``null``null`reportrdl`null``null`reportreportreport`null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms97,7%6,84`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`adl`null`bae`null``null``null``null`reportadl`null``null`reportreportreport`null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms97,7%6,98`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`report`null``null``null`reportreportreport`null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms97,7%6,68`null``null``null``null``null``null`tootsdas`null``null``null``null``null``null``null``null``null``null``null``null``null``null`adl`null``null``null``null``null``null`reportadl`null``null`reportreportreport`null``null`toots`null``null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(60%)0,8ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(80%)0,8ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(20%)0,9ms100,0%6,52`null``null``null`actor`null``null``null``null``null`elomanto`null`elomanto`null``null`fiterfiter`null``null`alter`null``null``null``null``null``null`actor`null``null``null``null``null`alter`null``null``null`asestant`null``null``null``null``null``null``null``null`
ThresholdProcessor(70%)0,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(OTSU)1,1ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 44 tagged words.

report_example_data-time_001

Show table
ProcessorElapsedWERCER (avg)Imagealarmarchivearchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivexrcancelfunctionhelpokoptionsparametersettingssyntaxwizard
ThresholdProcessor(30%)0,9ms21,1%0,16alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemrcancelfunctionhelpoloptionsparametersettingssyntaxwizard
ThresholdProcessor(20%)0,9ms26,3%0,63alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemr`null`function`null`okoptionsparametersettingssyntaxwizard
ThresholdProcessor(40%)0,9ms31,6%0,53alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemr`null`functionhelp`null`optionsparametersettingssyntaxwizard
ThresholdProcessor(50%)0,7ms36,8%0,74alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveexr`null`function`null``null`optionsparametersettingssyntaxwizard
AutoThresholdProcessor(OTSU)1,1ms36,8%0,74alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveexr`null`function`null``null`optionsparametersettingssyntaxwizard
ThresholdProcessor(70%)0,9ms47,4%1,79alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemr`null`function`null``null`optionsparameter`null``null``null`
ThresholdProcessor(60%)0,8ms73,7%2,32alarmarchivemarchiveexarchivemarchivemarchivemarchiveexrarchivemarchivemarchiveexr`null`function`null``null``null`parameter`null``null`wizard
ThresholdAdaptiveProcessor(24_24)0,4ms89,5%6,68`null``null``null``null``null``null``null``null``null``null``null`function`null``null``null``null``null``null`wizard
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Kapur)0,8ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(80%)0,8ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)1,3ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 19 tagged words.

runtime_function_create_002

Show table
ProcessorElapsedWERCER (avg)Imageactionadministrationcanceldefaultdefineddialogenginefreelyfromhelpinlastlinkedloadnamenookopenprofileprofilessaveservicethevariable
AutoThresholdProcessor(OTSU)1,1ms8,3%0,33actionadministration`null`defaultdefineddialogenginefreelyfromhelpinlastlinkedloadnameno`null`openprofileprofilessaveservicethevariable
ThresholdProcessor(70%)0,9ms12,5%0,46actionadministration`null`defaultdefineddialogenginefreelyfrom`null`inlastlinkedloadnamenoopenprofileprofilessaveservicethevariable
AutoThresholdProcessor(Kapur)1,1ms20,8%0,67actionadministration`null`defineddefineddialogenginefreelyfrom`null`inlastlinkedloadnameno`null`openprofileprofilessaveservicethevariable
ThresholdProcessor(60%)0,8ms25,0%0,54actionadministration`null`defaultdefineddialogenginefreelyfromhelpinlastlinkedoloadname`null``null`openprofileprofileshameservicethevariable
ThresholdProcessor(80%)0,8ms25,0%0,50actionadministration`null`defaultdefineddialogenginefreelyfrom`null`inlastlinkedloadnameno`null`openprofileprofilessaveservicethevariable
ThresholdProcessor(50%)0,7ms50,0%2,17actionadministration`null``null`enginedialogengine`null``null`helpin`null``null`loadsave`null``null`penprofileprofilessaveservicethe`null`
ThresholdAdaptiveProcessor(20_20)0,9ms54,2%1,38actionadministrationcancet`null`inkedalogengine`null`fromhelpin`null`inked`null`namenooxopenprofilesprofilesnameservicethevariable
ThresholdAdaptiveProcessor(24_24)0,4ms58,3%2,33`null`administration`null``null`inkeddialogengine`null``null``null`in`null`linked`null``null`no`null`openprofilesprofiles`null`servicethevariable
ThresholdAdaptiveProcessor(16_16)0,5ms58,3%2,12`null`administration`null`defautdefautdialogengine`null`from`null`in`null``null`loadsavelo`null`openprofileprofilesaveservicethe`null`
ThresholdProcessor(40%)0,9ms58,3%2,58actionadministration`null``null`enginedialogengine`null``null`helpin`null``null``null``null``null``null`openprofileprofile`null`servicethe`null`
ThresholdProcessor(30%)1,2ms62,5%2,88`null``null`cancel`null`prefilesdialogengine`null``null`helpim`null``null``null`save`null`okopenprofileprefilessaveservicethe`null`
ThresholdAdaptiveProcessor(08_08)0,6ms66,7%2,92`null``null``null`defineddefined`null`enginefreelyfrom`null``null``null``null``null`name`null``null``null`profilesprofilestameservice`null`variable
AutoThresholdProcessor(Triangle)0,9ms66,7%3,00`null`administration`null``null`enginedialogengine`null``null``null`in`null``null``null``null``null``null`openprofilesprofiles`null`servicethe`null`
ThresholdAdaptiveProcessor(12_12)0,6ms70,8%2,54`null`ministration`null``null`ined`null`engine`null`from`null`inlastined`null``null``null``null`enprofilesprofiles`null`servicethevariable
ThresholdProcessor(20%)0,9ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,38`null``null``null``null``null``null``null``null``null`ep`null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 24 tagged words.

straton_runtime_configuration_001

Show table
ProcessorElapsedWERCER (avg)Image012007009000advancedapplyboxbycancelcoldcommunicationcyclicallydatadelaydocumentseventfilesforgeneralhelphotloadmodenamenookopenpathportprioritypublicrealredundancyrestartretainrtssettingsstandardstartstartupsteppingstorestoringtestthistimeusersvariableszenon_projects
ThresholdProcessor(40%)0,9ms28,0%1,12`null`1200`null`9000advancedapplyboxby`null`coldcommunicationcyclicallydatadelay`null`eventtimeforgeneralhelphotloadmodenameno`null`openpathportpriority`null`realredundancyrestartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistime`null`variables`null`
ThresholdProcessor(20%)0,9ms34,0%1,36`null``null``null``null`advanced`null`boxbycancelcoldcommunicationcyclicallydatadelay`null`eventtimeforgeneral`null`hotjoadmodenameno`null`openpathportpriority`null`realredundancyrestartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistime`null`variables`null`
ThresholdProcessor(30%)0,9ms34,0%1,38`null`9000`null`9000advanced`null`boxby`null`coldcommunicationyicyclicallydatadelay`null`eventtimeforgeneral`null`hotloadmodenameno`null`openpathportpriority`null`realredundancyrestartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistime`null`variables`null`
ThresholdProcessor(50%)0,7ms36,0%1,28`null`9000`null`9000advanced`null`boxby`null`coldcommunicationcyclicallydatadelay`null`eventtimeforgeneral`null`hotoadmodenamena`null`openpathportpriority`null`realredundancyrestartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistimeusersvariables`null`
AutoThresholdProcessor(OTSU)1,1ms36,0%1,36`null`20d`null`9000advanced`null`boxby`null`coldcommunicationcyclicallydatadelay`null`eventtimeforgeneral`null`hotoadmodenameno`null`openpathportpriority`null`realredundancyrestartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistime`null`variables`null`
ThresholdProcessor(60%)0,8ms38,0%1,62`null`9000`null`9000`null``null`boxby`null`coldcommunicationcyclicallydatadelay`null`eventieforgeneral`null`hotoadmodenameno`null`openpathportpriority`null`real`null`restartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistimeusersvariables`null`
ThresholdProcessor(70%)0,9ms38,0%1,64`null`9000`null`9000advanced`null`boxby`null`cold`null`cyclicallydatadelay`null`eventtimeforgeneral`null`hotfoadmodenameno`null`openpathportpriorty`null`realredundancyrestartretain`null``null`settingsstandardstartstartupsteppingstorestoring`null`thistime`null`variables`null`
AutoThresholdProcessor(Kapur)1,1ms52,0%2,18`null``null``null``null``null``null`boxby`null`cold`null`cyclicallydatadelay`null`openisforreal`null`hotcoldmodenameno`null`openpathhotpriorty`null`real`null`restartretain`null``null`steppingstartstartstartupsteppingstorestoringtesthistimecausersvariables_projects
ThresholdProcessor(80%)0,8ms54,0%2,58`null``null``null``null``null``null`boxby`null`cold`null`cyckcallydatadelay`null`openfiforreal`null`hotfoadmodenameno`null`openpathfor`null``null`real`null`restartretain`null``null`steppingstartstartstartsteppingstorestoring`null`thistimeusersvariables`null`
ThresholdAdaptiveProcessor(16_16)0,5ms58,0%2,62`null``null``null``null``null``null`boxby`null`cold`null`cyclicallydatarea`null`opentimefor`null``null``null`oadmodenameno`null`openpathforpriority`null`rea`null`startretain`null``null`storingstartstartstartsteppingstorestoring`null`thistimeusersvariables`null`
ThresholdAdaptiveProcessor(08_08)0,6ms60,0%2,76`null``null``null``null``null``null`boxby`null``null``null`cyclicallydatareal`null`eventtime`null`real`null``null``null`modenameno`null`opendataportpriority`null`real`null`startretain`null``null`steppingstandardstartstartsteppingstorestepping`null`thistime`null`variables`null`
ThresholdAdaptiveProcessor(12_12)0,6ms76,0%3,42`null``null``null``null``null``null``null`by`null``null``null`cyciicallydatareal`null``null`timeforreal`null``null``null``null`name`null``null``null`pathforpriority`null`real`null`retainretain`null``null`storing`null`storestoringstoringstorestoring`null``null`time`null`variables`null`
ThresholdAdaptiveProcessor(20_20)0,9ms78,0%3,70`null``null``null``null``null``null``null`by`null``null``null`cyclicallydatahelp`null``null``null`for`null`help`null``null``null`name`null``null``null`pathfor`null``null``null``null`retainretain`null``null`storing`null`storestoringstoringstorestoring`null``null`name`null`variables`null`
ThresholdAdaptiveProcessor(04_04)1,4ms80,0%3,70`null``null``null``null``null``null`boxby`null``null``null``null`datadata`null``null``null``null``null``null``null``null`modenaa`null``null``null`dataportport`null``null``null`stattretain`null``null`stangstandardstattstattstangstorestang`null`this`null``null`variables`null`
ThresholdAdaptiveProcessor(24_24)0,4ms84,0%3,76`null``null``null``null``null``null``null``null``null``null``null`cyckcatydatareal`null``null`timeforreal`null``null``null``null`time`null``null``null`pathforpriorty`null`real`null`retainretain`null``null`storing`null`storestoringstoringstorestoring`null``null`time`null``null``null`
AutoThresholdProcessor(Triangle)0,9ms98,0%4,66`null``null``null``null``null``null``null``null``null`coll`null``null`datdat`null`ant`null``null``null``null``null``null`mademade`null``null``null`dat`null``null``null``null``null``null``null``null``null`stepping`null`dat`null`stepping`null`stepping`null``null``null``null``null``null`

Comparison data generated based on 50 tagged words.

worldview_zoom_steps_001

Show table
ProcessorElapsedWERCER (avg)Image%0100canceldeleteeditexistinghelpnewokstepstepstozoom
ThresholdProcessor(30%)1,4ms28,6%0,64`null``null`100canceldelete`null`existinghelp`null`okstepstepstozoom
ThresholdProcessor(20%)0,7ms42,9%1,36`null``null`100cancel`null``null`existing`null``null`okstepstepstozoom
ThresholdProcessor(70%)0,8ms57,1%1,93`null``null`100`null``null``null`existing`null``null``null`stepstepstozoom
ThresholdProcessor(40%)0,9ms64,3%2,14`null``null``null``null``null``null`existing`null``null``null`stepstepstozoom
ThresholdAdaptiveProcessor(12_12)0,6ms85,7%2,71`null``null`100`null``null``null``null``null``null``null`stepssteps`null`zoom
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,6ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Kapur)0,7ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(OTSU)0,7ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(50%)0,7ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(80%)0,8ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(60%)1,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 14 tagged words.

zrs_MetadataEditor_variables_001

Show table
ProcessorElapsedWERCER (avg)ImageapplyarchivesbottlechangedclassclassesclearconnectedconveyorCurcurvesdepalletizerdescriptionediteditorefficiencyequipmenteventfilefillerfilteredglassgrategroupshelpinspectorlabelerlinelocalmetadatamodelingmodelsnameonoperationpackerpasteurizerprojectreadyreferencereportingselectedStatetestenvtototalunpackerusersvariablesvisualwasherWS
ThresholdAdaptiveProcessor(12_12)0,6ms86,5%4,81`null``null`totelchanged`null`changedleselected`null``null``null``null``null``null``null``null``null``null`lefilteredfiltered`null``null``null`hep`null``null`letotel`null``null`totel`null`on`null``null``null``null`ready`null`reportingselectedtoteltoteltatotel`null``null`variables`null``null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms90,4%5,60`null``null`totalchanged`null`changed`null`selected`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`total`null``null``null``null`on`null``null``null``null``null``null`reportingselected`null``null``null`total`null``null``null``null``null``null`
ThresholdProcessor(60%)0,8ms92,3%5,12`null``null`totalchanged`null`changedserelected`null`sur`null``null``null``null``null``null``null``null`ine`null``null``null`rate`null``null``null``null`inetotal`null``null``null`rateonoper`null``null``null`ready`null``null`electedstate`null`tltotal`null`ser`null``null`ser`null`
ThresholdProcessor(70%)0,9ms92,3%4,13`null`varabiesbottechangedglassglasscarchanged`null``null`ureverabler`null``null``null``null``null`everttive`null``null`glassstategroups`null``null`verablerinetotal`null``null``null`meonoperaton`null``null``null`ready`null`reportingslatestatebettetototal`null`unevarabies`null``null``null`
AutoThresholdProcessor(OTSU)1,1ms92,3%4,98`null``null``null`changedcamecamesarconnected`null`surcur`null``null`ditor`null``null``null``null``null``null``null`state`null``null``null`vorablerune`null``null``null`meuscameon`null``null``null``null`ready`null``null`electedstate`null`totor`null`survorabler`null``null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms94,2%5,31`null``null`totalchanged`null`changed`null`changed`null``null`core`null``null``null``null``null``null``null`site`null``null``null`sate`null``null``null`betesitetotal`null``null``null`sate`null``null``null``null``null`ready`null``null``null`sateste`null`total`null``null`variables`null``null``null`
ThresholdProcessor(80%)0,8ms96,2%4,04alcarvesbottechangedclassesclassescarconnectedcovecurcarvesbeatie`null`it`null``null``null`evertfiefie`null`classesstate`null`help`null``null`tinecar`null``null`molwsnameonbeatie`null``null``null`beate`null``null`selectedstatestetoal`null`hoesvariabler`null``null``null`
ThresholdProcessor(40%)0,9ms98,1%6,17`null``null``null``null``null``null``null``null``null``null``null``null``null`editoreditor`null``null``null``null``null``null``null``null``null``null``null``null``null``null`mutadata`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%6,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`ll`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%6,23`null``null``null``null``null``null`cr`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`sate`null``null``null``null``null``null``null``null``null`sate`null``null``null``null``null``null``null``null``null`sate`null``null``null``null`se`null``null``null``null`
ThresholdProcessor(50%)0,7ms100,0%6,33`null``null``null``null``null``null`dead`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`wre`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`dead`null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(20%)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(30%)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Kapur)1,1ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%6,25`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`nite`null``null``null`nite`null``null``null``null`nite`null``null``null``null`nitein`null``null``null``null``null``null``null``null`nite`null``null``null``null``null``null``null``null``null`

Comparison data generated based on 52 tagged words.

zrs_REPORTS_EfficencyClass_009

Show table
ProcessorElapsedWERCER (avg)Image1aallowananalysisanalyzerandarchivesbasedbecancancelcenclasscomcontainscopadatacostscurrentdatadefineddiagramefficiencyequipmentEURforformulaformulasfromgroupshigherhistorichourinislimitlowermodelmodelsnamenewnormalisedokonorpageperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluewwwzenon
ThresholdProcessor(30%)0,9ms29,7%0,67`null``null`allowananalysisanalysisandarchivesbasedbecancancelcanclass`null`containsdatacostscurrantdatadefineddiagramefficiencyequipment`null`forformulaformulasforgroups`null`historichourinis`null`lowermodelmodelsnamanewnormalisedokonor`null`performperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovalın`null`on
ThresholdProcessor(20%)0,9ms32,8%0,66`null``null`allowananalysisanalysisandarchivesbasedbecancancelcanclass`null`containsdatacosts`null`datadefineddiagramefficiencyequipment`null`forformulaformulasforgroupshigherhistorichourinislouttowermodelmodelsnamenewnomalisedooonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistoname`null`on
AutoThresholdProcessor(OTSU)1,1ms35,9%1,02`null``null`allowananalysisanalysisandarchivesbasedbecancancanclass`null`containsdatacosts`null`datadefineddiagramefficiencyequipment`null`forformulaformulasforgroups`null`historichourinis`null`ormodelmodels`null``null`normalisedoronor`null`performperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethisto`null``null`on
ThresholdProcessor(70%)0,9ms39,1%1,03`null``null`allowananalysisanalysisandarchivesbasedbecancanfenclassmomcontainsdatacosts`null`datadefineddiagramefficiencyequipment`null`forformulaformulasmomgroups`null`historichourinis`null`formodelmodels`null``null`formulasoronorpreeperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethisto`null``null`fen
ThresholdAdaptiveProcessor(20_20)0,9ms43,8%1,17`null``null`allowananalysisanalysisandarchivesbasedbecananalcanclass`null`containsdataclass`null`datadefineddiagramefficiencyequipmer`null`orformulaformulas`null`groups`null`historicorinis`null`ormodelmodels`null``null`normalisedoronor`null`performperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethisto`null``null`on
ThresholdProcessor(80%)0,8ms46,9%1,47`null``null`allowananalysisanalysisandarchibasedbecancanbecanclass`null`containsdatacosts`null`datadefineddataefficiency`null``null`forformulaformulasforgroups`null`historichourinis`null`ormodelmodels`null``null`formulasofonor`null`performperiodpreviewpreviewreportreportsshown`null`templatetemplatesthatthethemethistocanbe`null`on
ThresholdProcessor(40%)0,9ms48,4%0,47`null``null`allowananalysisanalysisandarchivesbasedbecancancelcanclass`null`cortainsdatacostscurrantdatadefineddiagramefficiencyequipment`null`forformulaformulasforgroupshigherhistorichourinisimitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovalua`null`on
ThresholdAdaptiveProcessor(24_24)0,4ms50,0%1,27`null``null`allowananalysisanalysisanarchivesbasedbecancancanclass`null`containsdatalass`null`datadefineddataefficiencyequipment`null`forformulaformulasforgroups`null`hisoricorinis`null`modelmodelmodels`null``null`nommalisedoronor`null`performperiodperiodprocessedreportreportsshowntablestemplatetemplatesthatthethemethisto`null``null`ze
AutoThresholdProcessor(Kapur)1,1ms50,0%0,58`null``null`allowananalysisanalysisandarchivesbasedbecancancelmenclass`null`containsdatacosts`null`datadefineddiagramefficiencyequipmert`null`forformulaformulasfromgroupshigherhistorichourinisinitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistoname`null`men
ThresholdAdaptiveProcessor(16_16)0,5ms51,6%1,58`null``null``null`an`null``null`andarchivesbasedbecancansenclass`null`costsdatacosts`null`datadefineddiagramefficiencyequipment`null`orformulaformutas`null`groups`null`historichourinisliemodelmodelmodels`null``null`formutasoronor`null`periodperiodpreviewprocessedreportreportsshowntablestemplatetemplatethisthethethistolie`null`sen
ThresholdAdaptiveProcessor(12_12)0,6ms51,6%1,25`null``null`allowananalysisanalysisandarchivesbasedbecancancanclass`null`containsdataclass`null`datadefineddiagramefficiencyequipment`null`orformulaformulas`null`groupsihehistoricorinis`null`modelmodelmodels`null``null`normalisedoronor`null`periodperiodperiodprocessedreportreportshowntablestemplatetemplatesthatthethemeisto`null``null`ienry
ThresholdProcessor(60%)0,8ms51,6%0,52`null``null`allowananalysisanalysisandarchivesbasedbecancancelrenclass`null`containsdatacostscurrentdatadefineddiagramefficiencyequipment`null`forformulaformulasfromgroupshigheshistorichourinis`null`lowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovanıo`null`ren
ThresholdAdaptiveProcessor(08_08)0,6ms62,5%1,84`null``null`llan`null``null`and`null`basedbecancancanclass`null``null`datadasscurrentdatadefineddiagramefficiencycurrent`null`orformulasformulas`null`groups`null`historiceurinis`null`modelmodelmodelname`null`normalisedononornameperiodperiodperiodprocessedreportreportshown`null`templatetemplatethethethethetoname`null`on
ThresholdProcessor(50%)0,7ms62,5%0,59`null``null`allowananalysisanalysisandarchivesbasedbecanconcdenclass`null`containsdatacostscurdatadefineddiagramefficiencyequipment`null`forformulaformulasforgroupshigherhistorichourinisbitlowermodelmodelsnamenewnormalisedoronornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovalua`null`den
ThresholdAdaptiveProcessor(04_04)1,4ms93,8%4,36`null``null``null``null``null``null``null``null``null``null``null``null``null`class`null``null`dataclass`null`data`null`data`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`report`null``null``null`reportreport`null``null`templatetemplatedat`null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%5,16`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 64 tagged words.

zrs_REPORTS_extended-analysis_017

Show table
ProcessorElapsedWERCER (avg)Image1absoluteaggregatedaggregationanalysisanalyzerandareassociatebasedcalcculatecancelchartscomconsumptioncopadatacounterscreateCYCLICdataDATAdistributionENERGYequipmentextendedfillerfilteringforfromgroupgroupshistorianiniskwhlabellerMACHINEmodelingnamenewofokonpackerpageperformperiodPMpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosthosetrendtwotypesvaluesvariablewithwwwZAD_GBLzenon
ThresholdProcessor(30%)0,9ms31,6%0,84`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelcharts`null`consumpeondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfilteringforforgroupgroupshistorianinis`null`labeller`null`modelingnamenewofokonpackernameperformperiod`null`previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdProcessor(60%)0,8ms35,5%0,93`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelcharts`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfilteringforforgroupgroupshistorianinis`null`labeler`null`modelingarenewofokonpackerareperformperiod`null`previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`on
AutoThresholdProcessor(Kapur)1,1ms36,8%1,04`null``null`aggregatedaggregationanalysisanalysisandare`null`basedcalculatecancelcharts`null`commamptondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfilteringforforgroupgroupshistorianinis`null`labeller`null`modelingnamenewofokonpackernameperformperiod`null`previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdProcessor(20%)0,9ms38,2%0,99`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelcharts`null`productionoatacounterscreate`null`data`null`distribution`null`equipmentexterdedfillerfilteringforforgroupgroupshistorianinis`null`filler`null`modelingarenewofokonpackerareperformperiod`null`previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdProcessor(50%)0,7ms40,8%0,83`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateconcchartscomconsumptiondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfilteringforcomgroupgroupshistorianinis`null`labeller`null`modelingnamenewofononpackernameperformperiod`null`previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`on
AutoThresholdProcessor(OTSU)1,1ms40,8%1,17`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculate`null`charts`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfiteringforforgroupgroupshistorianinis`null`filler`null`modelingare`null`ofononpackerareperformperiod`null`periodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdAdaptiveProcessor(16_16)0,5ms42,1%1,18`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculate`null`charts`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextended`null`fiteringforfongroupgroupshistorianinis`null`labeller`null`modelingarenewofononpackerareperformperform`null`previewpriceproductionrelativereportreportsselectionshownstandardtypestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`fon
ThresholdAdaptiveProcessor(20_20)0,9ms42,1%1,42`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedassociate`null`charts`null`productiondatacounterscreate`null`data`null`distribution`null`equipment`null`fillerfiteringforforgroupgroupshistorianinis`null`labeller`null`fiteringare`null`ofofon`null`areperformperiod`null`periodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdProcessor(40%)0,9ms42,1%0,91`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelcharts`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfilteringforforgroupgroupshistorianinis`null`labeller`null`modelingnamenewofofonpackernameperformperiod`null`previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdAdaptiveProcessor(24_24)0,4ms43,4%1,26`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculate`null`charts`null`productiondatacounterscreate`null`data`null`distribution`null`equipment`null`fillerfillerforforgroupgrouphistorianinis`null`laboller`null`modelingmeneofononpackerareperformperiod`null`periodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdProcessor(70%)0,9ms43,4%1,20`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculate`null`charts`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfikeringforforgroupgroupshistorianinis`null`tables`null`modelingare`null`ofofonpackerareperformpesiod`null`pesiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdProcessor(80%)0,8ms46,1%1,59`null``null`aggregatedaggregatedanalysisanalysisandare`null`basedcalculate`null`charts`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextended`null`fiteringforforgroupsgroupshistorianinis`null`tables`null`modelingare`null`ofononpackerareperformperiod`null`periodpriceproductioncreatereportreportsproductionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null`on
ThresholdAdaptiveProcessor(08_08)0,6ms55,3%2,21`null``null`aggregatedaggregationanalysisanalysisand`null``null`basedcreate`null`charts`null`productiondata`null`create`null`data`null`distribution`null`equipment`null``null`filtering`null``null`groupgrouphistorianinis`null`labeller`null``null``null``null`ofononpacker`null`performprice`null`pricepriceproductioncreatereportreportselectionshown`null`valuestemplatetemplatesthatthethemethemethisthosethosethetwotypesvaluesvariablewith`null``null`on
ThresholdAdaptiveProcessor(12_12)0,6ms55,3%1,72`null`associateaggregatedaggregationanalysisanalysisandareassociatebetemplate`null`that`null`productiondatacounterscreate`null`data`null`distribution`null`equipmentextendedfillerfiller`null``null`groupgrouphistorian`null``null``null`filler`null``null`arenewofofofpackerareperformperform`null`createpriceproductionrelativereportreportselectionthosestandardtypestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewith`null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms89,5%4,79`null``null``null``null``null``null``null``null``null`basedtemplate`null``null``null``null`data`null``null``null`data`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`ofofof`null``null`report`null``null``null``null``null``null`reportreport`null``null``null``null`templatetemplatethis`null`trendtrendthisthisthistrend`null`this`null`variable`null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 76 tagged words.

zrs_ZAMS_3rd-connector_014

Show table
ProcessorElapsedWERCER (avg)Image3rdarchiveassignedbottlecancelconnectorcycledatabasedatasourcedddescriptionequipmentforglassgroupshhidentificationlinemediametadatammnewnextokpartyplantpreviousprojectssthetimetotalvariablesvisualname
ThresholdProcessor(20%)0,9ms32,4%1,033rdarchiveassignedbottle`null`connectorcycledatabasesourcedddescriptionequipmentforglassgroupshhidentificationline`null`metadatammnewnew`null`partyparty`null`project`null`thetimebottlevariablesvisualname
AutoThresholdProcessor(Kapur)1,1ms35,3%0,973rdarchiveassignedbottle`null`connectorcycledatabasesource`null`descriptionequipmentforglassgroupsheidentificationlinemediametadata`null`newnewokpartyglass`null`project`null`thetimedatavariablesvisualname
ThresholdProcessor(30%)0,9ms41,2%1,413rdarchiveassignedbottle`null`connectorcycledatabasesource`null`descriptionequipmentforglassgroupshhdescriptionlinemediametadata`null`newnew`null`partyplant`null`project`null`thetimebottlevariables`null`
ThresholdProcessor(40%)0,9ms61,8%2,41`null``null`assigned`null``null``null`cycledatasource`null`descriptionequipment`null`ssgroups`null`identificationtimemediametadatamm`null``null``null`data`null``null`projectss`null`timedatavariablesvisualname
ThresholdAdaptiveProcessor(24_24)0,4ms67,6%3,853rdarchive`null`bottle`null`connector`null`databasedatabase`null``null``null`forglass`null``null``null`line`null``null``null`newnew`null`partyglass`null``null``null`thethebottle`null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms67,6%3,793rdarchive`null`botte`null`connector`null`databasedatabase`null``null``null`forglass`null``null``null`line`null``null``null`newnew`null`partyplant`null``null``null`thelinebotte`null``null`
ThresholdAdaptiveProcessor(08_08)0,6ms88,2%5,00`null``null`assigned`null``null``null``null``null``null``null``null`equipment`null``null`groups`null``null``null``null``null``null``null``null``null``null``null``null`project`null``null``null``null``null``null`
ThresholdProcessor(70%)0,9ms88,2%5,00`null``null``null`total`null``null``null``null``null``null``null``null`foplant`null`hh`null``null`mediamedia`null``null``null``null`plantplant`null``null``null``null``null`total`null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms88,2%4,79`null``null`assigned`null``null``null``null``null``null``null``null`equipment`null``null`groups`null`identification`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(OTSU)1,1ms91,2%4,91`null``null``null`total`null``null``null``null``null``null``null``null``null`plant`null``null``null`tiemediamedia`null``null``null``null`plantplant`null``null``null`tietietotal`null``null`
ThresholdProcessor(50%)0,7ms94,1%5,35`null``null``null``null``null``null``null``null``null``null``null``null``null`plant`null``null``null``null`mediamedia`null``null``null``null`plantplant`null``null``null``null``null``null``null``null`
ThresholdProcessor(60%)0,8ms97,1%5,62`null``null``null``null``null``null``null``null``null``null``null``null``null`plant`null``null``null``null``null``null``null``null``null``null`plantplant`null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(80%)0,8ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 34 tagged words.

zrs_ZAMS_filter-alarmgroup_001

Show table
ProcessorElapsedWERCER (avg)Imagealarmalldeselectemergencyenableeqauipmentexternalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(40%)0,9ms13,3%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(50%)0,7ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(30%)0,9ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(20%)0,9ms26,7%0,40alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilterselectstaticstop
ThresholdProcessor(60%)0,8ms40,0%1,33alarm`null``null`emergencyenableequipmentextemalfailuregroupmachineprefilterprefiltering`null`staticstop
ThresholdAdaptiveProcessor(12_12)0,6ms46,7%1,53alarm`null``null`emergencyenableequipmentexémalfailuregroupmachineprefilterprefittering`null`staticstop
AutoThresholdProcessor(OTSU)1,1ms46,7%1,33alarm`null``null`emergencyenableequipmentextemalfailuregroupmachineprefilterprefiltering`null`staticstop
ThresholdAdaptiveProcessor(16_16)0,5ms53,3%1,53alarm`null``null`emergencyenableequipmentetemalfailuregroupmachineprefiterprefittering`null`staticstop
ThresholdProcessor(80%)0,8ms53,3%1,80alarm`null``null`emergencyenableequipmentextemalfailuregroupmachineprefikerprefiker`null`staticstop
ThresholdProcessor(70%)0,9ms53,3%1,47alarm`null``null`emergencyenableequipmentextemalfailuregroupmachineprefitterprefittering`null`staticstop
ThresholdAdaptiveProcessor(24_24)0,4ms60,0%1,47alarm`null``null`emergencyenableequipmentextemalfailuregroupmachineprefitterprefitering`null`staticstop
ThresholdAdaptiveProcessor(20_20)0,9ms60,0%1,40alarm`null``null`emergencyenableequipmenteternalfailuregroupmachineprefiterprefitering`null`staticstop
AutoThresholdProcessor(Kapur)1,1ms60,0%1,80alarm`null``null`emergencyenableequipmentextemalfairegroupmachineprefiterprefiter`null`staticstop
ThresholdAdaptiveProcessor(08_08)0,6ms73,3%3,33alarm`null``null``null`enableequipment`null`failuregroupmachineprefitteringprefittering`null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms80,0%4,93`null``null``null``null``null``null``null`failuregroupmachinepretitenngpretitenng`null``null``null`
AutoThresholdProcessor(Triangle)0,9ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 15 tagged words.

zrs_ZAMS_OLEDB-server_001

Show table
ProcessorElapsedWERCER (avg)ImageaaccessadadbcadhocallallowappliedarecancelcdCDSBG036connectiondbdisallowdriversdynamicenableforgeneralharaldrhelpindexinprocesslevellikelinkedmicrosoftmynamenestednonokoleonlyoperatoroptionspageparameterpathpropertiesproviderqueriesreadyscriptselectserverserverssqlsupportsthatthesethistotransactedupdatesuseusingviewZA2zero
ThresholdProcessor(50%)0,7ms39,3%1,05`null`accessbdadhocadhocallallowappliedare`null`cd`null`connection`null`disallowserversdynamicenable`null`general`null`hepindexinprocesslevellikelinked`null``null`namenestednon`null``null`onlyoperatoroptionspageparameterpathpropertiesproviderquenesready`null`selectserverservers`null`supportsthatthesethistotransactedupdatesuseusingview`null`zero
AutoThresholdProcessor(OTSU)1,1ms42,6%1,62`null`accessasadhocadhocallallow`null`are`null``null``null`connection`null`disallowserversdynamic`null``null`level`null``null`indexinprocesslevellikelinked`null``null`arenestednon`null``null`onlyoperatoroptionspathparameterpathqueriesproviderqueriesready`null``null`serverservers`null`supportsthatthesethistotransactedupdatesuseusingview`null`zero
ThresholdProcessor(60%)0,8ms44,3%1,51`null`accesscdadhocadhocallalowappliedare`null`cd`null`connection`null`disallowserversoynamic`null``null`level`null``null`indexinprocesslevellikelinked`null``null`arenestednon`null``null`onlyoperatoroptionspathparameterpathqueriesproviderqueriesready`null``null`serverservers`null`supportsthatthesethistotransactedupdatesuseusingview`null`zero
ThresholdProcessor(40%)0,9ms44,3%1,34`null`accessasadhocadhocallallowappliedare`null``null``null`connection`null`disallowserversdynamicname`null`general`null``null`indexinprocesslevellinkedlinked`null``null`namenestednon`null``null`onlyoperatoroptionspageparameterpathprogressproviderquenesready`null`selectaserverservers`null`supportsthatthesethistotransactedupdatesuseusingmew`null`zero
ThresholdProcessor(70%)0,9ms44,3%1,56`null`accessasadhocadhocallallowappliedare`null``null``null`options`null`disallowserversdynamicenable`null`level`null``null`indexinprocesslevellikelinked`null`my_namenestednon`null``null`onlyoperatoroptionsnameparameterpathqueriesproviderqueries`null``null``null`serverserverssqlsupportsthatthesethistotransactedupdatesuseusing`null``null`zero
AutoThresholdProcessor(Kapur)1,1ms45,9%1,59`null`accessbdadhocadhocallallowappliedare`null`bd`null`options`null`disallowserversdynamicenable`null`general`null`hebindexinprocesslevellinkedlinked`null``null`namenestednon`null``null`onlyoperatoroptionsareparameterpathqueriesproviderqueries`null``null``null`serverservers`null`supportsthatthesethistotransactedupdatesuseuse`null``null`zero
ThresholdProcessor(30%)0,9ms49,2%0,92`null`accessasodbcadnocallallowspalıedarecancel`null``null`connectondbdisalowserversdynamicenableforlevel`null`helpindexinprocesslevellxelinkedmicrosoft`null`namenestednonokoleontyoperatoroptionspageparameterpathpropertiesproviderquenesready`null`selectserverservers`null`supportsthatthesethistotransactedupdatesuseusing`null``null`zero
ThresholdProcessor(80%)0,8ms55,7%2,13`null`accessbdadhocadhocallallow`null`are`null`bd`null`options`null`disallowservers`null``null``null`level`null``null`indexinprocesslevellikeinked`null``null`arenestednon`null``null`onlyoperatoroptionsareoperatorpathqueriesproviderqueries`null``null``null`serversservers`null`supportsthatthesethistotransactedupdatesuseuse`null``null`zero
ThresholdAdaptiveProcessor(12_12)0,6ms67,2%2,52`null`access`null`odbcachocallallappliedare`null``null``null`operctordb`null`drivers`null``null`for`null``null``null`inkedaccess`null``null`inkedmicrosoft`null`are`null`non`null`oleoleoperctoroptionsareprovider`null`supportsproviderservers`null``null``null`serversservers`null`supportsthatthesethistotrensactedupdatesuseusing`null``null``null`
ThresholdProcessor(20%)0,9ms72,1%2,49`null``null`alodbcodbcalprow`null`arecancelco`null`connecbondb`null`serversdynamicnameforgereral`null`heslinked`null`lrxedlinkedlinkedmicrosoft`null`name`null``null`okoleons`null`optionspageparameterpageprowderproviderquenes`null``null`selectserverservers`null``null`thetthesethiscocancelpage`null`using`null``null`cer
ThresholdAdaptiveProcessor(08_08)0,6ms75,4%3,30`null``null`cd`null``null`allallappliedare`null`cd`null`connection`null``null`servers`null``null``null``null``null``null`linkedprogressserverlinkedlinked`null``null`are`null`nn`null``null``null``null`optionsgeprovider`null`propertiesproviderservers`null``null``null`serverservers`null``null`thatthisthisto`null``null`useuseview`null``null`
ThresholdAdaptiveProcessor(20_20)0,9ms82,0%3,61`null``null``null`odbcodbc`null``null``null``null``null``null``null`connectiondb`null`drivers`null``null`forgeneral`null``null``null``null`server`null``null`microsoft`null`page`null``null``null`oleole`null`optionspageproviderpagedriversproviderserver`null``null`selectaserverserver`null``null``null``null``null``null``null`page`null``null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,4ms86,9%4,08`null``null``null`odbcodbc`null``null``null``null``null``null``null`optionsdb`null`drivers`null``null`for`null``null``null``null``null`server`null``null`microsoft`null``null``null``null``null`oleole`null`options`null`provider`null`driversproviderserver`null``null``null`serverserver`null``null``null``null``null``null``null``null``null``null``null``null``null`
AutoThresholdProcessor(Triangle)0,9ms93,4%4,44`null`accessauadhecadhec`null`disallow`null``null``null``null``null``null``null`disallow`null``null``null``null`opener`null``null`indexaccess`null``null`index`null``null``null``null`non`null``null``null`opener`null``null``null``null`opener`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`usus`null``null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms93,4%4,34`null``null``null``null``null``null``null``null``null``null``null``null`connection`null``null`server`null``null``null``null``null``null`linked`null`serverlinkedlinked`null``null``null``null``null``null``null``null``null``null``null``null``null`propenies`null`server`null``null``null`serverserver`null``null`thisthisthis`null``null``null``null``null`mew`null``null`
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,31`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 61 tagged words.

zrs_ZAMS_scatter_002

Show table
ProcessorElapsedWERCER (avg)Imageconfigurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator
ThresholdProcessor(80%)0,8ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator
AutoThresholdProcessor(Kapur)1,1ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator
ThresholdAdaptiveProcessor(24_24)0,4ms18,2%0,82configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalhorizontallndicator
ThresholdProcessor(50%)0,7ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdProcessor(60%)0,8ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdAdaptiveProcessor(20_20)0,9ms27,3%1,18`null`horizontalhorizortalindicatorindicator`null`meaningmeaningsplotscatterverticalverticalindicator
ThresholdProcessor(30%)0,9ms27,3%0,82configurehorizontalhorzontallndicatorindicatormeameaningmeaningsplotscatterverticalhorzontallndicator
ThresholdProcessor(40%)0,9ms27,3%0,27configurehorizontalhorizonttallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdProcessor(70%)0,9ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
AutoThresholdProcessor(OTSU)1,1ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdAdaptiveProcessor(16_16)0,5ms45,5%1,18`null`horizontalhorizontallndicatorindicator`null`meaningmeaningsplotscatterverticalverticalindicator
ThresholdAdaptiveProcessor(08_08)0,6ms45,5%2,82`null``null`verticallndicatorindicator`null`meaningmeaningsplotscatterverticalverticallndicator
ThresholdAdaptiveProcessor(12_12)0,6ms45,5%2,36`null`horizontalhorizontalindicatormeameaningmeaningsplotscatterverticalindicator
ThresholdAdaptiveProcessor(04_04)1,4ms90,9%7,73`null``null``null``null``null``null``null``null``null`verticalvertical
AutoThresholdProcessor(Triangle)0,9ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(20%)0,9ms100,0%7,91onfigure`null``null``null``null``null``null``null`catter`null``null`

Comparison data generated based on 11 tagged words.

zrs_ZAMS_windrose_002

Show table
ProcessorElapsedWERCER (avg)Image16angularcancelconfigurationdegreedirectiondirectionsEENEforgranularityindicatormeaningmeasurementNNENNEokreportresultsrosevalidatevalidationvariablewind
AutoThresholdProcessor(OTSU)1,1ms28,0%0,5216angularcancelconfigurationdegreedirectiondireotions`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(60%)0,8ms32,0%0,56`null`angularcancelconfigurationdegreedirectiondirections`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(20_20)0,9ms32,0%0,7216angular`null`configurationdegreedirectiondirections`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(70%)0,9ms32,0%0,60`null`angularcancelconfigurationdegreedirectiondirection`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(16_16)0,5ms36,0%0,7216angular`null`configurationdegreedirectiondirections`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(24_24)0,4ms40,0%1,2416angular`null`configuration`null`directiondirections`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportreportrosevalidationvalidationvariablewind
ThresholdProcessor(80%)0,8ms40,0%0,88`null`angular`null`configurationbeareedirectiondirections`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(12_12)0,6ms44,0%1,4816angular`null`configuration`null`directiondirections`null``null`forangularindicatormeaningmeasurement`null``null``null``null`reportreportrosevalidatevalidatevariablewind
ThresholdAdaptiveProcessor(08_08)0,6ms48,0%1,72`null``null``null`configuration`null`directiondirections`null``null`for`null`indicatormeaningmeasurement`null``null``null`okreportresultsrosewalidatevalidationvariablewind
ThresholdProcessor(50%)0,7ms48,0%0,92`null`angular`null`configurationcegresdirectiondirection`null``null`forgranularityindicatormeaningmeasurement`null``null``null``null`reportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(40%)0,9ms64,0%1,72`null`angularcancelconfiguration`null`directiondirection`null``null`forangularindicatormeaning`null``null``null``null`akreportreportrosevalidatevalidationvanablewind
AutoThresholdProcessor(Triangle)0,9ms84,0%5,0016`null``null``null``null`directionsdirections`null``null``null``null``null``null``null``null``null``null``null``null``null`rose`null``null``null`wind
AutoThresholdProcessor(Kapur)1,1ms92,0%5,08`null``null``null`configuration`null``null``null``null``null``null``null``null``null``null``null``null``null`ok`null``null``null`yaldateyaldate`null``null`
ThresholdAdaptiveProcessor(04_04)1,4ms96,0%5,28`null``null``null`validation`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`validationvalidation`null``null`
ThresholdProcessor(20%)0,9ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(30%)0,9ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

Comparison data generated based on 25 tagged words.

\ No newline at end of file +}

OCR Report

Processing summary (Average)

WER

Show table
ProcessorError
ThresholdProcessor(40%)46,04%
ThresholdProcessor(30%)46,84%
AutoThresholdProcessor(OTSU)48,76%
ThresholdProcessor(50%)49,95%
ThresholdProcessor(70%)49,96%
......
ThresholdAdaptiveProcessor(12_12)70,85%
ThresholdAdaptiveProcessor(16_16)71,32%
ThresholdAdaptiveProcessor(08_08)73,94%
AutoThresholdProcessor(Triangle)91,24%
ThresholdAdaptiveProcessor(04_04)94,55%

CER

Show table
ProcessorChanges
ThresholdProcessor(40%)1,55
ThresholdProcessor(30%)1,74
ThresholdProcessor(50%)1,93
ThresholdProcessor(70%)2,15
AutoThresholdProcessor(OTSU)2,15
......
ThresholdAdaptiveProcessor(24_24)3,00
ThresholdAdaptiveProcessor(08_08)3,17
ThresholdAdaptiveProcessor(16_16)3,22
AutoThresholdProcessor(Triangle)4,71
ThresholdAdaptiveProcessor(04_04)4,87

Time

Show table
ProcessorTime
ThresholdAdaptiveProcessor(24_24)0,49ms
ThresholdAdaptiveProcessor(16_16)0,54ms
ThresholdAdaptiveProcessor(12_12)0,60ms
ThresholdAdaptiveProcessor(08_08)0,65ms
ThresholdProcessor(50%)0,79ms
......
AutoThresholdProcessor(Triangle)0,93ms
AutoThresholdProcessor(Kapur)1,02ms
AutoThresholdProcessor(OTSU)1,16ms
ThresholdAdaptiveProcessor(04_04)1,40ms
ThresholdProcessor(30%)1,40ms

Processing summary (Median)

WER

Show table
ProcessorError
AutoThresholdProcessor(OTSU)36,84%
ThresholdProcessor(60%)38,00%
ThresholdProcessor(50%)40,79%
ThresholdProcessor(30%)41,18%
ThresholdProcessor(40%)44,26%
......
ThresholdAdaptiveProcessor(08_08)73,33%
ThresholdAdaptiveProcessor(12_12)76,00%
ThresholdAdaptiveProcessor(20_20)76,39%
ThresholdAdaptiveProcessor(04_04)98,11%
AutoThresholdProcessor(Triangle)100,00%

CER

Show table
ProcessorChanges
AutoThresholdProcessor(Kapur)0,00
AutoThresholdProcessor(OTSU)0,00
ThresholdProcessor(30%)0,00
ThresholdProcessor(40%)0,00
ThresholdProcessor(50%)0,00
......
ThresholdAdaptiveProcessor(12_12)3,00
ThresholdAdaptiveProcessor(16_16)3,00
ThresholdAdaptiveProcessor(24_24)3,00
AutoThresholdProcessor(Triangle)4,00
ThresholdAdaptiveProcessor(04_04)5,00

Time

Show table
ProcessorTime
ThresholdAdaptiveProcessor(24_24)0,40ms
ThresholdAdaptiveProcessor(16_16)0,50ms
ThresholdAdaptiveProcessor(08_08)0,60ms
ThresholdAdaptiveProcessor(12_12)0,60ms
ThresholdProcessor(50%)0,70ms
......
ThresholdProcessor(40%)0,90ms
ThresholdProcessor(70%)0,90ms
AutoThresholdProcessor(Kapur)1,10ms
AutoThresholdProcessor(OTSU)1,10ms
ThresholdAdaptiveProcessor(04_04)1,40ms

Scan Results

command-processing_screentypes_controlgroup_005

Show table
ProcessorElapsedWERCER (avg)Image10034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(60%)0,7ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(30%)0,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(70%)0,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(40%)1,0ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(50%)1,8ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
AutoThresholdProcessor(OTSU)2,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
AutoThresholdProcessor(Kapur)0,7ms11,1%0,2210034activeidinterlockinginterlockingsidstatictexttyp
ThresholdProcessor(80%)0,7ms11,1%0,2210034activeidinterlockinginterlockingsidstatictexttyp
ThresholdProcessor(20%)0,7ms33,3%0,1110034activeidinterlockinginterlockingnostatictexttyp
ThresholdAdaptiveProcessor(24_24)1,1ms44,4%1,67textactivenointerlockinginterlockingsnotexttexttext
ThresholdAdaptiveProcessor(20_20)0,5ms55,6%2,33textactivetextinterlockinginterlockingstextactivetexttext
ThresholdAdaptiveProcessor(16_16)0,7ms66,7%2,44textactivetextinterlockinginterlockingtexttexttexttext
ThresholdAdaptiveProcessor(12_12)0,5ms77,8%3,00nononointerlockinginterlockingnononono
ThresholdAdaptiveProcessor(04_04)1,4ms88,9%3,22texttexttextinterlockings'interlockings'texttexttexttext
AutoThresholdProcessor(Triangle)1,0ms100,0%5,89---------
ThresholdAdaptiveProcessor(08_08)1,3ms100,0%5,89---------

Comparison data generated based on 9 tagged words.

driver_archdrv_variablendefinition_001

Show table
ProcessorElapsedWERCER (avg)Imagearchivebitbytedasdoppelwortfloatgewünschtehilfekonfigurationneuobjektselektierensiestringtreibervariablevariablendefinitionverlassenwort
ThresholdProcessor(50%)0,7ms16,7%1,22siebitbytedasdoppelwortfloatgewünschtehilfekonfigurationbitobjektselektierensiestringtreibervariablekonfigurationverlassenwort
ThresholdProcessor(40%)1,0ms16,7%1,22siebitbytedasdoppelwortfloatgewünschtehilfekonfigurationbitobjektselektierensiestringtreibervariablekonfigurationverlassenwort
ThresholdProcessor(30%)11,6ms16,7%1,22siebitbytedasdoppelwortfloatgewünschtehilfekonfigurationsieobjektselektierensiestringtreibervariablekonfigurationverlassenwort
ThresholdProcessor(60%)0,8ms22,2%1,28siebitbytedasdoppelwortfloatgewunschtehilfekonfigurationbitobjektselektierensiestringtreibervariablekonfigurationverlassenwort
AutoThresholdProcessor(OTSU)1,1ms22,2%1,22siebitbytedasdoppelwortfloatgewünschtehilfekonfigurationbitobjektselektierensiestringtreibervariablekonfigurationverlassenwort
ThresholdAdaptiveProcessor(24_24)0,5ms33,3%0,94siebitbytedasdoppelwortfloatgewünschtesiekonfigurationdasobjektselektierensiestringtreibervariableyariablendefiiverlassenwort
ThresholdAdaptiveProcessor(16_16)1,2ms38,9%0,94archivebitbytedasdoppelwortfloatgewünschtesiekonfigurationbitbitselektierensiestringtreibervariablevariablendefinitionsiewort
ThresholdProcessor(70%)0,8ms50,0%2,67hilfebitbytebitdoppelwortfloatbytehilfekonfigurationbitbitstringbitstringtreibervariablekonfigurationverlassenort
AutoThresholdProcessor(Triangle)0,8ms55,6%3,22bitbitbytebitdoppelwortfloatbytebitkonfigurationnewbitstringbitstringtreibervariablekonfigurationbytewort
ThresholdProcessor(20%)0,8ms55,6%3,28archivesiesiedasfloatfloatgewunschtehilfefloatsieobjektselektierensiesiearchiveverlassenverlassenfloat
ThresholdAdaptiveProcessor(20_20)0,7ms61,1%2,67archivebitbytebitdoppelwortfloatbytebitfloatetbitstringbitstringtreibervariablevariablendefinitionarchivewort
ThresholdProcessor(80%)0,7ms61,1%3,33bytebitbytebitdoppelwortfloatbytebytekonfigurationbitbitstringbitstringtreibervariablekonfigurationbytewort
ThresholdAdaptiveProcessor(08_08)0,6ms72,2%4,17archivesiesiedasfloatfloatgewünschtesiefloatsiefloatelektierensiesiearchiveelektierensiefloat
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%5,83aisaisyoaiselelessenaisaissepsepessensepsepaisessenessenyo
AutoThresholdProcessor(Kapur)0,6ms100,0%6,61ayiggqayiggqyomyomgqgqayiggqgqayiggqayigayigayigayigyom
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,56------------------

Comparison data generated based on 18 tagged words.

driver_BQLSX00_connections_002

Show table
ProcessorElapsedWERCER (avg)Image01abbrechenarchiv kennungdatenbausteindatenbausteinkonfigurationdatensatzdatentypdoppelworteinstellungenfreiidlöschennameneueneueroffsetohneokprodukt IDS7-300schreibstatusseriellSOspaltenorientiertstellewert
ThresholdProcessor(20%)0,9ms70,4%3,44ididtechenkennungdaterbaustaindaterbaustaindatensatzdatensatzwerteinstellungenfreiidtechennameneverneveroffsetohneididneverdatensatzsteleiddatensatzstelewert
ThresholdProcessor(40%)0,9ms70,4%3,78ididarchivkennungdatenbausteindatenbausteindatensatzdatentypwertkennungididarchivnamenamenameoffsetohneidproduktiddatensatzwertiddatenbausteinohnewert
ThresholdProcessor(30%)1,0ms74,1%3,56501dabbrechenkennungdatenbausteindatenbausteindatenbausteinwertooppetwortkennungididarchivnamenamenameoffsetohneidid50screbstetusserieiddatenbausteinseriewert
ThresholdProcessor(50%)1,7ms85,2%5,37wertwertfreidatentypdatentypdatentypdatentypdatentypdoppelwortstelefreiwertfreiwertwertwertfreiwertwertwertwertfreistelewertdatentypstelewert
ThresholdAdaptiveProcessor(20_20)0,6ms96,3%6,22kakawerewerewerewertwertwertwertwerewerekawerewerewerewerewerewerekawertwerewerewerekawerewerewert
ThresholdProcessor(70%)0,7ms96,3%6,96namenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamename
AutoThresholdProcessor(Kapur)1,1ms96,3%6,56wertwertbseubseubseubseuwertwertwertbseubseuwertbseuwertwertwertbseuwertwertwertwertbseuwertwertwertwertwert
ThresholdProcessor(80%)1,1ms96,3%6,96wertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwertwert
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%7,67---------------------------
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%7,67---------------------------
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%6,70enenenenenenenenenenenenenenenenenenenenenenenenenenen
ThresholdAdaptiveProcessor(16_16)0,6ms100,0%7,67---------------------------
ThresholdProcessor(60%)0,9ms100,0%7,67---------------------------
AutoThresholdProcessor(OTSU)1,1ms100,0%7,67---------------------------
AutoThresholdProcessor(Triangle)1,2ms100,0%7,67---------------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,67---------------------------

Comparison data generated based on 27 tagged words.

driver_brpvi_offlineimport_004

Show table
ProcessorElapsedWERCER (avg)ImageabackcanceldeclarationdescriptionfilefilenamefinishhelpnewnewOpcTag.opctopctag
ThresholdProcessor(50%)0,7ms23,1%1,00tagbackcanceldeclarationdescriptionfilefilenamefinishhelpnewopcopctag
ThresholdProcessor(60%)0,9ms30,8%1,46tagbackcanceldeclarationdescriptionfilefilenamefilenewnewinewopopctag
ThresholdProcessor(70%)0,8ms38,5%1,77tagbackanewdeclarationdescriptionfilefilenamefilenewnewnewopctag
ThresholdProcessor(40%)1,3ms38,5%1,23tagbackcanceldeclarationcescriptiorfilefileramefinishhelpnewdeclarationopctag
AutoThresholdProcessor(OTSU)1,1ms46,2%1,38tagbackanewdeclarationdescriptionfilefilenamefishnewnewnewopcopctag
AutoThresholdProcessor(Kapur)1,1ms53,8%1,77tagopcanewdeclarationdescriptionfilefilenamefilenewnewinewopctagopctag
ThresholdProcessor(30%)1,1ms53,8%1,69tagbackcanceldeclarationdeclarationfilefilefinishhelpnewscescrigücropctag
ThresholdAdaptiveProcessor(16_16)0,5ms69,2%2,69tagopcanewdeclarationdeclarationfilefilefilenewnewnewopctag
ThresholdProcessor(80%)1,4ms76,9%3,69tagopcanewtogtogfilefilefilefilenewopcopctag
ThresholdAdaptiveProcessor(08_08)0,6ms84,6%4,62tagopcanewanewopcanewanewanewanewanewopcopctag
ThresholdAdaptiveProcessor(12_12)0,6ms84,6%3,23tadopcanewdescriptiondescriptionficficficopcanewopcopctad
ThresholdAdaptiveProcessor(20_20)0,5ms92,3%4,15tagopcfilefilefilefilefilefilefileseopcopctag
AutoThresholdProcessor(Triangle)0,9ms100,0%6,00-------------
ThresholdProcessor(20%)1,0ms100,0%3,46tayopcfalzeclarationzeclarationfalfalfdmewmewopcopctay
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%4,38cacaanewtiletiletiletiletiletileanewanewcaca
ThresholdAdaptiveProcessor(24_24)1,4ms100,0%5,62sscscscssssssssssssscsssss

Comparison data generated based on 13 tagged words.

driver_SEL_Options_002

Show table
ProcessorElapsedWERCER (avg)Image100180000anandbetweenenterintegerokSEL
ThresholdAdaptiveProcessor(16_16)0,5ms22,2%0,56100180000anandbetweenenterintegeranand
ThresholdProcessor(60%)0,7ms22,2%0,56100180000anandbetweenenterintegeranan
ThresholdProcessor(70%)0,7ms22,2%0,56100180000anandbetweenenterintegeran100
ThresholdProcessor(80%)0,9ms22,2%0,56100180000anandbetweenenterintegeran100
ThresholdAdaptiveProcessor(12_12)1,0ms22,2%0,56100180000anandbetweenenterintegeranan
AutoThresholdProcessor(OTSU)1,1ms22,2%0,56100180000anandbetweenenterintegeranan
ThresholdAdaptiveProcessor(08_08)0,5ms33,3%0,56100180000anandbetweenenterintegeran100
ThresholdAdaptiveProcessor(20_20)0,5ms33,3%0,56100180000anandbetweenenterintegeran100
ThresholdProcessor(40%)0,8ms33,3%0,56100180000anandbetweenenterintegeran100
ThresholdProcessor(50%)0,8ms33,3%0,56100180000anandbetweenenterintegeranand
ThresholdProcessor(30%)0,9ms33,3%0,56100180000anandbetweenenterintegeran100
ThresholdProcessor(20%)1,0ms33,3%0,56100180000anandbetweenenterintegeransel
AutoThresholdProcessor(Kapur)1,2ms33,3%0,56100180000anandbetweenenterintegeran100
ThresholdAdaptiveProcessor(04_04)1,4ms88,9%4,56300001300001between300001betweenbetweenbetween300001300001
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%4,22---------
AutoThresholdProcessor(Triangle)0,8ms100,0%4,22---------

Comparison data generated based on 9 tagged words.

driver_simotion_online_import_001

Show table
ProcessorElapsedWERCER (avg)Image(1)aallcancelconnectionconnectionsD445existingfilterimportlabelnewokonlyresourcesselectsetvariablevariables
ThresholdProcessor(50%)0,7ms26,3%0,6311allalllabelconnectionconnectionsd426existingfilterimportlabelnew11onlyresourcesselectsetvariablevariables
ThresholdProcessor(60%)0,8ms31,6%0,74newallalllabelconnectionconnectionsd445existingfilterimportlabelnewnewovonlyresourcesselectsetvariablevariables
ThresholdAdaptiveProcessor(20_20)0,9ms31,6%1,00newallalllabelconnectionconnectionsonlyexistingimportimportlabelneweionlyresourcesselectsetvariablevariables
ThresholdProcessor(80%)0,9ms31,6%0,68newoknewlabelconnectionconnectionsd445existingfiterimportlabelnewokonlyresourcesselectsetvariablevariables
AutoThresholdProcessor(OTSU)0,9ms36,8%0,68newallalllabelconnectionconnectionsd445existingfitterimportlabelnewnewonlyresourcesselectsetvariablevariables
ThresholdProcessor(70%)0,9ms36,8%0,47newallallcanceconnectionconnectionsd445existingfitterimportlabelnewoxonlyresourcesselectsetvariablevariables
ThresholdAdaptiveProcessor(12_12)0,4ms42,1%0,95newalallabelconnectionconnectionsd445existingnewimportlabelnewalonlyresourcesselectnewvariablevariables
ThresholdProcessor(40%)0,7ms47,4%0,95newallallcancelconnectionsconnectionsnewexistingfitterimportlabelnewetnewresourcesselectetvariablesvariables
AutoThresholdProcessor(Kapur)0,9ms57,9%1,05newetnewcancelconnectionsconnectionsnewexistingfitterimportlabelnewcknewresourcesselectetvariablesvariables
ThresholdAdaptiveProcessor(08_08)1,1ms57,9%1,74newnewlabellabelconnectionconnectionnewexistingtewimportlabelnewnewonlyselectselectnewvariablevariables
ThresholdAdaptiveProcessor(24_24)0,5ms63,2%1,89newallallnewconnectionconnections0445existingselectselectallnewmmoniyselectselectnewvariablesvariables
ThresholdProcessor(30%)1,1ms63,2%1,63setokalllabelcennecticncennecticnsetistingfilterimportlabelsetokokresourcesselectsetyanablesyanables
ThresholdAdaptiveProcessor(16_16)0,4ms84,2%3,89445445445selectconnectionconnections0445selectselectselectselect4454450445selectselectselectselectselect
AutoThresholdProcessor(Triangle)0,9ms89,5%4,21044504450445selectconnectionconnection0445selectselectselectselect044504450445selectselectselectselectselect
ThresholdAdaptiveProcessor(04_04)1,4ms94,7%8,05connectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnectionconnection
ThresholdProcessor(20%)1,1ms100,0%5,63-------------------

Comparison data generated based on 19 tagged words.

editor_multimonitor_example_007

Show table
ProcessorElapsedWERCER (avg)Image0000001108019203840alternativebottomcanceldefinedisplayforhelpinleftMmenuMMmonitornameokonlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(70%)0,8ms27,6%0,59in1080top108019203840alternativebottomnamedefinedisplayforhelpinleftinmenuinmonitornametoponlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(80%)1,0ms31,0%0,69in10801080108019203840alternativebottomnamedefinedisplayfortheinleftinmenuinmonitornameinonlineoptionsphysicalpositionrightthetopundedactable
AutoThresholdProcessor(OTSU)1,4ms34,5%0,69in1080top108019203840alternativebottomnamedefinedisplayfortopinleftinmenuinmonitornametoponlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(60%)0,8ms37,9%0,76in1030top103019203340alternativebottomnamedefinedisplayfortopinleftinmenuinmonitornametoponlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(40%)0,9ms41,4%1,24inthethemenumenumenualternativebottomnameonlinedisplayformenuinleftinmenuinmonitornameinonlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(50%)0,7ms55,2%1,69inm_00them_00m_00m_00alternativebottomtheonlinedisplayfortheinmenuinmenuinmonitortheinonlineoptionspositionpositionthethetopundedactable
ThresholdAdaptiveProcessor(24_24)0,5ms62,1%1,90inthethethethethealternativemonitorthedefinedisplayfortheinmenuinmenuinmonitortheinonineoptionsphysicalmonitorthethetheundedactable
ThresholdAdaptiveProcessor(12_12)0,6ms62,1%2,14inthethethethethedefinemonitorthedefinedisplayfortheinmenuinmenuinmonitortheinonlinepositionphysicalpositionthethetheundedactable
ThresholdProcessor(30%)0,9ms62,1%1,97okforforhelphelphelpleftbottomcancelonlinehelpforhelpinleftokmenuokmonitortheokonlineoptianscancelmonitornightthetonundedactable
ThresholdAdaptiveProcessor(08_08)0,6ms69,0%2,48inininmenumenumenuonlinemonitorcadefinedisplaygomenuinmenuinmenuinmonitortheinonlineoptionsphysicalmonitorinthethephysical
ThresholdAdaptiveProcessor(16_16)0,5ms79,3%3,07forforforforforfordefinemonitormonitordefinephysicalforforfordefinefordefineformonitorforfordefinepositionphysicalpositionforforforundedactable
AutoThresholdProcessor(Triangle)0,9ms79,3%2,90mathethemenumenumenuonlinemattermatteronlinerichtformenumaletmamenumamattertheforonlineoptirichtpositionrichtthetopthe
ThresholdAdaptiveProcessor(20_20)0,9ms82,8%2,97mmmmmmmmmmmmdefinemonitorcanceldefinedefinetosmmmmdefinemmmmmmmonitormmmmdefinepositionphysicalpositionmmtostosdefine
AutoThresholdProcessor(Kapur)0,8ms100,0%4,5543434343434343coco4343co434343434343co434343cococo4343coco
ThresholdProcessor(20%)0,9ms100,0%4,83-----------------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,41detinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetinedetine

Comparison data generated based on 29 tagged words.

editor_startpage_project-exist_001

Show table
ProcessorElapsedWERCER (avg)Imageaandanythingapplicationarebackbasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednextnotofparameterspointsprocessesprojectprojectspropertiesrprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(40%)0,9ms13,2%0,20weandanythingapplicationareandbasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednotnotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewewhatworkyouyour
AutoThresholdProcessor(OTSU)1,1ms15,8%0,18weandanythingapplicationareandbasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneedneednotofparameterspointsprocessesprojectprojectspropertesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewewhatworkyouyour
ThresholdProcessor(50%)0,7ms19,7%0,24andandanythingapplicationareandbastcbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowininincorporateintointroducinginitmakeneedneednotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewewhatworkyouyour
ThresholdProcessor(30%)0,9ms19,7%0,28andandanythingapplicationareandbasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnectiongenerallyhashowifinincorporateintointroducinginitmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewhatworkyouyour
AutoThresholdProcessor(Kapur)1,1ms21,1%0,29toandanythingapplicationarehasbasicbecausebeencanchapterscompleconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontexecutiongenerallyhashowifinincorporateintointroducinginitmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(60%)0,8ms27,6%0,33doandanythingapplicationaredatabasicbecausebeencanchapterscompileconfiguredconfiguitngconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowitinincorporateintointroducingititareneednotnotofparameterspointsprocessesprojectprojectsprojectsprojectscreenseeservicesettingstartstepsstudiothethemthenthistotovariablevisualizationwantweservicewhatworkyouyour
ThresholdProcessor(20%)0,9ms31,6%0,87weandthenapplicationareandbasiceasybeencanchapterscompileconfiguredconfiguringconnectionintocreatedatahastodrivereasyendengineengineeringexecutionfirstfollowingforframefrontexecutioneasyhashowifinincorporateintoiniroducingisitmakeneedneedforofchapterspointsprojectsprojectprojectsprojectsprojectbeenseeserviceservicestartstepsstudiothethethenthistotoolcreatevisualizationwantwewelcomewhatworkyouyour
ThresholdAdaptiveProcessor(20_20)0,9ms32,9%0,32weandanythingapplicationarebackbasicbecausebeencanchapterscompteconfiguredconfiguringexecutioncontrolcreatedatadododrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontexecutiongenerallyhashowifinincorporateintointroducingisinmakeneednextnotofparameterspointsprocessesprojectprojectspropertiesprojectscreenseeservicesettingstatstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour
ThresholdAdaptiveProcessor(12_12)0,6ms34,2%0,50toandanythingexecutionarehasbasicbecausebeencanchapterscreateconfiguredconfiguringfunctioncontrolcreatedatadtalogsdodrivereasyendengineengineeringexecutionfirstfollowingforfrontfrontfunctiongenerallyhashowifinincorporateintointroducinginitmakeneedneednotofparameterspointsprocessesprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomehasworkyouyour
ThresholdAdaptiveProcessor(16_16)0,5ms36,8%0,51aeandanythingapplicationareandbasicbecausebeencanchapterscreateconfiguredconfiguringconnectionintocreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontfunctioneasyhashowifinincorporateintointroducingisitmakeneedneedtoofparameterspointspropertiesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewhatworkyouyour
ThresholdAdaptiveProcessor(24_24)0,4ms38,2%0,66aaandanythingconnectionareandbasicbecausebeenandchaptersmakeconfiguredconfiguringconnectioncontrolcreateeatedialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongeneraltyhasdoifincreatetointroducingininmakeneedneednotofparametersthisprocessesprojectprojectspropertiesprojectbeenseesettingsettingstepsstepsstudiothethemthenthistotootvariablevisualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(70%)0,9ms46,1%0,53andandanythingapplicationarebackbasicbecausedeencanchaptersconiplecont-quredconfguungconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollawingforframefrontfunctiongenerallyhashowofinincorperateinteintroducinginitareneednextnextofchapterspointsprocessesprojectprojectpropericsprojectscreenseeservicesettingstartstepsstudiothethethenthetotoolvariablevisualizationandweframewhatworkyouyour
ThresholdAdaptiveProcessor(08_08)0,6ms61,8%1,66toendthisgonnectionarebasicbasicbasicneedcanchapterscolconfiguringconfiguringgonnectionintocreatedataintotoarebasicendserviceengineeringexezutionforfollowingforareforgonnectiongreatewhathowininincorporateintointroducingininmakeneedneedtotochapterspointsprojedisprojectprojectprojedisprojectstepstheserviceservicestepsstepsstudiothethethethistotoarevisualizationwantweworkwhatworkyouyour
AutoThresholdProcessor(Triangle)0,9ms80,3%3,14andandandfiatandandeasyeasytheandstepsmalefirstengineeringenginecsingtowhatandfiattoendereasyandinengineeringstudiofirstforforfiatfirstfirsteasywhattoininfirsttoengineeringininmaleandtenttotostepsinstepstentstepsstepsfirststepsthestudiostudiostepsstepsstudiothethethethetotomalestudiowantwewelcomewhatworkyouryour
ThresholdProcessor(80%)0,8ms81,6%2,82caandfunctionexecutionatebackbackcreatebackcacreateapplefirstconnectionconnectionconnectioncreateatewallmedriverbackandwieconnectionexecutionfirstfunctionprframefirstfunctionwallcamememecreateandexecutionmectmenextnextnextmeframecreatecreatecreatecreatecreatecreatescreenmecreatestepsstepsstepsstudsthethetheththtalvariablevisualizationandmeframewhatbackmezur
ThresholdAdaptiveProcessor(04_04)1,4ms88,2%3,16toendthemiatyouthegatagatagataendgatagatatheconhguringconhguringconhguringforgatagataigtoprojectgataendendengineeringtoforconhguringforgataforforgatagatarowofigincorporatetomtrodvcngigiggataendendforofbasicstepsgataprojectprojectprojectprojectprojectendtheendendgataendtothethethethetotogatamiatyougatatheelgataforyouyou

Comparison data generated based on 76 tagged words.

editor_windows_position_006

Show table
ProcessorElapsedWERCER (avg)Image100aactivatestartupscreenalsoandbriefCEcontrolcrossdependeddisplayedDOKUeachediteditionelementeenergyetcfilefilterfilteredforfromfunctionshelphistorianinformationisitslanguagelinklistloadnameneedednetworkononlineoptionsotheroutputprojectpropertiespropertyproperyprovidedreadyrecipesreferencereportscreensselectshowsstandardstarttextthetimetotopologytotaltreevaluevariablesVBAVSTAwelcomewhatwindowwindowsyouzenon
ThresholdProcessor(20%)0,9ms55,6%1,64youiafitteredalsoandbriefononshowsdependeddisplayedyoueachediteditiondependedenergyetcfiefitteredfitteredforfromoptionshelpeditioninformationisislanguagelinkisyounameneadedtoononlineoptionsotherotherprojectpropertiespropertypropertyprovidedreadyheipdependedrepltreeselectshowsstandardwhatwhatthethetooptionstotreevaluebriefyouyouwelcomewhatwindowwindowyouzenon
ThresholdProcessor(30%)0,9ms58,3%1,39totoscreensalsoandbrieftocortocrowedependeddisplayedtoeachediteditiondependedenergyetcfilefilefileforfromoptionshelpstatinformationisislanguagelinkisloadnameneededhetwarkononlineoptionsotherotherprojectpropertiespropertypropertyprovidedeachracpesdependedreportscreensselectshowsstandardstattothetmetotopologytotreevalueracpestotoeachwhatwindowwindowyouzenon
AutoThresholdProcessor(Kapur)1,1ms59,7%1,3200ktoscreensalsoandbrieftotofromdependeddisplayedtoeachediteditiondependedenergyetcfiefilteredfilteredforfromfunctonshelpstatinformationisitslanguagelinkisloadnameneededhetwarkononlineoptionsotherotherprotectpropertiespropertypropertyprovidedeachheipdependedreportscreensselectshowsstandardstattothetmetotopologygrotalreevaluevaluetotoweicomewhatwindowswindowsyouzenon
ThresholdProcessor(40%)0,9ms62,5%1,76tozascreenstoancbrieftototalshowsdependeddependedwhateachediteditdependednemeetefilefilteredfilteredforfromfurcbonshelptotalinformationisislanguageisisloadnameneedednetworkonontootherotherprojectpropertiespropertypropertyprovecteachheipdepended'report'screensselectshowsstandardwhatwhatthetimetotapatogytotaltreevaluebrieftowhatwelcomewhatwindowwindowsyouzenon
ThresholdAdaptiveProcessor(20_20)0,9ms76,4%2,82youiavalueaseandieistothowsneededandyoueacheachtonameoneeachievalueneededfrfrthowshelpisinformationisisnameandisloadnameneededreportononethowstheyouprojectpropertiespropertypropertypropertyeachisneededreporttheeachthowsstandardwhattethethetopropertytothethevaluevalueyouyounamewhatandthowsyouon
ThresholdProcessor(50%)0,7ms90,3%3,62memetotalaseasememetotalloadselectloadloadaseioioselecthelphelphelpfrloadfrfrandthehelptotalloadioioandtheloadloadloadmeloadookmeandtheiototaltotalprojectproperyproperyproperyprojectloadhelpselect'report'selectselectloadandtheloadhelpmemeiototaltotalmeasetotalmeloadwelcomeloadioandtheiohelp
ThresholdAdaptiveProcessor(12_12)0,6ms91,7%3,83vavatreevavatreevaoutputcrosstreemanagervavabetoutputprojecthelpbethelphelptreevacrosscrosshelptreeprojectvavamanagervabetvavatreebetvaoutputoutputtreeoutputprojectpropertypropertypropertyprojectvacrosstreepropertycrossprojectcrossmanageroutputbettreetreevapropertyvatreevamanagervavahelpvaoutputcrossvahelp
ThresholdProcessor(60%)0,8ms93,1%4,22helploadmansgerhelploadhelphelpwindow'dokuwindowprajecthelphelphelpwindowprojecthelphelphelphelppropertyloadhelpwindowhelpwindowwindowhelphelpmansgerloadloadloadhelphelphelploadhelpwindowhelpgutautprojectpropertypropertypropertyprojectloadhelpprojectpropertyhelphelphelpwindowgutauthelphelphelploadpropertyloadhelphelpmansgerhelphelphelploadwindowwindow'dokuhelp
AutoThresholdProcessor(OTSU)1,1ms94,4%4,28helpleadmarsgerhelpleadhelphelpwindow'dokuwindowleadhelpleadhelpwindowpropertypropertyhelphelphelpleadhelphelpwindowhelpwindowpropertyhelphelpmarsgerleadleadleadhelpleadhelphelphelpwindowhelphelpprojectpropertypropertypropertypropertyleadhelppropertypropertyhelphelphelpwindowleadhelphelphelphelppropertyleadhelphelpmarsgerhelphelphelpleadwindowwindow'dokuhelp
AutoThresholdProcessor(Triangle)0,9ms95,8%4,31ooknmprajectloadnmloadnmtotalloadloadloadloadloadloadtotalprajectnmookloadloadloadookookloadloadtotalloadnmookloadloadloadloadnmloadookookloadooktotaltotalprojectprojectprojectprojectprojectload'report'praject'report'prajectprajectloadloadloadloadooknmooktotaltotalloadloadprajectookloadloadloadloadloadookook
ThresholdProcessor(70%)0,9ms95,8%4,19morloadreportnelploadsgermormorloadreportloadnelpnelpreportmorprojectnelpnelpnelpsgerloadmormorreportnelpreportreportmormorloadloadloadloadnelpnelpreportmornelpreportsgerreportprojectprojectprojectprojectprojectloadreportreportreportsgerprojectloadloadsgernelpmornelpmorreportloadsgernelpprojectmornelpreportloadnelpreportmorreport
ThresholdAdaptiveProcessor(08_08)0,6ms98,6%4,25eekamanegeauaueeeemanegeeeeemanageeeeeeeiieeeeeeeeeeeeeeeemanegeeeiiprojectiiiimanageiiiikaeeeeeeeeeeiieeauprojectprojectprojectprojectprojecteeeeeeeeeeeeeemanagekaeeeeeeeeprojectkaeeaumanageeeeeeekamanegemanegeauee
ThresholdAdaptiveProcessor(04_04)1,4ms98,6%6,06manegermanegermanegermanegermanegerprojectmanegermanegerprojectmanegermanegermanegermanegermanegermanegerprojectmanegermanegermanegermanegermanegermanegerprojectmanegermanegerprojectprojectmanegermanegermanegermanegerprojectprojectmanegermanegermanegermanegermanegermanegermanegerprojectprojectprojectprojectprojectprojectmanegermanegermanegerprojectmanegerprojectprojectmanegerprojectprojectmanegermanegerprojectprojectprojectmanegermanegermanegermanegermanegermanegerprojectmanegermanegerprojectmaneger
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%4,3610300uapursopurreoujonyouspurdiapuruadiadoyrepurpurrepurrepurouyousppjonjonoupuruajondiaourerepurououyouspurpurrepurpurpurrerererepurrereyouspurpurrereresodoyourepurrepurpuroudiadoydoyoujon
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%4,40cycycroswlsnnrecycroscrosdokudokudokucydokudokurecycyrereredokucroscrosredokucroscywlsdokunnwlsdokureredokunnnncrosredokucroscroscroscroscrosrecrosrerecroscycrosdokurerererecydokudokuredokucroscydokuwlswlsdokudokudokunn
ThresholdProcessor(80%)0,8ms100,0%5,71------------------------------------------------------------------------

Comparison data generated based on 72 tagged words.

etm_gantt_runtime_001

Show table
ProcessorElapsedWERCER (avg)ImageactiveaxisclipboardcolorcontinuecopycursorcurvedeletediagramexportfilterimportnameoffonplayprintprofilesrefreshrezoomsavvesettingsstoptexttitletotrendWIZ_VAR_10WIZ_VAR_11WIZ_VAR_12WIZ10zoom
ThresholdProcessor(50%)0,7ms81,8%2,85tale10clipboardzoomsettingscopycursorcursortalelagexporttaleexportname1010lagtrendsettingsreroamzoomnamesettingstotttaletotrend10101010zoom
ThresholdProcessor(30%)0,9ms87,9%2,45tileiaclipboardcolortitlecopycursorcunepoetiaexporttileimportsavetotocopytrendpoettrendzoomsavesetungstotrendtitletotrendwu_var_11wu_var_11wu_var_1110zoom
ThresholdProcessor(20%)0,9ms90,9%2,48acineacineclipboardzoomstopcontinuecopycursorcuretileitaexporttileimportnameoooocopyacinetilerefreshzoomsavesetiingstototiletocune10101010zoom
AutoThresholdProcessor(Kapur)1,1ms90,9%3,21tuevazioexportcopysettingscopycumtueweegmexportfinexportname1010copytrendsettingstrendvazionamesettingstotrendtuetotrendwuz_var_10wuz_var_10wuz_var_1010copy
ThresholdProcessor(70%)0,9ms93,9%4,61wiswistrendtrendtrend16trendtrendtrendwistrendprofilestrend16161616trendprofilestrendtrendtrendtrend16trendtrend16trend1016161016
ThresholdProcessor(80%)0,8ms97,0%3,94tiletextcolorcolortilecolorcolorcolorletcolortexttilecolortile1818lettexttilegeetexttiletexttexttexttile18text10181810color
ThresholdProcessor(40%)0,9ms97,0%2,76activeyaxisclipboardcolorcunecopycolorcunetalegmexporttaleexportnameototcopyponttaletrendtrendtaletrendtotrendtaletotrendwiz_var_10wiz_var_10wiz_var_1210color
AutoThresholdProcessor(OTSU)1,1ms97,0%4,79wiswistrendtrendtrend16trendtrendtrendwistrendwistrend16161616trendwistrendtrendtrendtrend16trendtrend16trend1016161016
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,73---------------------------------
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,73---------------------------------
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%5,27ftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftft
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%4,55ttssstottottottottotfaettfaetotfaetotfaettttfaettfaefaetotfaetttottttttttttttttttttot
ThresholdProcessor(60%)0,8ms100,0%3,91taleaxtrendtalecunecunecunecunetalenamawatttalewattnama1010waztrendtaletrendtrendtaletrend10twattale10trendw_var_10w_var_10w_var_101010
AutoThresholdProcessor(Triangle)0,9ms100,0%5,03geegedgedgedgeegedgedgeegeegedgedgedgedgeeged17gedgedgedgeegedgeegedgedgedgee17ged17171717ged
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%5,73---------------------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,73---------------------------------

Comparison data generated based on 33 tagged words.

historian_assistent_001

Show table
ProcessorElapsedWERCER (avg)Imageaaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizedteditorthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(60%)0,8ms15,1%0,08anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
AutoThresholdProcessor(OTSU)1,1ms15,1%0,13anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumhelpnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(50%)0,7ms17,0%0,13anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumhelpnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(80%)0,8ms17,0%0,19anaggregatedanandarchivearchivesassistantaveragebebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumbenowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(30%)0,9ms17,0%0,13anaggregatedanandarchivearchivesassistantaveragebasicbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(40%)0,9ms17,0%0,11anaggregatedanandarchivearchivesassistantaveragebaiebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(70%)0,9ms17,0%0,08anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(20%)0,9ms18,9%0,25ancreateanandarchivearchivesassistantaveragecanbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithyithoutyou
AutoThresholdProcessor(Kapur)1,1ms18,9%0,25anaggregatedanandarchivearchivesassistantaveragebebasicbecancancertaincreatedataengineeringextendedforhelpifinlongermaximumminimumbenowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdAdaptiveProcessor(08_08)0,6ms30,2%0,66anaggregatedanandarchivearchivesassistantservebebasicbecancancertainservedataengineeringextendedforhelpofinlongermaximumminimumbeofofoverbeperiodpressprocessrecordedrecordingserveshouldwantbesummarizededitthethisthetotrendusedvaluevalueswantwithwithoutyou
ThresholdAdaptiveProcessor(24_24)0,4ms32,1%0,40anaggregatedanandarchivearchivesassistantaveragedatabasicbecancancertaincreatedataengineeringextendedforhelpofinlongermaximumminimumbeofofoverpageperiodprocessprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithyou
AutoThresholdProcessor(Triangle)0,9ms47,2%0,98haaggregaananarchivearchivesassistantpagepagebasicbecancancelcreatecreatedataengineeringextendedforhelpofinlongerbasicwithoutwantnowofofpageperiodpresspressrecordedrecordingserveshouldstartofrecordededitthethetimeiotrendusedvaluevaluewantwithwithoutyou
ThresholdAdaptiveProcessor(12_12)0,6ms56,6%1,79canaggregatedcanandarchivearchivesdataoverdatadatabecancancertaincreatedataperiodrecordedofbeofinlongermaximumminimumbeofofoverdataperiodprocessprocessrecordedrecordingbeofdatacansummarizedperiodthethetimebethebevaluevaluescandatatheof
ThresholdAdaptiveProcessor(16_16)0,5ms71,7%2,60ofanaggregatedofanofanarchivearchivesassistantcreatepagebasictheofanpagecreatecreatepageengineeringcreateyouhelpthisthispagebasicthishelpyouofanofanpagethisthispagearchivescreatestartshouldstartthestartthisthethisthethethethepagepagestartwithwithyou
ThresholdAdaptiveProcessor(04_04)1,4ms98,1%4,15setrecordedsetsetrecordedrecordedsetsetsetsetsetsetsetsetsetsetrecordedrecordedsetsetsetsetsetsetsetsetsetsetsetsetrecordedsetsetrecordedrecordedsetsetsetsetrecordedsetsetsetsetsetsetsetsetsetsetsetsetset
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%5,15-----------------------------------------------------

Comparison data generated based on 53 tagged words.

reporting-server_report-assistant_007

Show table
ProcessorElapsedWERCER (avg)ImageabsabsolutealarmsbatchhistorycollectionconsumptioncostsdatadatetimefilterdevelopmentDPAelementequipmentequipmentfilterfilterfilter()frequentgroupintegermediummiscmnestinglevelmodelmostnameOEEFactorparameterlistperprojectspropertiesrdlrelatedrelativereportreport1reportassistantsinglestringtoolstypevariablesZAD_CIPZAD_GBLZAD_MAIN
ThresholdProcessor(40%)0,9ms86,4%4,55absabsabscostscollectioncollectioncostsdatedatereportabsreportreportpropertiesperperreporttookperreportabscostsdeecostsdatedatepropertiesperpropertiespropertiesdadatedatereportreportreportpeetooktooktookabsabsabsabs
ThresholdProcessor(30%)0,9ms93,2%5,07astoleasreporttolemonmondaetolereportmonmenmenperperperreportmonpermodelmonmodelmodelmondaerecurreportperrecurreportmonreportreportreportreportreporttolemontolepevaxreportreportreport
AutoThresholdProcessor(Kapur)1,1ms93,2%4,95absabsabsanintemttooktooktookdatedatereportperreportanintemtanintemtperperreportgunperteunilanintemtoetookdatekorreportperprtreportildatedatereportreportreportilteuntookpeabsperperper
ThresholdProcessor(50%)0,7ms95,5%5,68rdlreportrdlreportoneoneonerdlreportreportrdlreportreportreportrdlreportreportrdlonereportrdlonerdloneonereportreportrdlreportreportrdlreportreportreportreportreportonerdlrdlonerdlreportreportreport
ThresholdAdaptiveProcessor(16_16)0,5ms97,7%5,84adladladlreportadlreportadladladlreportadlreportreportreportadladlreportadlreportadladladladladlbaeadlreportadlreportreportadlreportreportreportreportreportadladladlbaeadladladladl
ThresholdAdaptiveProcessor(08_08)0,6ms97,7%6,1618reportreportreportreportreportreport18reportreport18reportreportreportreportreportreportreportreportreport18report18report18reportreport18reportreport18reportreportreportreportreportreportreportreport18reportreportreportreport
ThresholdAdaptiveProcessor(20_20)0,9ms97,7%5,39dasbledasreporttootstootstootsdasreportreportdasreportreportreportbleblereporttootsreportreportdasbleadltootsdasreportreportdastootsreportadlreportreportreportreportreportbletootstootsbleblereportreportreport
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%7,48--------------------------------------------
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,48--------------------------------------------
ThresholdProcessor(60%)0,8ms100,0%7,48--------------------------------------------
ThresholdProcessor(80%)0,8ms100,0%7,48--------------------------------------------
AutoThresholdProcessor(Triangle)0,9ms100,0%7,48--------------------------------------------
ThresholdProcessor(20%)0,9ms100,0%5,30voxalteralteractoractoractorvoxactorfiterelomantovoxelomantoelomantofiterfiterfiterasestantvoxfitereefvoxasestantvoxvoxvoxactoraltereefelomantoasestantvoxalteralteractoractorasestantfiteractorvoxvoxfiteractoractoractor
ThresholdProcessor(70%)0,9ms100,0%7,48--------------------------------------------
AutoThresholdProcessor(OTSU)1,1ms100,0%7,48--------------------------------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,48--------------------------------------------

Comparison data generated based on 44 tagged words.

report_example_data-time_001

Show table
ProcessorElapsedWERCER (avg)Imagealarmarchivearchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivexrcancelfunctionhelpokoptionsparametersettingssyntaxwizard
ThresholdProcessor(30%)0,9ms21,1%0,16alarmarchiverarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivercancelfunctionhelpoloptionsparametersettingssyntaxwizard
ThresholdProcessor(20%)0,9ms26,3%0,53alarmarchiverarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveralarmfunctionleokoptionsparametersettingssyntaxwizard
ThresholdProcessor(40%)0,9ms31,6%0,47alarmarchiverarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveralarmfunctionhelpuroptionsparametersettingssyntaxwizard
ThresholdProcessor(50%)0,7ms36,8%0,74alarmarchiverarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveralarmfunctionthlsthlsoptionsparametersettingssyntaxwizard
AutoThresholdProcessor(OTSU)1,1ms36,8%0,74alarmarchiverarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveralarmfunctionthlsthlsoptionsparametersettingssyntaxwizard
ThresholdProcessor(70%)0,9ms47,4%1,68alarmarchiverarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveralarmfunctionalarmalarmoptionsparameteroptionsfunctionalarm
ThresholdProcessor(60%)0,8ms73,7%2,32alarmarchivemarchiveexarchivemarchivemarchivemarchivemarchivemarchiveexarchiveexralarmfunctionalarmalarmfunctionparameterfunctionwizardwizard
ThresholdAdaptiveProcessor(24_24)0,4ms89,5%6,26wizardfunctionwizardfunctionwizardwizardwizardwizardwizardwizardwizardfunctionwizardwizardfunctionwizardfunctionwizardwizard
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%7,42-------------------
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%7,42-------------------
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,42-------------------
AutoThresholdProcessor(Kapur)0,8ms100,0%7,42-------------------
ThresholdProcessor(80%)0,8ms100,0%7,42-------------------
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%7,42-------------------
AutoThresholdProcessor(Triangle)1,3ms100,0%7,42-------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,42-------------------

Comparison data generated based on 19 tagged words.

runtime_function_create_002

Show table
ProcessorElapsedWERCER (avg)Imageactionadministrationcanceldefaultdefineddialogenginefreelyfromhelpinlastlinkedloadnamenookopenprofileprofilessaveservicethevariable
AutoThresholdProcessor(OTSU)1,1ms8,3%0,25actionadministrationnamedefaultdefineddialogenginefreelyfromhelpinlastlinkedloadnamenoinopenprofileprofilessaveservicethevariable
ThresholdProcessor(70%)0,9ms12,5%0,33actionadministrationnamedefaultdefineddialogenginefreelyfromtheinlastlinkedloadnamenoopenprofileprofilessaveservicethevariable
AutoThresholdProcessor(Kapur)1,1ms20,8%0,54actionadministrationnamedefineddefineddialogenginefreelyfromtheinlastlinkedloadnamenoinopenprofileprofilessaveservicethevariable
ThresholdProcessor(60%)0,8ms25,0%0,46actionadministrationnamedefaultdefineddialogenginefreelyfromhelpinlastlinkedoloadnameininopenprofileprofilesnameservicethevariable
ThresholdProcessor(80%)0,8ms25,0%0,38actionadministrationnamedefaultdefineddialogenginefreelyfromtheinlastlinkedloadnamenoinopenprofileprofilessaveservicethevariable
ThresholdProcessor(50%)0,7ms50,0%1,67actionadministrationsavehelpenginedialogenginehelphelphelpinloadinloadsaveininpenprofileprofilessaveservicetheprofile
ThresholdAdaptiveProcessor(20_20)0,9ms54,2%1,12actionadministrationcancethelpenginealogenginefromfromhelpinnameinkednonamenooxopenprofilesprofilesnameservicethevariable
ThresholdAdaptiveProcessor(24_24)0,4ms58,3%1,83inadministrationlinkeddialogenginedialogengineopennotheinopenlinkednothenoinopenprofilesprofilestheservicethevariable
ThresholdAdaptiveProcessor(16_16)0,5ms58,3%1,58inadministrationsavedefautenginedialogenginefromfromtheinloadloadloadsaveloinopenprofileprofilesaveservicetheprofile
ThresholdProcessor(40%)0,9ms58,3%2,08actionadministrationinhelpenginedialogenginehelpinhelpinininintheininopenprofileprofiletheservicetheprofile
ThresholdProcessor(30%)1,2ms62,5%2,17thedialogcancelhelpenginedialogenginehelpokhelpimsavecanceloksaveokokopenprofileprofilesaveservicetheprofile
ThresholdAdaptiveProcessor(08_08)0,6ms66,7%2,62engineservicenamedefineddefinedfromenginefreelyfromfromenginenamedefinedfromnamefromfromfromprofilesprofilesnameservicetamevariable
AutoThresholdProcessor(Triangle)0,9ms66,7%2,46inadministrationthedialogenginedialogenginethethetheintheinthetheininopenprofilesprofilestheservicetheengine
ThresholdAdaptiveProcessor(12_12)0,6ms70,8%2,00inministrationinedlastinedfromenginefromfromeninlastinedinedtheininenprofilesprofilestheservicethevariable
ThresholdProcessor(20%)0,9ms100,0%5,46------------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,00epepepepepepepepepepepepepepepepepepepepepepepep

Comparison data generated based on 24 tagged words.

straton_runtime_configuration_001

Show table
ProcessorElapsedWERCER (avg)Image012007009000advancedapplyboxbycancelcoldcommunicationcyclicallydatadelaydocumentseventfilesforgeneralhelphotloadmodenamenookopenpathportprioritypublicrealredundancyrestartretainrtssettingsstandardstartstartupsteppingstorestoringtestthistimeusersvariableszenon_projects
ThresholdProcessor(40%)0,9ms28,0%0,92by120090009000advancedapplyboxbynamecoldcommunicationcyclicallydatadelayeventeventtimeforgeneralhelphotloadmodenamenobyopenpathportpriorityretainrealredundancyrestartretainbybysettingsstandardstartstartupsteppingstorestoringrealthistimerealvariablesredundancy
ThresholdProcessor(20%)0,9ms34,0%1,18bydatabydataadvancedbyboxbycancelcoldcommunicationcyclicallydatadelayopeneventtimeforgeneralcoldhotjoadmodenamenobyopenpathportprioritybyrealredundancyrestartretainbybysettingsstandardstartstartupsteppingstorestoringtimethistimeopenvariablesopen
ThresholdProcessor(30%)0,9ms34,0%1,14by900090009000advancedbyboxbynamecoldcommunicationyicyclicallydatadelayeventeventtimeforgeneralrealhotloadmodenamenobyopenpathportprioritybyrealredundancyrestartretainbybysettingsstandardstartstartupsteppingstorestoringtimethistimerealvariablesstore
ThresholdProcessor(50%)0,7ms36,0%1,06by900090009000advancedpathboxbyadvancedcoldcommunicationcyclicallydatadelayeventeventtimeforgeneralcoldhotoadmodenamenaforopenpathportprioritypathrealredundancyrestartretainbybysettingsstandardstartstartupsteppingstorestoringstartthistimeusersvariablesrestart
AutoThresholdProcessor(OTSU)1,1ms36,0%1,12by900090009000advancedbyboxbynamecoldcommunicationcyclicallydatadelayopeneventtimeforgeneralrealhotoadmodenamenobyopenpathportprioritybyrealredundancyrestartretainbybysettingsstandardstartstartupsteppingstorestoringstartthistimestorevariablesstore
ThresholdProcessor(60%)0,8ms38,0%1,30by900090009000dataportboxbynamecoldcommunicationcyclicallydatadelayopeneventtimeforgeneralcoldhotoadmodenamenobyopenpathportpriorityretainrealretainrestartretainportbysettingsstandardstartstartupsteppingstorestoringportthistimeusersvariablesstore
ThresholdProcessor(70%)0,9ms38,0%1,28no900090009000advancedcoldboxbynamecoldcyclicallycyclicallydatadelayeventeventtimeforgeneralcoldhotfoadmodenamenoforopenpathportpriortylcrealredundancyrestartretainhotsusettingsstandardstartstartupsteppingstorestoringhotthistimeforvariablesport
AutoThresholdProcessor(Kapur)1,1ms52,0%1,86byopenforopendataopenboxbynamecoldcyclicallycyclicallydatadelayopenopentimeforrealcoldhotcoldmodenamenoforopenpathforpriortyretainrealretainrestartretainhotisretainstartstartstartupsteppingstorestoringtesthistimecausersvariables_projects
ThresholdProcessor(80%)0,8ms54,0%2,14bybybybynamebyboxbynamecoldretaincyckcallydatadelayopenopentimeforrealrealhotfoadmodenamenobyopenpathhotstoringbyrealretainrestartretainbyfsretainstartstartstartsteppingstorestoringthisthistimeusersvariablesstore
ThresholdAdaptiveProcessor(16_16)0,5ms58,0%2,18nopathnopathdatapathboxbynamecoldcyclicallycyclicallydatadataopenopentimeforreacoldnooadmodenamenonoopenpathforpriorityretainrearetainstartretainnonoretainstartstartstartsteppingstorestoringtimethistimeusersvariablesstore
ThresholdAdaptiveProcessor(08_08)0,6ms60,0%2,28bydataboxdatadataportboxbynameboxcyclicallycyclicallydatadataopeneventtimeboxrealrealboxboxmodenamenoboxopendataportpriorityboxrealretainstartretainportbyretainstandardstartstartsteppingstorestoreportthistimestorevariablesstore
ThresholdAdaptiveProcessor(12_12)0,6ms76,0%2,84bydatabydatadatabybybynameforcyciicallycyciicallydatadatadatarealtimeforrealrealforforstorenamebybystorepathforpriorityretainrealretainretainretainbybyretainstorestorestorestoringstorestoringtimetimetimestorevariablesstore
ThresholdAdaptiveProcessor(20_20)0,9ms78,0%3,02bydatabydatadatabybybynameforcyclicallycyclicallydatadatadatahelpforfordatahelpforforstorenamebybydatapathforstoringretainretainretainretainretainbybyretainstorestorestorestoringstorestoringhelptanamestorevariablesstore
ThresholdAdaptiveProcessor(04_04)1,4ms80,0%3,12bydatabydatadatabyboxbydataboxretainvariablesdatadatadataportthisboxnaadataboxboxmodenaabybymodedataportportthisretainretainretainretainbybyretainstandardstattstattstangstorestorethisthisthisthisvariablesport
ThresholdAdaptiveProcessor(24_24)0,4ms84,0%3,20fordatafordatadatarealforforcracforcyckcatycyckcatydatadatadatarealtimeforrealrealforforstoretimeforforstorepathforpriortyretainrealretainretainretaindataforretainstorestorestorestoringstorestoringrealtimetimestorerealstore
AutoThresholdProcessor(Triangle)0,9ms98,0%3,90edantantantantantantedantcollantcolldatdatantantcollantantcollantcollmademadeantededdatantantcollcollantantantantedsteppingantantantsteppingcollsteppingantihmadeedmadeant

Comparison data generated based on 50 tagged words.

worldview_zoom_steps_001

Show table
ProcessorElapsedWERCER (avg)Image%0100canceldeleteeditexistinghelpnewokstepstepstozoom
ThresholdProcessor(30%)1,4ms28,6%0,64okok100canceldeleteeaexistinghelpeaokstepstepstozoom
ThresholdProcessor(20%)0,7ms42,9%1,36to100100cancelstepszoomexistingstepstepokstepstepstozoom
ThresholdProcessor(70%)0,8ms57,1%1,86to100100stepsteps100existingstep100tostepstepstozoom
ThresholdProcessor(40%)0,9ms64,3%2,07tototostepstepszoomexistingstepsteptostepstepstozoom
ThresholdAdaptiveProcessor(12_12)0,6ms85,7%2,64zz100100zoomstepszoomstepszoom100zzstepsstepszzzoom
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%3,79--------------
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%3,79--------------
ThresholdAdaptiveProcessor(24_24)0,6ms100,0%3,79--------------
AutoThresholdProcessor(Kapur)0,7ms100,0%3,79--------------
AutoThresholdProcessor(OTSU)0,7ms100,0%3,79--------------
ThresholdProcessor(50%)0,7ms100,0%3,79--------------
ThresholdProcessor(80%)0,8ms100,0%3,79--------------
AutoThresholdProcessor(Triangle)0,9ms100,0%3,79--------------
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%3,79--------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%3,79--------------
ThresholdProcessor(60%)1,4ms100,0%3,79--------------

Comparison data generated based on 14 tagged words.

zrs_MetadataEditor_variables_001

Show table
ProcessorElapsedWERCER (avg)ImageapplyarchivesbottlechangedclassclassesclearconnectedconveyorCurcurvesdepalletizerdescriptionediteditorefficiencyequipmenteventfilefillerfilteredglassgrategroupshelpinspectorlabelerlinelocalmetadatamodelingmodelsnameonoperationpackerpasteurizerprojectreadyreferencereportingselectedStatetestenvtototalunpackerusersvariablesvisualwasherWS
ThresholdAdaptiveProcessor(12_12)0,6ms86,5%3,73readyvariablestotelchangedtachangedleselectedononchangedselectedreportingononfilteredselectedonlefilteredfilteredtataonhepselectedleletotelreadytoteltoteltaonreportingchangedfilteredtotelreadyreportingreportingselectedtatoteltatotelselectedlevariablestahepon
ThresholdAdaptiveProcessor(20_20)0,9ms90,4%4,54onchangedtotalchangedonchangedtotalselectedononchangedselectedreportingononselectedononononselectedononononselectedchangedontotaltotalontotalononreportingchangedselectedononreportingreportingselectedtotaltotalontotalchangedonchangedtotalchangedon
ThresholdProcessor(60%)0,8ms92,3%3,87opechangedtotalchangedstarechangedoperelectedopersuruneelectedelectedonelectedelectedelectedelectedineineelectedstarerateopeweelectedoperinetotalreadyonoperateonoperoperstareopereadyelectedelectedelectedstateelectedtltotaloperserratetotalseron
ThresholdProcessor(70%)0,9ms92,3%3,19readyvarabiesbottechangedglassglasecarchangedchangederureverableroperatoneverttoevertevertevertineerlreglasssategroupserineverablerinetotalreadyontotalsateonoperatonsatesateevertreadyevertreportingslatestatebettetototaluneevertvarsblestotalsateto
AutoThresholdProcessor(OTSU)1,1ms92,3%3,85readychangedsatechangedcamechangedcorconnectedcorgurcurelectedtoditorelecteduneuneuneuneelectedsatesategurmeuelectedvorablerunetostateonmeuscameontosatesatetoreadyuneonelectedstatesatetotouneunevorablersarsateto
ThresholdAdaptiveProcessor(08_08)0,6ms94,2%4,06readyvariablesboccechangedsatechangedreadychangedcore120coresatesitekisitereadysitebetesitesitesitesatesatereadybetestorebetesitetotalreadycorecoresatekisatesatestoreboccereadyreadyreadysatesatebetekitotalsatesatevariablestotalsateki
ThresholdProcessor(80%)0,8ms96,2%3,13alcarvesbottechangedclassesclassescarconnectedcoveourcarvesbeatieevertittofieevertevertfiefieselectedclassessategrhelpconnectedevertinealbettemolwshoesnameonbeatiecarvesselectedevertbeateevertevertselectedstatebettetotouneevertvariablersusecarveson
ThresholdProcessor(40%)0,9ms98,1%5,04uyzezezezezezezeeditoruyzeeditoreditoreditoreditoreditoreditorzezezeeditorzezeuyzeeditorzezezemutadatazezezezeeditorzeeditorzezezeeditoreditorzezezezezezezeuyzeze
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,77lliilliilllllliiiiiiiilliiiiiiiiiiiiiilliilliiiilliilliilliiiilliiiiiiiiiiiiiiiiiilliiiiiilliiiiiiiiiiii
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%4,98satesatesatesatesatesatecrsatecrcrcrsatesatesatesatesatesatesesatesatesatesatesatecrsesatesatesatecrsatesatesatesatecrsatesatesatesatesatesatesatesatesatesatecrsatesatesesatesatesatecr
ThresholdProcessor(50%)0,7ms100,0%5,19wrewrewredeaddeadwredeaddeadwrewrewredeaddeadwredeadwrewrewrewrewrewredeadwrewredeadwrewrewredeaddeaddeaddeadwrewredeadwrewrewredeadwrewredeadwrewrewredeadwrewrewredeadwrewre
AutoThresholdProcessor(Triangle)0,9ms100,0%6,46----------------------------------------------------
ThresholdProcessor(20%)0,9ms100,0%6,46----------------------------------------------------
ThresholdProcessor(30%)0,9ms100,0%6,46----------------------------------------------------
AutoThresholdProcessor(Kapur)1,1ms100,0%6,46----------------------------------------------------
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,10inniteniteininnitedrniteindrdrdrinindrinininniteniteniteinnitedrinindrinindrindrniteinindrnitedrdrininniteniteniteinnitenitedrniteindrin

Comparison data generated based on 52 tagged words.

zrs_REPORTS_EfficencyClass_009

Show table
ProcessorElapsedWERCER (avg)Image1aallowananalysisanalyzerandarchivesbasedbecancancelcenclasscomcontainscopadatacostscurrentdatadefineddiagramefficiencyequipmentEURforformulaformulasfromgroupshigherhistorichourinislimitlowermodelmodelsnamenewnormalisedokonorpageperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluewwwzenon
ThresholdProcessor(30%)0,9ms29,7%0,5813anallowananalysisanalysisandarchivesbasedbecancancelcanclasscancontainsdatacostscurrantdatadefineddiagramefficiencyequipmentcanforformulaformulasforgroupsthehistorichourinisthatlowermodelmodelsnamanewnormalisedokonorcanperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovalınnewon
ThresholdProcessor(20%)0,9ms32,8%0,5913anallowananalysisanalysisandarchivesbasedbecancancelcanclassoncontainsdatacostsequipmentdatadefineddiagramefficiencyequipmenttheforformulaformulasforgroupshigherhistorichourinislouttowermodelmodelsnamenewnomalisedononornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistoclenewon
AutoThresholdProcessor(OTSU)1,1ms35,9%0,8613anallowananalysisanalysisandarchivesbasedbecancancanclasscancontainsdatacostscandatadefineddiagramefficiencyequipmenttheforformulaformulasforgroupsthehistorichourinisinmodelmodelmodelsbasedbenormalisedononorbasedperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistobasedtheon
ThresholdProcessor(70%)0,9ms39,1%0,9113anallowananalysisanalysisandarchivesbasedbecancancanclassmomcontainsdatacostscandatadefineddiagramefficiencyequipmenttheforformulaformulasforgroupsthehistorichourinisthismodelmodelmodelsthebeformulasononorpreeperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistothetheon
ThresholdAdaptiveProcessor(20_20)0,9ms43,8%1,0013anallowananalysisanalysisandarchivesbasedbecancancanclasscancontainsdataclasscandatadefineddiagramefficiencyequipmertheorformulaformulastogroupsthehistoricorinisinmodelmodelmodelsdatabenormalisedononordataperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistodatatheon
ThresholdProcessor(80%)0,8ms46,9%1,2513anallowananalysisanalysisandarchibasedbecancanbecanclassoncontainsdatacostscandatadefineddataefficiencyefficiencyonforformulaformulasforgroupsthehistorichourinisthatmodelmodelmodelsbasedbeformulasononorbasedperformperiodpreviewpreviewreportreportsshownbasedtemplatetemplatesthatthethemethistocanbeonon
ThresholdProcessor(40%)0,9ms48,4%0,4413anallowananalysisanalysisandarchivesbasedbecancancelcanclasscancortainsdatacostscurrantdatadefineddiagramefficiencyequipmenttheforformulaformulasforgroupshigherhistorichourinisimitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluanewon
ThresholdAdaptiveProcessor(24_24)0,4ms50,0%1,1113anallowananalysisanalysisanarchivesbasedbecancancanclassoncontainsdataclasscandatadefineddataefficiencyequipmentonforformulaformulasforgroupsthehisoricforinisthisformodelmodelsdatabenommalisedononordataperformperiodperiodprocessedreportreportsshowntablestemplatetemplatesthatthethemethistodataonon
AutoThresholdProcessor(Kapur)1,1ms50,0%0,5213anallowananalysisanalysisandarchivesbasedbecancancelcanclasscancontainsdatacostscandatadefineddiagramefficiencyequipmertbeforformulaformulasfromgroupshigherhistorichourinismitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistonamenewon
ThresholdAdaptiveProcessor(16_16)0,5ms51,6%1,36ananananclassbasedandarchivesbasedbecancancanclasscancostsdatacostscandatadefineddiagramefficiencyequipmenttheorformulaformulaongroupsthehistorichourinisliehourmodelmodelsthebebasedononortheperiodperiodpreviewprocessedreportreportsshowntablestemplatetemplatethethethethistolietheon
ThresholdAdaptiveProcessor(12_12)0,6ms51,6%1,1113anallowananalysisanalysisandarchivesbasedbecancancanclassoncontainsdataclasscandatadefineddiagramefficiencyequipmentbeorformulaformulasongroupsihehistoricorinisthatormodelmodelsdatabenormalisedononordataperiodperiodperiodprocessedreportreportshowntablestemplatetemplatesthatthethemethattodatabeon
ThresholdProcessor(60%)0,8ms51,6%0,4713anallowananalysisanalysisandarchivesbasedbecancancelcanclasscancontainsdatacostscurrentdatadefineddiagramefficiencyequipmentbeforformulaformulasfromgroupshigheshistorichourinisislowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistonamenewon
ThresholdAdaptiveProcessor(08_08)0,6ms62,5%1,5515anllanclassnameandisbasedbecancancanclassorcandataclasscurrentdatadefineddiagramefficiencycurrentandorformulasformulasorgroupsthehistoricorinisinormodelmodelnamebenormalisedoronornameperiodperiodperiodprocessedreportreportshownbetemplatetemplatethethetheistonameandon
ThresholdProcessor(50%)0,7ms62,5%0,5613anallowananalysisanalysisandarchivesbasedbecancancanclassoncontainsdatacostscurdatadefineddiagramefficiencyequipmentonforformulaformulasforgroupshigherhistorichourinisbitlowermodelmodelsnamenewnormalisedononornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluanewon
ThresholdAdaptiveProcessor(04_04)1,4ms93,8%3,751010class10classtemplate10classclass10datclass10class10classdataclassreportdatareportdatatemplatereport1010templatetemplate10class10report101010dat10datclassdat10template101010datreportreportreportreportreportreport10classtemplatetemplatedat10template1010dat10report
AutoThresholdProcessor(Triangle)0,9ms100,0%5,16----------------------------------------------------------------

Comparison data generated based on 64 tagged words.

zrs_REPORTS_extended-analysis_017

Show table
ProcessorElapsedWERCER (avg)Image1absoluteaggregatedaggregationanalysisanalyzerandareassociatebasedcalcculatecancelchartscomconsumptioncopadatacounterscreateCYCLICdataDATAdistributionENERGYequipmentextendedfillerfilteringforfromgroupgroupshistorianiniskwhlabellerMACHINEmodelingnamenewofokonpackerpageperformperiodPMpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosthosetrendtwotypesvaluesvariablewithwwwZAD_GBLzenon
ThresholdProcessor(30%)0,9ms31,6%0,7910associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsonconsumpeondatacounterscreatethatdatathatdistributionthatequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabellerthatmodelingnamenewofokonpackerareperformperiodispreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gblon
ThresholdProcessor(60%)0,8ms35,5%0,8810associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsofproductiondatacounterscreatedatadatadatadistributiondataequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabelerdatamodelingarenewofokonpackerareperformperiodofpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon
AutoThresholdProcessor(Kapur)1,1ms36,8%0,9110templateaggregatedaggregationanalysisanalysisandarecreatebasedcalculatecancelchartsofcommamptondatacounterscreatedatadatadatadistributiondataequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabellerdatamodelingnamenewofokonpackerareperformperiodofpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gblon
ThresholdProcessor(20%)0,9ms38,2%0,95ofassociateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsofproductiondatacounterscreatebaseddatathatdistributionbasedequipmentexterdedfillerfilteringforforgroupgroupshistorianinistwotablesbasedmodelingarenewofokonpackerareperformperiodofpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon
ThresholdProcessor(50%)0,7ms40,8%0,7910associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateconcchartscomconsumptiondatacounterscreatebaseddatawithdistributionbasedequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabellerbasedmodelingnamenewofofonpackerareperformperiodinpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon
AutoThresholdProcessor(OTSU)1,1ms40,8%1,1110associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateandchartsofproductiondatacounterscreateofdataofdistributionofequipmentextendedfillerfiteringforforgroupgroupshistorianinistwotablesofmodelingareofofofonpackerareperformperiodofcreatepriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwoofon
ThresholdAdaptiveProcessor(16_16)0,5ms42,1%1,0810associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateandchartsofproductiondatacounterscreatethedatathedistributiontheequipmentextendedvaluesfiteringforforgroupgroupshistorianinistwolabellerthemodelingarenewofofonpackerareperformpriceofpreviewpriceproductionrelativereportreportsselectionshownstandardvaluestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon
ThresholdAdaptiveProcessor(20_20)0,9ms42,1%1,2810associateaggregatedaggregationanalysisanalysisandareassociatebasedcreateandchartsonproductiondatacounterscreatethedatathedistributiontheequipmenttrendfillerfiteringforforgroupgroupshistorianinistwolabellerthefiteringaretheofononareareperformperiodiscreatepriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon
ThresholdProcessor(40%)0,9ms42,1%0,87onassociateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsonproductiondatacounterscreatedatadatadatadistributiondataequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabellerdatamodelingnamenewofononpackerareperformperiodonpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithnewzad_gblon
ThresholdAdaptiveProcessor(24_24)0,4ms43,4%1,1410associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateandchartsofproductiondatacounterscreatethedatathedistributiontheequipmentstandardfillerfillerforforgroupgrouphistorianinistwolabollerthemodelingareneofofonpackerareperformperiodofcreatepriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gblon
ThresholdProcessor(70%)0,9ms43,4%1,1310associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateandchartsonproductiondatacounterscreatethatdatathatdistributionthatequipmentextendedfillerfikeringforforgroupgroupshistorianinistwofillerthatmodelingaretwoofononpackerareperformpesiodoncreatepriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwothaton
ThresholdProcessor(80%)0,8ms46,1%1,43oftemplateaggregatedaggregatedanalysisanalysisandarecreatebasedcalculatebasedchartsofproductiondatacounterscreateofdataofdistributionofequipmentextendedforfiteringforforgroupsgroupshistorianinistwotablesofmodelingareofofofonpackerareperformperiodofcreatepriceproductioncreatereportreportsproductionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwoofon
ThresholdAdaptiveProcessor(08_08)0,6ms55,3%1,84oftemplateaggregatedaggregationanalysisanalysisandandhistorianbasedtemplateandchartsofproductiondatachartscreateofdataofdistributionofequipmentandvaluesfilteringofofgroupgrouphistorianinistwolabellermachinemachinedataofofofonpackerdataperformperformofcreatepriceproductioncreatereportreportselectionshownandtypestemplatetemplatesthatthethemethemethisthisthoseandtwotypesvaluesvariablewithtwomachineon
ThresholdAdaptiveProcessor(12_12)0,6ms55,3%1,58ofassociateaggregatedaggregationanalysisanalysisandareassociateandassociatepricethatofproductiondatacounterscreatethisdatathisdistributionthisequipmentextendedfillerfillerofofgroupgrouphistorianofthistwofillerthismachinearenewofofofpackerareperformpriceofpricepriceproductionrelativereportreportselectionthosestandardvaluestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithnewzad_gblof
ThresholdAdaptiveProcessor(04_04)1,4ms89,5%3,83oftemplatetemplatereportbasedbasedbasedbasedtemplatebasedtemplatebasedthisoftemplatedatathisdatareportdatathisreportreportreporttrendbasedtrendofofofthisreportofthisofbasedreportmachinebasedofofofofbasedbasedreporttrendofreportthisreporttemplatereportreportreportthisbasedbasedtemplatetemplatethisthisthisthisthisthisthistrendthisthisbasedvariabledataofreportreport
AutoThresholdProcessor(Triangle)0,9ms100,0%5,88----------------------------------------------------------------------------

Comparison data generated based on 76 tagged words.

zrs_ZAMS_3rd-connector_014

Show table
ProcessorElapsedWERCER (avg)Image3rdarchiveassignedbottlecancelconnectorcycledatabasedatasourcedddescriptionequipmentforglassgroupshhidentificationlinemediametadatammnewnextokpartyplantpreviousprojectssthetimetotalvariablesvisualname
ThresholdProcessor(20%)0,9ms32,4%0,853rdarchiveassignedbottlelineconnectorcycledatabasesourcedddescriptionequipmentforglassgroupshhidentificationlinedatametadatammnewnewforpartylinegroupsprojecthhthetimedatavariablesvisualname
AutoThresholdProcessor(Kapur)1,1ms35,3%0,823rdarchiveassignedbottlecycleconnectorcycledatabasesource3rddescriptionequipmentforglassgroupsheidentificationlinemediametadataoknewnewokpartypartygroupsprojectokthetimebottlevariablesvisualname
ThresholdProcessor(30%)0,9ms41,2%1,183rdarchiveassignedbottlelineconnectorcycledatabasesource3rddescriptionequipmentforglassgroupshhdescriptionlinemediametadataehnewnewforpartyplantgroupsprojectehthetimedatavariablesline
ThresholdProcessor(40%)0,9ms61,8%2,00mmtimeassignedtimecycleprojectcycledatasourcemmdescriptionequipmentmmssgroupsmmidentificationtimemediametadatammmmmediammdatadatagroupsprojectsstimetimedatavariablesvisualname
ThresholdAdaptiveProcessor(24_24)0,4ms67,6%3,003rdarchivelinebottlelineconnectorlinedatabasedatabase3rdpartylineforglassglasstheconnectorline3rddatabaseqfnewnewforpartypartyarchivepartyqfthelinebottledatabasedatabase
ThresholdAdaptiveProcessor(20_20)0,9ms67,6%2,883rdarchivelinebottenewconnectorthedatabasedatabase3rdarchiveplantforglassglasstheconnectorlinenewdatabaseatnewnewforpartyplantarchiveplantatthethebottearchivedatabase
ThresholdAdaptiveProcessor(08_08)0,6ms88,2%5,38groupsgroupsassignedgroupsgroupsprojectgroupsgroupsgroupsgroupsequipmentequipmentgroupsgroupsgroupsgroupsequipmentassignedgroupsprojectgroupsgroupsprojectgroupsgroupsprojectgroupsprojectgroupsgroupsgroupsgroupsgroupsassigned
ThresholdProcessor(70%)0,9ms88,2%4,09hhmediaplanttotalplantplanteytotaltotalhhmediaplantfoplanttotalhhmediaplantmediamediahheyeyhhplantplantmediaplanthhhhtotaltotalmediaplant
ThresholdAdaptiveProcessor(04_04)1,4ms88,2%5,35groupsgroupsassignedgroupsgroupsequipmentgroupsgroupsgroupsgroupsidentificationequipmentgroupsgroupsgroupsgroupsidentificationassignedgroupsgroupsgroupsgroupsgroupsgroupsgroupsequipmentgroupsgroupsgroupsgroupsequipmentgroupsgroupsassigned
AutoThresholdProcessor(OTSU)1,1ms91,2%4,03aotietietotalplantplanttietieaoaomediaplantaoplantaoaomediatiemediamediaaoaoplantaoplantplantmediaplantaotietietotalmediaplant
ThresholdProcessor(50%)0,7ms94,1%4,47habmediamediaaoplantplantmediahabaoaomediaplantaoplantaohabmediaplantmediamediaaohabmediaaoplantplantmediaplantaohabhabhabmediaplant
ThresholdProcessor(60%)0,8ms97,1%4,88byshabplantbysplantplantbysbysplantbysplantplantbysplantbyshabplantplantplantplantbysbysplantbysplantplantplantplantbysbysbyshabbysplant
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,88----------------------------------
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%5,88----------------------------------
ThresholdProcessor(80%)0,8ms100,0%5,88----------------------------------
AutoThresholdProcessor(Triangle)0,9ms100,0%5,88----------------------------------

Comparison data generated based on 34 tagged words.

zrs_ZAMS_filter-alarmgroup_001

Show table
ProcessorElapsedWERCER (avg)Imagealarmalldeselectemergencyenableeqauipmentexternalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(40%)0,9ms13,3%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(50%)0,7ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(30%)0,9ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(20%)0,9ms26,7%0,40alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilterselectstaticstop
ThresholdProcessor(60%)0,8ms40,0%1,07alarmalamemergencyemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringalarmstaticstop
ThresholdAdaptiveProcessor(12_12)0,6ms46,7%1,27alarmalamenableemergencyenableequipmentexémalfailuregroupmachineprefilterprefitteringstaticstaticstop
AutoThresholdProcessor(OTSU)1,1ms46,7%1,07alarmalamemergencyemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringstopstaticstop
ThresholdAdaptiveProcessor(16_16)0,5ms53,3%1,27alarmalamenableemergencyenableequipmentetemalfailuregroupmachineprefiterprefitteringstopstaticstop
ThresholdProcessor(80%)0,8ms53,3%1,53alarmalamenableemergencyenableequipmentextemalfailuregroupmachineprefikerprefikerstopstaticstop
ThresholdProcessor(70%)0,9ms53,3%1,20alarmalamemergencyemergencyenableequipmentextemalfailuregroupmachineprefitterprefitteringstopstaticstop
ThresholdAdaptiveProcessor(24_24)0,4ms60,0%1,20alarmalamenableemergencyenableequipmentextemalfailuregroupmachineprefitterprefiteringstopstaticstop
ThresholdAdaptiveProcessor(20_20)0,9ms60,0%1,13alarmalamenableemergencyenableequipmenteternalfailuregroupmachineprefiterprefiteringstopstaticstop
AutoThresholdProcessor(Kapur)1,1ms60,0%1,53alarmalamenableemergencyenableequipmentextemalfairegroupmachineprefiterprefiterstopstaticstop
ThresholdAdaptiveProcessor(08_08)0,6ms73,3%2,73alarmalarmenableenableenableequipmentenablefailuregroupmachineprefitteringprefitteringalarmenablegroup
ThresholdAdaptiveProcessor(04_04)1,4ms80,0%4,27failurewanfailuremachinefailuremachinemachinefailuregroupmachinepretitenngpretitenngfailurewangroup
AutoThresholdProcessor(Triangle)0,9ms100,0%7,00---------------

Comparison data generated based on 15 tagged words.

zrs_ZAMS_OLEDB-server_001

Show table
ProcessorElapsedWERCER (avg)ImageaaccessadadbcadhocallallowappliedarecancelcdCDSBG036connectiondbdisallowdriversdynamicenableforgeneralharaldrhelpindexinprocesslevellikelinkedmicrosoftmynamenestednonokoleonlyoperatoroptionspageparameterpathpropertiesproviderqueriesreadyscriptselectserverserverssqlsupportsthatthesethistotransactedupdatesuseusingviewZA2zero
ThresholdProcessor(50%)0,7ms39,3%0,82asaccessasadhocadhocallallowappliedarearecdcdsbg036connectionasdisallowserversdynamicenabletogeneralarehepindexinprocesslevellikelinkedaccessasnamenestednonasuseonlyoperatoroptionspageparameterpathpropertiesproviderquenesreadyselectselectserverserversallsupportsthatthesethistotransactedupdatesuseusingviewusezero
AutoThresholdProcessor(OTSU)1,1ms42,6%1,30asaccessasadhocadhocallallowareareareascdsbgo36connectionasdisallowserversdynamicaretolevelarezeroindexinprocesslevellikelinkedzeroasarenestednonasareonlyoperatoroptionsareparameterpathprogressproviderqueriesreadyserverserversserverserversallsupportsthatthesethistotransactedupdatesuseusingviewarezero
ThresholdProcessor(60%)0,8ms44,3%1,21asaccessasadhocadhocallalowappliedarearecdcdsbgo36connectionasdisallowserversoynamicarenonlevelparametertheseindexinprocesslevellikelinkedaccessasarenestednonnonareonlyoperatoroptionsareparameterpathprogressproviderqueriesreadyserverlevelserverserversallsupportsthatthesethistotransactedupdatesuseusingviewarezero
ThresholdProcessor(40%)0,9ms44,3%1,10asaccessasadhocadhocallallowappliedarenameas32connectionasdisallowserversdynamicnamenongeneralparametertheseindexinprocesslevellinkedlinkedmprocessasnamenestednonasuseonlyoperatoroptionspageparameterpathprogressproviderquenesreadyserverselectaserverserversallsupportsthatthesethistotransactedupdatesuseusingmew32zero
ThresholdProcessor(70%)0,9ms44,3%1,31asaccessasadhocadhocallallowappliedareleveltopathoptionstodisallowserversdynamicenablenonleveloperatorzeroindexinprocesslevellikelinkedoperatormy_namenestednonnonuseonlyoperatoroptionspathparameterpathqueriesproviderqueriespathserverserversserverserverssqlsupportsthatthesethistotransactedupdatesuseusinguseusezero
AutoThresholdProcessor(Kapur)1,1ms45,9%1,34asaccessasadhocadhocallallowappliedarenamebduseoptionstodisallowserversdynamicenablenongeneralparameterhebindexinprocesslevellinkedlinkedaccesstonamenestednonnonuseonlyoperatoroptionspathparameterpathqueriesproviderqueriesthatserverserversserverserversallsupportsthatthesethistotransactedupdatesuseuseuseusezero
ThresholdProcessor(30%)0,9ms49,2%0,82asaccessasodbcadnocallallowspalıedarecancelasoleconnectondbdisalowserversdynamicenableforlevelreadyhelpindexinprocesslevellinkedlinkedmicrosoftasnamenestednonokoleontyoperatoroptionspageparameterpathpropertiesproviderquenesreadyserverselectserverserversallsupportsthatthesethistotransactedupdatesuseusingoleolezero
ThresholdProcessor(80%)0,8ms55,7%1,80asaccessasadhocadhocallallownestedareaccessbdserversoptionstodisallowserversthatallnonlevelallzeroindexinprocesslevellikeinkedaccesstoarenestednonnonuseonlyoperatoroptionspathproviderpathqueriesproviderqueriesthatserversserversserversserversallsupportsthatthesethistotransactedupdatesuseuseusenonzero
ThresholdAdaptiveProcessor(12_12)0,6ms67,2%2,11dbaccessdbodbcachocallallappliedarealldbdboptionsdballdriversmailoleforserversalloleinkedaccessuseuseinkedmicrosoftdbareusenondboleoleoperctoroptionsareprovidertoproviderproviderserversdbthisoleserversserversallsupportsthatthesethistotrensactedupdatesuseusingusedbfor
ThresholdProcessor(20%)0,9ms72,1%2,07alarealodbcodbcalalolearecancelcodbconnecbondbselectserversdynamicnameforgereralarehesderserversserverlinkedlinkedmicrosoftdbnameserverforokoleoleserveroptionspageparameterpageproviderproviderquenesdbselectselectserverserversalserversthetthesethiscocancelpageoleusingoledbder
ThresholdAdaptiveProcessor(08_08)0,6ms75,4%2,56arearecdareprovallallappliedarearecdcdsbg036connectiontoallserversthisaretoserverarealllinkedprogressserverlinkedlinkedprovtoareusenntouseallprovoptionsareproviderprovpropertiesproviderserverareserverserverserverserversallserversthatthisthistolinkeduseuseuseviewuseprov
ThresholdAdaptiveProcessor(20_20)0,9ms82,0%3,00dboledbodbcodbcoleforoleolepagedbforconnectiondbfordriversdboleforgeneralserveroleoledriversserveroleolemicrosoftdbpageserverforforoleoleserveroptionspageproviderpageproviderproviderserverdbserverselectaserverserverforforforoleforforproviderpageoleforoleforfor
ThresholdAdaptiveProcessor(24_24)0,4ms86,9%3,36dboledbodbcodbcoleforoleoleserverdbprovideroptionsdbfordriversodbcoleforserverserveroleodbcdriversserveroleservermicrosoftdboleserverforforoleoleserveroptionsoleproviderforproviderproviderserverdbserverserverserverserverforforforoleforforprovideroptionsoleforoleforfor
AutoThresholdProcessor(Triangle)0,9ms93,4%3,62auaccessauadhecadhecaudisallowadhecauaccessauaccessnonaudisallowaccessadhecadhecnonopeneraccessadhecindexaccessadhecadhecindexaccessauauadhecnonauaunonopenernonauopenerauopeneropenerusauaccessadhecopeneraccessauusauaccessusauaccessadhecususadhecauau
ThresholdAdaptiveProcessor(04_04)1,4ms93,4%3,72mewmewmewmewthismewmewlinkedmewlinkedmewmewconnectionmewmewservermewmewmewserverservermewlinkedpropeniesserverlinkedlinkedmewmewmewlinkedmewmewmewmewserverthismewpropeniesmewpropeniespropeniesservermewserverserverserverservermewserverthisthisthismewlinkedmewmewthismewmewmew
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,31-------------------------------------------------------------

Comparison data generated based on 61 tagged words.

zrs_ZAMS_scatter_002

Show table
ProcessorElapsedWERCER (avg)Imageconfigurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator
ThresholdProcessor(80%)0,8ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator
AutoThresholdProcessor(Kapur)1,1ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator
ThresholdAdaptiveProcessor(24_24)0,4ms18,2%0,82configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalindicator
ThresholdProcessor(50%)0,7ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdProcessor(60%)0,8ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdAdaptiveProcessor(20_20)0,9ms27,3%1,18meaningshorizontalhorizortalindicatorindicatorplotmeaningmeaningsplotscatterverticalverticalindicator
ThresholdProcessor(30%)0,9ms27,3%0,82configurehorizontalhorzontallndicatorindicatormeameaningmeaningsplotscatterverticalhorzontallndicator
ThresholdProcessor(40%)0,9ms27,3%0,27configurehorizontalhorizonttallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdProcessor(70%)0,9ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
AutoThresholdProcessor(OTSU)1,1ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdAdaptiveProcessor(16_16)0,5ms45,5%1,09indicatorhorizontalhorizontallndicatorindicatorplmeaningmeaningsplotscatterverticalverticalindicator
ThresholdAdaptiveProcessor(08_08)0,6ms45,5%2,36meaningverticalverticallndicatorindicatorenmeaningmeaningsplotscatterverticalverticallndicator
ThresholdAdaptiveProcessor(12_12)0,6ms45,5%2,27meaninghorizontalhorizontalindicatormeameaningmeaningsplotscatterverticalindicator
ThresholdAdaptiveProcessor(04_04)1,4ms90,9%7,00verticalverticalverticalverticalverticalverticalverticalverticalverticalverticalvertical
AutoThresholdProcessor(Triangle)0,9ms100,0%9,18-----------
ThresholdProcessor(20%)0,9ms100,0%6,91onfigurecattercattercattercattercattercattercattercattercattercatter

Comparison data generated based on 11 tagged words.

zrs_ZAMS_windrose_002

Show table
ProcessorElapsedWERCER (avg)Image16angularcancelconfigurationdegreedirectiondirectionsEENEforgranularityindicatormeaningmeasurementNNENNEokreportresultsrosevalidatevalidationvariablewind
AutoThresholdProcessor(OTSU)1,1ms28,0%0,6016angularcancelconfigurationdegreedirectiondirection16forforgranularityindicatormeaningmeasurement1616forforreportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(60%)0,8ms32,0%0,64liangularcancelconfigurationdegreedirectiondirectionsliforforgranularityindicatormeaningmeasurementliliforforreportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(20_20)0,9ms32,0%0,7216angularneconfigurationdegreedirectiondirectionsneforforgranularityindicatormeaningmeasurementneneforforreportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(70%)0,9ms32,0%0,84forangularcancelconfigurationdegreedirectiondirectionforforforgranularityindicatormeaningmeasurementforforforforreportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(16_16)0,5ms36,0%0,7216angularneconfigurationdegreedirectiondirections1616forgranularityindicatormeaningmeasurement16161616reportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(24_24)0,4ms40,0%1,1616angularneconfigurationenedirectiondirectionsneforforgranularityindicatormeaningmeasurementneneforforreportreportrosevalidationvalidationvariablewind
ThresholdProcessor(80%)0,8ms40,0%0,92llangularwindconfigurationbeareedirectiondirectionsllforforgranularityindicatormeaningmeasurementllllforforreportresultsrosevalidatevalidationvariablewind
ThresholdAdaptiveProcessor(12_12)0,6ms44,0%1,4016angularneconfigurationenedirectiondirectionsneforforangularindicatormeaningmeasurementneneforforreportreportrosevalidatevalidatevariablewind
ThresholdAdaptiveProcessor(08_08)0,6ms48,0%1,48enresultsmeaningconfigurationfordirectiondirectionsenforforresultsindicatormeaningmeasurementenenforokreportresultsrosewalidatevalidationvariablewind
ThresholdProcessor(50%)0,7ms48,0%0,92inangularcegresconfigurationcegresdirectiondirectioninforforgranularityindicatormeaningmeasurementininforforreportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(40%)0,9ms64,0%1,60leangularcancelconfigurationrosedirectiondirectionleforforangularindicatormeaningmeaningleleforakreportreportrosevalidatevalidationvanablewind
AutoThresholdProcessor(Triangle)0,9ms84,0%4,1616roserosedirectionsrosedirectionsdirections1616roserosewindwindrose16161616roseroseroserosedirectionsrosewind
AutoThresholdProcessor(Kapur)1,1ms92,0%4,24neneneconfigurationeheconfigurationconfigurationneneokyaldateyaldateneyaldateneneneokneneneyaldateyaldateyaldatene
ThresholdAdaptiveProcessor(04_04)1,4ms96,0%4,56crcrcrvalidationcrvalidationvalidationcrcrcrvalidationvalidationcrvalidationcrcrcrcrcrcrcrvalidationvalidationvalidationcr
ThresholdProcessor(20%)0,9ms100,0%6,12-------------------------
ThresholdProcessor(30%)0,9ms100,0%6,12-------------------------

Comparison data generated based on 25 tagged words.

\ No newline at end of file