gpt4 book ai didi

javascript - Nativescript 核心将 imageAsset 转换为 Imagesource ML 套件和相机接口(interface)

转载 作者:行者123 更新时间:2023-11-28 17:15:35 26 4
gpt4 key购买 nike

我正在使用 Nativescript 核心和带有 nativescript-camera 插件的 firebase ML 套件进行在线版本的文本识别(我不知道是否有更好的插件)

目前我对这个事件有一个想法:

exports.onCapture = function () {
if (camera.isAvailable()) {
var options = { width: 300, height: 300, keepAspectRatio: false, saveToGallery: false};
camera.takePicture(options)
.then(function (imageAsset) {
getTextFromPhotoCloud("HOW TO CONVERT imageAsset TO IMAGESOURCE");
}).catch(function (err) {
console.log("Error -> " + err.message);
});
}
}

以及 ml Kit 的代码:

function getTextFromPhotoCloud(imageSource) {
var firebase = require("nativescript-plugin-firebase");

firebase.mlkit.textrecognition.recognizeTextCloud({
image: imageSource
}).then(function (result) {
console.log(result.text ? result.text : "");
}).catch(function (errorMessage) {
return console.log("ML Kit error: " + errorMessage);
});
}

如何将相机响应转换为图像源格式(用于 ML 套件)而不将其保存在图库中?

有没有更好的相机插件或其他东西?实际上,我必须启动相机应用程序、拍照并接受预览才能启动 ML 套件。应用程序中是否可以有更集成的东西(不需要为每张照片执行 3 个操作)可以连接到 ML 套件的在线模式?像这样的代码,坚果使用云方法而不是实时的:

<MLKitTextRecognition
class="my-class"
width="260"
height="380"
processEveryNthFrame="10"
preferFrontCamera="false"
[pause]="pause"
[torchOn]="torchOn"
(scanResult)="onTextRecognitionResult($event)">
</MLKitTextRecognition>

最佳答案

在图像源中使用fromAsset方法。

import { fromAsset } from "tns-core-modules/image-source"

fromAsset(imageAsset).
then((imageSource) => {
.....
});

关于javascript - Nativescript 核心将 imageAsset 转换为 Imagesource ML 套件和相机接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53535495/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com