Popular Post Danyfirex Posted March 30, 2024 Popular Post Posted March 30, 2024 Hello guys. I just did another OCR wrapper for this nice library.   What's AU3-RapidOCR? RapidOCR UDF is a simple wrapper for RapidOCR library. Features. Get Text From Image File. Easy to use.  Usage: #include "RapidOCR.au3" _Example() Func _Example() MsgBox(0, "", _RapidOCR_ImageToText(@ScriptDir & "\images\Image1.png")) EndFunc  Check RapidOCR UDF on GitHub.  Saludos argumentum, jugador, mutleey and 3 others 6  Danysys.com     AutoIt...  UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection  PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut  Â
ptrex Posted April 17, 2024 Posted April 17, 2024 Hi Danyfirex, Good to see you are still developing in AutIT 🙂 I see that this Library is using ONNX Open Neural Network Exchange AI  (https://onnx.ai/) Correct ? Can you tell a bit more why we should use this library compared to other conventional OCR libraries ? It is better, faster more reliable, ...  PS : I use OCR on a daily basis for different purposes. Thanks Hashim 1 Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New
Danyfirex Posted April 17, 2024 Author Posted April 17, 2024 I really don't know much about which one is better only that it gave me better results than tesseract in a project I was doing so that's why I made the wrapper.  Saludos ptrex and Hashim 1 1  Danysys.com     AutoIt...  UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection  PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut  Â
konya Posted November 29, 2024 Posted November 29, 2024 (edited) Wish can use GDI+ bitmap to OCR. Â Found OcrLiteCApi.cpp support bitmap but I'm not have VS build dll. Â Global Const $tagOCR_POINT = _ "double x;" & _ "double y;" Global Const $tagOCR_INPUT = _ "ptr bitmap;" & _ "int type;" & _ "int channels;" & _ "int width;" & _ "int height;" & _ "long dataLength;" Global Const $tagTEXT_BLOCK = _ "ptr boxPoint;" & _ "float boxScore;" & _ "int angleIndex;" & _ "float angleScore;" & _ "double angleTime;" & _ "ptr text;" & _ "float charScores;" & _ "uint64 charScoresLength;" & _ "uint64 boxPointLength;" & _ "uint64 textLength;" & _ "double crnnTime;" & _ "double blockTime;" Global Const $tagOCR_RESULT = _ "double dbNetTime;" & _ "ptr textBlocks;" & _ "uint64 textBlocksLength;" & _ "double detectTime;" Â Edited December 3, 2024 by konya Read Public or Pravite key information data tool (Read PEM) GDI+ Image deskew and crop
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now