[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
  1. # 测试 ocr classification
  2. # ddddocr.exe -a 127.0.0.1 -p 9898 --ocr
  3. # [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12
  4. $webclient = New-Object System.Net.WebClient
  5. $webclient.Encoding = New-Object System.Text.UTF8Encoding -ArgumentList $false
  6. $dddd_url = 'http://127.0.0.1:9898/ocr/b64/text'
  7. # $dddd_url = 'http://127.0.0.1:9898/ocr_probability/b64/text'
  8. Get-ChildItem -Filter captcha*.* -File | ForEach-Object {
  9.   $sjson = ConvertTo-Json @{image = [Convert]::ToBase64String([IO.File]::ReadAllBytes($_.FullName)) } -Compress
  10.   $webclient.Headers.Add('Content-Type', 'application/json')
  11.   $result = $webclient.UploadString($dddd_url, 'Post', $sjson)
  12.   #$webclient.Encoding.GetString($result_bytes)
  13.   $_ | Add-Member -MemberType NoteProperty -Name Captcha -Value $result -PassThru
  14. } | Format-List -Property Name, Captcha
  15. $webclient.Dispose()
复制代码
1

评分人数

微信:flashercs
QQ:49908356

TOP

返回列表