@thanhvodad In fact, the mobile browser cannot run the extension.
Therefore, using an extension for mobile fingerprints carries a high risk, you may be detected that you are spoofing.
So maybe this is the reason the developer turned it off.
I think there will be trick to enable it, but I recommend not using the extension when using mobile fingerprint.
Freezes when using the "Image processing" module
-
Hi, I have a project similar to this.

The script will compare images by changing the length of 1 photo, and then compare with 1 original photo.
The length of the image will increase by 1 pixel, until the overlap is less than 90%, it is successful.
But there is a problem, when processing this loop, if the loop is over 100, a temporary "freeze" occurs for a short time of the script, and then resumes running.
If executing in multithreading, if the freeze times overlap, it may cause the script to freeze and no longer work, forcing the script to be shut down, and restarted.
So is there a way to make this image comparison operation not cause "freezes" in processing?
Thanks very much.

-
-
@m4zuper Thanks for the response, but this is not my problem.
I mean loop, this loop causes the script to freeze for a short time, but with multithreading, if the threads execute this loop at the same time, it can cause the script to freeze. -
@Melinda
Could you send a test script in private messages? -
@Melinda The BAS interface is blocked if many synchronous operations are performed, such as image processing. This is not obvious, in order to avoid it, you need to add small pauses at least every thousand repetitions
-
@UserTrue I run 8 threads, and each thread only executes the loop 100 times every 20 seconds, it executes 4 times, and then the script terminates.
I don't think it is too complicated.
But do you have a way to make the image processing go better? -
@Melinda said in Freezes when using the "Image processing" module:
But do you have a way to make the image processing go better?
use node js libraries, for example sharp or opencv
-
@Melinda said in Freezes when using the "Image processing" module:
@UserTrue It is too difficult for my knowledge :(
then try experimenting with pauses
-
@BAS-Viet-Nam Hello. i am having a similar problem. Did you find the exact solution?