无法使用阿帕奇骆驼读取条形码
来源:爱站网时间:2021-09-16编辑:网友分享
您好,我尝试使用以下代码从图像中读取条形码,但由于包含多个条形码,因此我无法读取该文件。有什么解决办法吗? @GetMapping(value =“ OCR / ...
问题描述
您好,我尝试使用以下代码从图像中读取条形码,但由于包含多个条形码,因此我无法读取该文件。有没有解决的办法?
@GetMapping(value = "OCR/Apachecamel")
@ApiOperation(value = "Get result from Barcode Apachecamel library")
public BarcodeInfo GetApachecamelResult() throws Exception {
try {
InputStream barCodeInputStream = new FileInputStream("images/multiple.png");
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(
new BufferedImageLuminanceSource(ImageIO.read(barCodeInputStream))));
if (bitmap.getWidth()
pom.xml
org.apache.camel camel-barcode 2.21.1
有人可以让我知道对此有任何解决方法吗?在此先感谢
解决方法:
我要先学习fundamentals-of-algorithms和Java,然后再学习TRY_HARDER
并使用TRY_HARDER
:)
GenericMultipleBarcodeReader