資料介紹
在 Agora 的 Video SDK 之上運行 AI
先決條件:
- 節點
- 火力基地功能
- Agora Web SDK 3.1.0 或以上
- Firebase 托管
第一步:注冊 Agora 賬號
Agora 每月提供 10,000 分鐘的免費 sdk 使用時間,可以完美地用于測試應用程序。要注冊一個帳戶,請訪問https://sso.agora.io/v2/signup ,您可以從那里開始。
創建帳戶后,只需創建一個 API 密鑰。
。。
。
id="output" >
id="image" />
imagectx.clearRect(0, 0, $('#output').width(), $('#output').height());
imagectx.save();
imagectx.scale(-1, 1);
imagectx.translate(-$('#output').width(), 0);
imagectx.drawImage(video, 0, 0, $('#output').width(), $('#output').height());
imagectx.restore();
第 4 步:在畫布上運行 tfjs
現在我們有了一個可以運行 AI 推理的元素,我們終于可以使用 TFJS。在撰寫本文時,我們正在通過 TF 2.0 進行
></script>
script>
我們現在可以在輸出畫布上運行推理
async function poseDetectionFrame() {
if(!JSON.parse(getMeta("useai")))
{
return;
}
let poses = [];
let minPoseConfidence;
let minPartConfidence;
imagectx.clearRect(0, 0, $('#output').width(), $('#output').height());
imagectx.save();
imagectx.scale(-1, 1);
imagectx.translate(-$('#output').width(), 0);
imagectx.drawImage(video, 0, 0, $('#output').width(), $('#output').height());
imagectx.restore();
const pose = await net.estimatePoses(image, {
flipHorizontal: false,
decodingMethod: 'single-person'
});
ctx.clearRect(0, 0, $('#output').width(), $('#output').height());
ctx.save();
ctx.scale(-1, 1);
ctx.translate(-$('#output').width(), 0);
ctx.drawImage(video, 0, 0, $('#output').width(), $('#output').height());
ctx.restore();
poses = poses.concat(pose);
minPoseConfidence = + 0.15;
minPartConfidence = + 0.1;
// For each pose (i.e. person) detected in an image, loop through the poses
// and draw the resulting skeleton and keypoints if over certain confidence
// Step 5
requestAnimationFrame(poseDetectionFrame);
}
poseDetectionFrame();
setTimeout(function () {
$owlCarouselNew.trigger('refresh.owl.carousel');
}, 1500);
}
第 5 步:獲取 AR 簡筆畫
AR其實很簡單,一旦你掌握了關鍵點,我們就可以畫出代表實時推理的簡筆畫。現在,我們在 AI 數據之上添加了 AR,以便讓用戶更好地展示他們的姿勢。
poses.forEach(({score, keypoints}) => {
if (score >= minPoseConfidence) {
drawKeypoints(keypoints, minPartConfidence, ctx);
drawSkeleton(keypoints, minPartConfidence, ctx);
/*
if (guiState.output.showBoundingBox) {
drawBoundingBox(keypoints, ctx);
}*/
}
});
通過以下功能
function drawPoint(ctx, y, x, r, color) {
ctx.beginPath();
ctx.arc(x, y, r, 0, 2 * Math.PI);
ctx.fillStyle = color;
ctx.fill();
}
/**
* Draw the bounding box of a pose. For example, for a whole person standing
* in an image, the bounding box will begin at the nose and extend to one of
* ankles
*/
function drawBoundingBox(keypoints, ctx) {
const boundingBox = posenet.getBoundingBox(keypoints);
ctx.rect(
boundingBox.minX, boundingBox.minY, boundingBox.maxX - boundingBox.minX,
boundingBox.maxY - boundingBox.minY);
ctx.strokeStyle = boundingBoxColor;
ctx.stroke();
}
/**
* Draws a line on a canvas, i.e. a joint
*/
function drawSegment([ay, ax], [by, bx], color, scale, ctx) {
ctx.beginPath();
ctx.moveTo(ax * scale, ay * scale);
ctx.lineTo(bx * scale, by * scale);
ctx.lineWidth = lineWidth;
ctx.strokeStyle = color;
ctx.stroke();
}
/**
* Draws a pose skeleton by looking up all adjacent keypoints/joints
*/
function drawSkeleton(keypoints, minConfidence, ctx, scale = 1) {
const adjacentKeyPoints =function drawPoint(ctx, y, x, r, color) {
ctx.beginPath();
ctx.arc(x, y, r, 0, 2 * Math.PI);
ctx.fillStyle = color;
ctx.fill();
}
/**
* Draw the bounding box of a pose. For example, for a whole person standing
* in an image, the bounding box will begin at the nose and extend to one of
* ankles
*/
function drawBoundingBox(keypoints, ctx) {
const boundingBox = posenet.getBoundingBox(keypoints);
ctx.rect(
boundingBox.minX, boundingBox.minY, boundingBox.maxX - boundingBox.minX,
boundingBox.maxY - boundingBox.minY);
ctx.strokeStyle = boundingBoxColor;
ctx.stroke();
}
/**
* Draws a line on a canvas, i.e. a joint
*/
function drawSegment([ay, ax], [by, bx], color, scale, ctx) {
ctx.beginPath();
ctx.moveTo(ax * scale, ay * scale);
ctx.lineTo(bx * scale, by * scale);
ctx.lineWidth = lineWidth;
ctx.strokeStyle = color;
ctx.stroke();
}
/**
* Draws a pose skeleton by looking up all adjacent keypoints/joints
*/
function drawSkeleton(keypoints, minConfidence, ctx, scale = 1) {
const adjacentKeyPoints =
posenet.getAdjacentKeyPoints(keypoints, minConfidence);
adjacentKeyPoints.forEach((keypoints) => {
drawSegment(
toTuple(keypoints[0].position), toTuple(keypoints[1].position), color,
scale, ctx);
});
}
/**
* Draw pose keypoints onto a canvas
*/
function drawKeypoints(keypoints, minConfidence, ctx, scale = 1) {
for (let i = 0; i < keypoints.length; i++) {
const keypoint = keypoints[i];
if (keypoint.score < minConfidence) {
continue;
}
const {y, x} = keypoint.position;
drawPoint(ctx, y * scale, x * scale, 3, color);
}
}
function toTuple({y, x}) {
return [y, x];
}
posenet.getAdjacentKeyPoints(keypoints, minConfidence);
adjacentKeyPoints.forEach((keypoints) => {
drawSegment(
toTuple(keypoints[0].position), toTuple(keypoints[1].position), color,
scale, ctx);
});
}
/**
* Draw pose keypoints onto a canvas
*/
function drawKeypoints(keypoints, minConfidence, ctx, scale = 1) {
for (let i = 0; i < keypoints.length; i++) {
const keypoint = keypoints[i];
if (keypoint.score < minConfidence) {
continue;
}
const {y, x} = keypoint.position;
drawPoint(ctx, y * scale, x * scale, 3, color);
}
}
function toTuple({y, x}) {
return [y, x];
}
最后一步:現場測試并將其集成到生產中
完成所有工作后,測試通過,然后您可以將其集成到您自己的類似類型的應用程序中
要在瑜伽課上現場體驗,請訪問https://mixpose.com
- AI遇冷?2023從融資再看AI“芯”賽道? 2次下載
- Xilinx AI SDK用戶指南
- Xilinx AI SDK編程指南
- 基于 M5StickV 的錯誤姿勢檢測器開源分享
- Yoga AI從單個圖像進行3D姿勢估計
- SS524V100 SDK安裝編譯
- RK3568 SDK 的編譯
- WTR-521 棒球速度檢測雷達 彩頁
- Python語言在AI、大數據方面的重要性 25次下載
- 人體行為識別API接口aip-php-sdk-4.15.4 3次下載
- NVIDIA JetPack SDK AI應用程序指南 0次下載
- ST MC SDK 5.x相電流檢測與重構 23次下載
- Keil_SDK軟件精簡腳本安裝 2次下載
- Digital Video Standards The 19
- Overview of AVS Video Standard
- 瑞薩MCU/MPU在AI方面的應用 743次閱讀
- 如何在RZ/V2L評估板套件上使用AI SDK 766次閱讀
- 在AI愛克斯開發板上用OpenVINO?加速YOLOv8目標檢測模型 1134次閱讀
- microblaze之Video Processing Subsystem調試誤區 1640次閱讀
- API、SDK是什么?SDK和API的區別 2134次閱讀
- 快速了解聲網Agora SDK 3.0 3464次閱讀
- fireflyNCC S1--Android SDK燒寫軟件介紹 1638次閱讀
- 如何快速構建一個移動跨平臺視頻通話應用 2653次閱讀
- Zynq在sdk中選擇lwip模板的參數優化 6091次閱讀
- 圖像遷移最新成果:人體姿勢和舞蹈動作遷移 6195次閱讀
- 從圖像數據中提取非常精準的姿勢數據 9250次閱讀
- 一個允許在瀏覽器中進行實時人體姿勢判斷的機器學習模型 3782次閱讀
- 一文知道Zynq平臺運行SDK程序錯誤的解決辦法 7890次閱讀
- Xilinx SDK使用教程 4725次閱讀
- ZedBoard學習手記(九) 在ZedBoard上運行QT圖形軟件 1414次閱讀
下載排行
本周
- 1山景DSP芯片AP8248A2數據手冊
- 1.06 MB | 532次下載 | 免費
- 2RK3399完整板原理圖(支持平板,盒子VR)
- 3.28 MB | 339次下載 | 免費
- 3TC358743XBG評估板參考手冊
- 1.36 MB | 330次下載 | 免費
- 4DFM軟件使用教程
- 0.84 MB | 295次下載 | 免費
- 5元宇宙深度解析—未來的未來-風口還是泡沫
- 6.40 MB | 227次下載 | 免費
- 6迪文DGUS開發指南
- 31.67 MB | 194次下載 | 免費
- 7元宇宙底層硬件系列報告
- 13.42 MB | 182次下載 | 免費
- 8FP5207XR-G1中文應用手冊
- 1.09 MB | 178次下載 | 免費
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234315次下載 | 免費
- 2555集成電路應用800例(新編版)
- 0.00 MB | 33566次下載 | 免費
- 3接口電路圖大全
- 未知 | 30323次下載 | 免費
- 4開關電源設計實例指南
- 未知 | 21549次下載 | 免費
- 5電氣工程師手冊免費下載(新編第二版pdf電子書)
- 0.00 MB | 15349次下載 | 免費
- 6數字電路基礎pdf(下載)
- 未知 | 13750次下載 | 免費
- 7電子制作實例集錦 下載
- 未知 | 8113次下載 | 免費
- 8《LED驅動電路設計》 溫德爾著
- 0.00 MB | 6656次下載 | 免費
總榜
- 1matlab軟件下載入口
- 未知 | 935054次下載 | 免費
- 2protel99se軟件下載(可英文版轉中文版)
- 78.1 MB | 537798次下載 | 免費
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420027次下載 | 免費
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234315次下載 | 免費
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費
- 6電路仿真軟件multisim 10.0免費下載
- 340992 | 191187次下載 | 免費
- 7十天學會AVR單片機與C語言視頻教程 下載
- 158M | 183279次下載 | 免費
- 8proe5.0野火版下載(中文版免費下載)
- 未知 | 138040次下載 | 免費
評論
查看更多