惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 鞠强

HBase初探 C#访问Azure的资源 HDInsight - 1,简介 Windows8.1画热度图 - 坑 使用windbg查看DependencyObject的属性 LiveSDK初始化/登录时失败的解决办法 开发WP版本的大菠萝英雄榜 SQL 2014 in-memory中的storage部分 XAML绑定 Diablo3狗熊榜 微软上海招聘有经验的.NET开发人员 塔防蜀的存档分析 我的HD2手机 和我一起作Tess的windbg lab,结束 和我一起作Tess的windbg lab - Lab7, MemoryLeak 和我一起作Tess的windbg lab - Lab6, MemoryLeak - 鞠强 和我一起作Tess的windbg lab - Lab5, Crash 和我一起作Tess的windbg lab - Lab4, High CPU 和我一起作Tess的windbg lab - Lab3, Memory
Kinect 1
鞠强 · 2013-04-02 · via 博客园 - 鞠强

如果用定时器,在AllFramesReady里面生成图片时,System.Windows.Forms.Timer不好用,应该用System.Timers.Timer。区别在这里:http://msdn.microsoft.com/en-us/magazine/cc164015.aspx

Skeletion追踪时,使之Smooth的方法如下:

TransformSmoothParameters tsp = new TransformSmoothParameters();                 

tsp.Smoothing = 0.5f;                 

tsp.Correction = 0.5f;                 

tsp.Prediction = 0.5f;                 

tsp.JitterRadius = 0.05f;                 

tsp.MaxDeviationRadius = 0.04f;

kinect.SkeletonStream.Enable(tsp);

ColorImageFrame转换成bmp的代码

        using (ColorImageFrame cif = e.OpenColorImageFrame())
            {
                if (cif == null) return;

                byte[] data = new byte[cif.PixelDataLength];
                cif.CopyPixelDataTo(data);

                IntPtr ptrData = Marshal.AllocHGlobal(data.Length);
                Marshal.Copy(data, 0, ptrData, data.Length);

                using (Bitmap bmp = new Bitmap(cif.Width, cif.Height, cif.Width * cif.BytesPerPixel, PixelFormat.Format32bppRgb, ptrData))
                {
                    g.DrawImage(bmp, 0, 0);
                }

                Marshal.FreeHGlobal(ptrData);
            }

注意IntPtr那个要free掉,否则会有内存泄露。同时,new bitmap那个,要注意imageframe在new的时候,选择的PixelFormat。

骨骼支点转换为colorimageframe点的方法

Microsoft.Kinect.CoordinateMapper cm = new CoordinateMapper(kinect);
ColorImagePoint cip = cm.MapSkeletonPointToColorPoint(joint.Position, kinect.ColorStream.Format);

而原来的如下代码,已经obsolete

图片叠加:

用render过的图片,放在一个新背景上。

1、找一个图做新背景。g.DrawImage(back,0,0);

2、用ColorImageFrame和DepthImageFrame把人扣出来,形成一个Bitmap对象

3、设置manBitmap.MakeTransparent();

4. 把人贴上。g.DrawImage(manBitmap,0,0)

第二步中,噪点太厉害。