- Posts: 1
- Thank you received: 0
.NET Code for Better and Faster Image Processing for Barcode
• Median smoothing image processing (RecognitionHints.ImageBinarizationHints.MedianSmoothing)
• HLS image processing (RecognitionHints.ImageBinarizationHints.HLS)
• Grayscale image processing (RecognitionHints.ImageBinarizationHints.Grayscale)
Median smoothing: MedianSmoothing technique gives a perfect result. In more complicated images, less data will be lost by taking the median. MedianSmoothing removes the noise from the image while preserving the image edges.
HLS: HLS is also a Color space similar to RGB. But instead of red, green and blue components, HLS contain Hue, Luminance & Saturation components. It's a color space in which the Hue, saturation and luminance of a color can be separated and modified.
GrayScale: It converts image to grayscale. This processing technique can be useful while detecting bar codes from scanned or slightly damaged images. The probability of bar code detection will increase by this setting.
The following code snippet shows how to use median smoothing, HLS and gray-scale image processing techniques while recognizing the barcode.
[C#]
[VB.NET]
Please Log in or Create an account to join the conversation.
Pete
DigiOz Webmaster
www.digioz.com
Please Log in or Create an account to join the conversation.
- cathyhill345
- Offline
- New Member
- Posts: 1
- Thank you received: 0
zarfishan wrote: This Technical tip explains how to perform faster and better barcode image recognition using Aspose.BarCode for .NET. Aspose.BarCode for .NET provides better and faster barcode recognition using the following image processing algorithms:
• Median smoothing image processing (RecognitionHints.ImageBinarizationHints.MedianSmoothing)
• HLS image processing (RecognitionHints.ImageBinarizationHints.HLS)
• Grayscale image processing (RecognitionHints.ImageBinarizationHints.Grayscale)
Thanks for recommending this barcode image recognition solution. I just have one question that can I use it to set the number of decoded barcode numbers when processing source image file?
Please Log in or Create an account to join the conversation.
Pete
DigiOz Webmaster
www.digioz.com
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.