0
我使用WinJs創建一個應用程序,使用JavaScript獲取相機預覽。 預覽我得到一個videoframe,但現在我想獲得所有像素rgba數據來計算平均顏色和其他信息。 我使用Media.Capture類的getPreviewFrameAsync方法。這樣對嗎?在這些類的JavaScript的Windows應用程序:從JavaScript預覽框中獲取像素數據
mediaCapture.getPreviewFrameAsync(videoFrame)
.then(function (currentFrame) {
//get pixeldata rgba of frame of camerapreview
}
文檔是非常差.... 感謝。
IngD