更新ocr图片识别

This commit is contained in:
yaooo 2023-10-11 15:04:34 +08:00
parent 1c0482a76a
commit 7b9296039c

View File

@ -166,7 +166,6 @@ class XunFeiController extends BaseApiController
$iatHostUrl = "wss://iat-api.xfyun.cn/v2/iat"; $iatHostUrl = "wss://iat-api.xfyun.cn/v2/iat";
$iat = new IatClient($this->app_id, $this->api_key, $this->api_secret); $iat = new IatClient($this->app_id, $this->api_key, $this->api_secret);
$client = new Client($iat->assembleAuthUrl($iatHostUrl)); $client = new Client($iat->assembleAuthUrl($iatHostUrl));
if ($client) {
$frameSize = 1280; //每一帧的音频大小 $frameSize = 1280; //每一帧的音频大小
$intervel = 20 * 1000; //发送音频间隔 $intervel = 20 * 1000; //发送音频间隔
$status = 0; $status = 0;
@ -246,17 +245,10 @@ class XunFeiController extends BaseApiController
break; break;
} }
} }
} else {
// 删除临时音频文件
if (file_exists($file)) {
//unlink($file);
}
return $this->fail('无法连接到 WebSocket 服务器');
}
fclose($audioFile); fclose($audioFile);
// 删除临时音频文件 // 删除临时音频文件
if (file_exists($file)) { if (file_exists($file)) {
//unlink($file); unlink($file);
} }
} catch (\Exception $e) { } catch (\Exception $e) {
if (file_exists($file)) { if (file_exists($file)) {
@ -334,6 +326,10 @@ class XunFeiController extends BaseApiController
} }
$ext = pathinfo($file, PATHINFO_EXTENSION); $ext = pathinfo($file, PATHINFO_EXTENSION);
$base64_image = base64_encode(file_get_contents($file)); $base64_image = base64_encode(file_get_contents($file));
if (file_exists($file)) {
// 删除临时文件
unlink($file);
}
$ocr = new OcrClient($this->app_id, $this->api_key, $this->api_secret); $ocr = new OcrClient($this->app_id, $this->api_key, $this->api_secret);
$ocrHostUrl = $ocr->assembleAuthUrl($ocrHostUrl); $ocrHostUrl = $ocr->assembleAuthUrl($ocrHostUrl);
$requestBody = [ $requestBody = [
@ -359,7 +355,7 @@ class XunFeiController extends BaseApiController
] ]
] ]
]; ];
$responseData = ''; $text = [];
try { try {
$client = new GzClient(['timeout' => 2]); $client = new GzClient(['timeout' => 2]);
$response = $client->request('POST', $ocrHostUrl, [ $response = $client->request('POST', $ocrHostUrl, [
@ -367,18 +363,20 @@ class XunFeiController extends BaseApiController
'verify' => false 'verify' => false
]); ]);
$responseData = $response->getBody()->getContents(); $responseData = $response->getBody()->getContents();
if (file_exists($file)) { $responseArray = json_decode($responseData, true);
// 删除临时文件 if (empty($responseArray['payload']['result']['text'])) {
unlink($file); return $this->fail('json解析错误');
}
$encodeText = $responseArray['payload']['result']['text'];
$textArray = json_decode(base64_decode($encodeText), true);
$lineArray = $textArray['pages'][0]['lines'] ?? [];
foreach($lineArray as $item) {
$text[] = $item['words'][0]['content'] ?? '';
} }
} catch (GuzzleException $e) { } catch (GuzzleException $e) {
if (file_exists($file)) {
// 删除临时文件
unlink($file);
}
return $this->fail($e->getMessage()); return $this->fail($e->getMessage());
} }
return $this->data(['words' => (string)$responseData]); return $this->data(['words' => $text]);
} }
} }