mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
git-svn-id: https://zxing.googlecode.com/svn/trunk@2712 59b500cc-1b3d-0410-9834-0bbf25fbcc57
98 lines
3.4 KiB
C#
98 lines
3.4 KiB
C#
// /*
|
|
// * Copyright 2009 ZXing authors
|
|
// *
|
|
// * Licensed under the Apache License, Version 2.0 (the "License");
|
|
// * you may not use this file except in compliance with the License.
|
|
// * You may obtain a copy of the License at
|
|
// *
|
|
// * http://www.apache.org/licenses/LICENSE-2.0
|
|
// *
|
|
// * Unless required by applicable law or agreed to in writing, software
|
|
// * distributed under the License is distributed on an "AS IS" BASIS,
|
|
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// * See the License for the specific language governing permissions and
|
|
// * limitations under the License.
|
|
// */
|
|
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
|
|
using ZXing.Common;
|
|
|
|
namespace ZXing.PDF417.Internal
|
|
{
|
|
/// <summary>
|
|
/// A Barcode Value for the PDF417 barcode.
|
|
/// The scanner will iterate through the bitmatrix,
|
|
/// and given the different methods or iterations
|
|
/// will increment a given barcode value's confidence.
|
|
///
|
|
/// When done, this will return the values of highest confidence.
|
|
/// </summary>
|
|
/// <author>Guenther Grau (Java Core)</author>
|
|
/// <author>Stephen Furlani (C# Port)</author>
|
|
public sealed class BarcodeValue
|
|
{
|
|
private readonly IDictionary<int, int> values = new Dictionary<int, int>();
|
|
|
|
/// <summary>
|
|
/// Incremenets the Confidence for a given value. (Adds an occurance of a value)
|
|
///
|
|
/// </summary>
|
|
/// <param name="value">Value.</param>
|
|
public void SetValue(int barcodeValue)
|
|
{
|
|
// ints can't be null in C# - check for containmentship
|
|
if (values.ContainsKey(barcodeValue))
|
|
{
|
|
int confidence = values[barcodeValue];
|
|
confidence ++;
|
|
values[barcodeValue] = confidence;
|
|
} else
|
|
{
|
|
values.Add(barcodeValue, 1);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines the maximum occurrence of a set value and returns all values which were set with this occurrence.
|
|
/// </summary>
|
|
/// <returns>an array of int, containing the values with the highest occurrence, or null, if no value was set.</returns>
|
|
public int[] GetValue()
|
|
{
|
|
// if (confidence == null || confidence.Count == 0)
|
|
// {
|
|
// return new int[0];
|
|
// }
|
|
// int max = (from pair in confidence select pair.Value).Max();
|
|
// return (from pair in confidence where pair.Value == max select pair.Key).ToArray();
|
|
int maxConfidence = -1;
|
|
List<int> result = new List<int>();
|
|
foreach (var entry in values)
|
|
{
|
|
if (entry.Value > maxConfidence)
|
|
{
|
|
maxConfidence = entry.Value;
|
|
result.Clear();
|
|
result.Add(entry.Key);
|
|
} else if (entry.Value == maxConfidence)
|
|
{
|
|
result.Add(entry.Key);
|
|
}
|
|
}
|
|
return result.ToArray();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the confience value for a given barcode value
|
|
/// </summary>
|
|
/// <param name="barcodeValue">Barcode value.</param>
|
|
public int GetConfidence(int barcodeValue)
|
|
{
|
|
return values.ContainsKey(barcodeValue) ? values[barcodeValue] : 0;
|
|
}
|
|
|
|
}
|
|
}
|
|
|