色哟哟视频在线观看-色哟哟视频在线-色哟哟欧美15最新在线-色哟哟免费在线观看-国产l精品国产亚洲区在线观看-国产l精品国产亚洲区久久

電子發(fā)燒友App

硬聲App

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示
創(chuàng)作
電子發(fā)燒友網(wǎng)>電子資料下載>電子資料>在Agora Video SDK之上運(yùn)行AI姿勢檢測

在Agora Video SDK之上運(yùn)行AI姿勢檢測

2023-06-30 | zip | 0.00 MB | 次下載 | 免費(fèi)

資料介紹

在 Agora 的 Video SDK 之上運(yùn)行 AI

?

先決條件:

  • 節(jié)點(diǎn)
  • 火力基地功能
  • Agora Web SDK 3.1.0 或以上
  • Firebase 托管

第一步:注冊 Agora 賬號

Agora 每月提供 10,000 分鐘的免費(fèi) sdk 使用時(shí)間,可以完美地用于測試應(yīng)用程序。要注冊一個(gè)帳戶,請?jiān)L問https://sso.agora.io/v2/signup ,您可以從那里開始。

pYYBAGOAIOSAIl8uAAERFqXyFjM229.png
注冊 Agora
?

創(chuàng)建帳戶后,只需創(chuàng)建一個(gè) API 密鑰。

pYYBAGOAIOaAI8BYAAAqhFUVT3E431.png
Agora 儀表板生成臨時(shí)令牌
?

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 步:在畫布上運(yùn)行 tfjs

現(xiàn)在我們有了一個(gè)可以運(yùn)行 AI 推理的元素,我們終于可以使用 TFJS。在撰寫本文時(shí),我們正在通過 TF 2.0 進(jìn)行

></script>
script>

我們現(xiàn)在可以在輸出畫布上運(yùn)行推理

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其實(shí)很簡單,一旦你掌握了關(guān)鍵點(diǎn),我們就可以畫出代表實(shí)時(shí)推理的簡筆畫。現(xiàn)在,我們在 AI 數(shù)據(jù)之上添加了 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];
}

最后一步:現(xiàn)場測試并將其集成到生產(chǎn)中

完成所有工作后,測試通過,然后您可以將其集成到您自己的類似類型的應(yīng)用程序中

要在瑜伽課上現(xiàn)場體驗(yàn),請?jiān)L問https://mixpose.com

poYBAGOX6X2ASqQiAAJxuxgzGnc342.png
https://mixpose.com


下載該資料的人也在下載 下載該資料的人還在閱讀
更多 >

評論

查看更多

下載排行

本周

  1. 1A7159和A7139射頻芯片的資料免費(fèi)下載
  2. 0.20 MB   |  55次下載  |  5 積分
  3. 2PIC12F629/675 數(shù)據(jù)手冊免費(fèi)下載
  4. 2.38 MB   |  36次下載  |  5 積分
  5. 3PIC16F716 數(shù)據(jù)手冊免費(fèi)下載
  6. 2.35 MB   |  18次下載  |  5 積分
  7. 4dsPIC33EDV64MC205電機(jī)控制開發(fā)板用戶指南
  8. 5.78MB   |  8次下載  |  免費(fèi)
  9. 5STC15系列常用寄存器匯總免費(fèi)下載
  10. 1.60 MB   |  7次下載  |  5 積分
  11. 6模擬電路仿真實(shí)現(xiàn)
  12. 2.94MB   |  4次下載  |  免費(fèi)
  13. 7PCB圖繪制實(shí)例操作
  14. 2.92MB   |  2次下載  |  免費(fèi)
  15. 8零死角玩轉(zhuǎn)STM32F103—指南者
  16. 26.78 MB   |  1次下載  |  1 積分

本月

  1. 1ADI高性能電源管理解決方案
  2. 2.43 MB   |  452次下載  |  免費(fèi)
  3. 2免費(fèi)開源CC3D飛控資料(電路圖&PCB源文件、BOM、
  4. 5.67 MB   |  141次下載  |  1 積分
  5. 3基于STM32單片機(jī)智能手環(huán)心率計(jì)步器體溫顯示設(shè)計(jì)
  6. 0.10 MB   |  137次下載  |  免費(fèi)
  7. 4A7159和A7139射頻芯片的資料免費(fèi)下載
  8. 0.20 MB   |  55次下載  |  5 積分
  9. 5PIC12F629/675 數(shù)據(jù)手冊免費(fèi)下載
  10. 2.38 MB   |  36次下載  |  5 積分
  11. 6如何正確測試電源的紋波
  12. 0.36 MB   |  19次下載  |  免費(fèi)
  13. 7PIC16F716 數(shù)據(jù)手冊免費(fèi)下載
  14. 2.35 MB   |  18次下載  |  5 積分
  15. 8Q/SQR E8-4-2024乘用車電子電器零部件及子系統(tǒng)EMC試驗(yàn)方法及要求
  16. 1.97 MB   |  8次下載  |  10 積分

總榜

  1. 1matlab軟件下載入口
  2. 未知  |  935121次下載  |  10 積分
  3. 2開源硬件-PMP21529.1-4 開關(guān)降壓/升壓雙向直流/直流轉(zhuǎn)換器 PCB layout 設(shè)計(jì)
  4. 1.48MB  |  420062次下載  |  10 積分
  5. 3Altium DXP2002下載入口
  6. 未知  |  233088次下載  |  10 積分
  7. 4電路仿真軟件multisim 10.0免費(fèi)下載
  8. 340992  |  191367次下載  |  10 積分
  9. 5十天學(xué)會AVR單片機(jī)與C語言視頻教程 下載
  10. 158M  |  183335次下載  |  10 積分
  11. 6labview8.5下載
  12. 未知  |  81581次下載  |  10 積分
  13. 7Keil工具M(jìn)DK-Arm免費(fèi)下載
  14. 0.02 MB  |  73810次下載  |  10 積分
  15. 8LabVIEW 8.6下載
  16. 未知  |  65988次下載  |  10 積分
主站蜘蛛池模板: 国产精品久久久久影院嫩草 | 小小水蜜桃3视频在线观看 小向美奈子厨房magnet | 国产成人免费a在线视频app | 国产亚洲va在线电影 | 91精品视频网站 | 做i爱视频30分钟免费 | 精品视频在线观看视频免费视频 | 久久AAAA片一区二区 | 禁室培欲在线视频免费观看 | 92精品国产成人观看免费 | 91九色视频无限观看免费 | 亚洲色欲色欲WWW在线成人网 | 久草在线新是免费视频 | 亚洲精品久久久午夜福利电影网 | 男女午夜性爽快免费视频不卡 | se01短视频在线观看 | 婷婷综合亚洲爱久久 | 亚洲黄色大片 | FREECHINESE东北女人真爽 free18sex性自拍裸舞 | jizzjizz丝袜 | 国产成人女人在线视频观看 | 国产99精品在线观看 | SM双性精跪趴灌憋尿调教H | 长篇高h肉爽文丝袜 | 伊人久久久久久久久香港 | 国产精品99久久久久久WWW | 国产精品久久精品视 | 成人毛片免费在线观看 | 福利视频一二三在线观看 | 狠狠躁日日躁人人爽 | 一个色夫导航 | 欧美日韩一区二区三区四区 | 亚洲 欧美 国产 综合 播放 | 国精产品一区二区三区有限公司 | 亚洲专区中文字幕视频专区 | xnxx18美女| 男人J桶进男人屁股过程 | 久久夜色精品国产亚州AV卜 | 老头操美女 | 国产成人女人在线视频观看 | 亚洲午夜一区二区电影院 |