Xiao Ling

Results 15 comments of Xiao Ling

@FWICSS Can't you run the example? I haven't encountered any compatibility issues so far, even though the SDK version is ">=2.12.3

@Sami32 you can use dilation and color invert to detect the second one. ```python from dbr import * import imageio import cv2 as cv import numpy as np import dbr...

@Sami32 although Dynamsoft Barcode Reader does not support animated GIF, you can do some image processing yourself to make it work. Here is my code using Dynamsoft Barcode Reader Python...

@thdigalakis - enable/disable the torch, (not implemented) - set decoding format for qr codes, ( cameraView.BarcodeParameters = "{\"Version\":\"3.0\", \"ImageParameter\":{\"Name\":\"IP1\", \"BarcodeFormatIds\":[\"BF_QR_CODE\"], \"ExpectedBarcodesCount\":20}}"; ) - choose front or back camera in order...

@thdigalakis The official Dynamsoft .NET MAUI SDK is on its way. You can use the open-source project to build your own apps if it's urgent.

@KenFellows `/lib/x86_64/libDynamsoftCore.so in namespace clns-6` is weird. Did you run the app in an Android emulator?

@KenFellows does your device have the `libpthread.so.0` file?

@AthanasiosKampylis Thanks for your feedback. It might be a compatibility issue caused by .NET 8. I haven't tried .NET 8 yet. You can probably find the answer in the Microsoft...

@kevinvenclovas for image processing, the returned image is grayscale. Here is the code to save it: ```c# byte[] buffer = (byte[])e.Buffer; int width = e.Width; int height = e.Height; int...

@kevinvenclovas check out the [source code](https://github.com/yushulx/Capture-Vision-Maui/blob/main/Capture.Vision.Maui/Platforms/Windows/NativeCameraView.cs): ```c# private void OnFrameAvailable(MediaFrameReader sender, MediaFrameArrivedEventArgs args) { var frame = sender.TryAcquireLatestFrame(); if (frame == null) return; SoftwareBitmap bitmap = frame.VideoMediaFrame.SoftwareBitmap; if (_bitmapQueue.Count ==...