[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] PowerShell有什么模块或组件可以识别图片的方向并另存为正向?

遇到一个问题, 有时扫描的身份证或社保卡图片是反着的, 用什么模块或组件可以识别图片的方向并另存为正向图片? 求路过大佬指路, 多谢, 例如下面这个图

本帖最后由 flashercs 于 2024-11-9 17:54 编辑

python有很多库可用.
powershell可以用paddleSharp库.https://github.com/sdcb/PaddleSh ... tation-detection.md
  1. # 指定PaddleSharp.dll的路径
  2. Add-Type -Path '.\OpenCvSharp.dll', '.\Sdcb.PaddleInference.dll', '.\Sdcb.RotationDetector.dll'
  3. if (-not $?) { return }
  4. # 要检测的OCR图片
  5. $pics = @(
  6.   '.\pics\ocr_test1.png'
  7.   '.\pics\ocr_test2.jpg'
  8.   '.\pics\ocr_test3.jpg'
  9. )
  10. try {
  11.   $detector = [Sdcb.RotationDetector.PaddleRotationDetector]::new([Sdcb.RotationDetector.RotationDetectionModel]::EmbeddedDefault)
  12.   foreach ($pic in $pics) {
  13.     try {
  14.       $mat = [OpenCvSharp.Cv2]::ImRead($pic)
  15.       $rotationResult = $detector.Run($mat)
  16.       $pic
  17.       $rotationResult.Rotation | Write-Host -ForegroundColor Green
  18.       $null = $rotationResult.RestoreRotationInPlace($mat)
  19.       $null = $mat.SaveImage($pic + '_restore_rotation' + [IO.Path]::GetExtension($pic))
  20.     } finally {
  21.       if ($mat) { $mat.Dispose(); $mat = $null; }
  22.     }
  23.     trap {}
  24.   }
  25. } finally {
  26.   if ($detector) { $detector.Dispose() }
  27. }
  28. trap {}
复制代码
2

评分人数

微信:flashercs
QQ:49908356

TOP

返回列表