- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我需要将像素着色器应用于此代码(全屏四边形)。我有 FX 文件。程序是什么? (编辑完成:代码正在运行)
public int CompositeImage(IntPtr pD3DDevice, IntPtr pddsRenderTarget, AMMediaType pmtRenderTarget, long rtStart, long rtEnd, int dwClrBkGnd, VMR9VideoStreamInfo[] pVideoStreamInfo, int cStreams)
{
try
{
if (udevice != pD3DDevice)
{
InitCompositionDevice(pD3DDevice);
}
// will be creating managed object from those so increment ref count
Marshal.AddRef(pddsRenderTarget);
Marshal.AddRef(pVideoStreamInfo[0].pddsVideoSurface);
device.Clear(ClearFlags.Target, Color.Red, 1f, 0);
device.BeginScene();
// here the video frame will be stored
Texture capturedVideoTexture = null;
// this is the output surface
Surface renderTarget = new Surface(pddsRenderTarget);
// get the surface for the input video
Surface videoSurface = new Surface(pVideoStreamInfo[0].pddsVideoSurface);
// will use this rect for calculations
Rectangle videoSurfaceRect = new Rectangle(0, 0, videoSurface.Description.Width, videoSurface.Description.Height);
// create single layer texture from input video
capturedVideoTexture = new Texture(device, videoSurfaceRect.Width, videoSurfaceRect.Height, 1, Usage.RenderTarget, Format.A8R8G8B8, Pool.Default);
// get its surface
Surface textureSurface = capturedVideoTexture.GetSurfaceLevel(0);
// will use this rect for calculations
Rectangle textureSurfaceRect = new Rectangle(0, 0, textureSurface.Description.Width, textureSurface.Description.Height);
// copy the whole video surface into the texture surface
device.StretchRectangle(videoSurface, videoSurfaceRect, textureSurface, textureSurfaceRect, TextureFilter.Linear);
// identity matreices for world projection and view
device.Transform.World = Matrix.Identity;
device.Transform.Projection = Matrix.Identity;
device.Transform.View = Matrix.Identity;
// setup viewport
Viewport view = new Viewport();
view.X = 0;
view.Y = 0;
view.Width = 1920;
view.Height = 1080;
view.MinZ = 0;
view.MaxZ = 1;
device.Viewport = view;
// writing will go to output surface
device.SetRenderTarget(0, renderTarget);
// nothing fancy of a vertex shader
device.VertexFormat = CustomVertex.PositionTextured.Format;
// use the texture while rendering
device.SetTexture(0, capturedVideoTexture);
//Bind our Vertex Buffer
device.SetStreamSource(0, vb, 0);
// setup and apply shader
ps.Begin(FX.None);
ps.BeginPass(0);
ps.SetValue("ScreenTexture", capturedVideoTexture);
//Render from our Vertex Buffer
device.DrawPrimitives(PrimitiveType.TriangleList, 0, 2);
ps.EndPass();
ps.End();
device.EndScene();
videoSurface.Dispose();
textureSurface.Dispose();
capturedVideoTexture.Dispose();
renderTarget.Dispose();
videoSurface = null;
renderTarget = null;
capturedVideoTexture = null;
}
catch (Exception e)
{
Debug.WriteLine(e.ToString());
}
return 0;
}
这是最终实现的效果:VMR9 视频上的棕褐色:
现在剩下的就是编写 3D 内容的浮雕着色器 :)
最佳答案
从视频帧创建您的纹理,然后 LockRect 它并复制数据。您现在在 D3D9 纹理中拥有数据。
加载像素着色器很容易。使用 D3DXCreateEffectFromFile .
渲染带有纹理的四边形可以通过查看 Internet 上的任何教程轻松学习。试试这个:
http://www.drunkenhyena.com/cgi-bin/view_cpp_article.pl?chapter=2;article=30
如果设置正确,效果将自动应用于四边形。
编辑:从您的代码来看,您似乎没有设置世界、 View 或投影矩阵。您也不设置视口(viewport)。
首先,您应该将所有矩阵设置为恒等式。这意味着您传入的顶点将在管道中移动而不会发生任何变化。然后您需要记住“投影”空间从 -1 到 1(从左到右从下到上)。
因此您需要按如下方式定义四边形:
ver[0] = new CustomVertex.PositionTextured(-1, 1, 0, 0, 0);
ver[1] = new CustomVertex.PositionTextured(1, 1, 0, 1, 0);
ver[2] = new CustomVertex.PositionTextured(-1, -1, 0, 0, 1);
ver[3] = new CustomVertex.PositionTextured(1, 1, 0, 1, 0);
ver[4] = new CustomVertex.PositionTextured(1, -1, 0, 1, 1);
ver[5] = new CustomVertex.PositionTextured(-1, -1, 0, 0, 1);
然后您需要按如下方式设置视口(viewport)(这是一个 C++ 视口(viewport)设置,因为我并没有真正使用 C#):
D3DVIEWPORT9 vp;
vp.X = 0;
vp.Y = 0;
vp.Width = 1920;
vp.Height = 1080;
vp.MinZ = 0.0f;
vp.MaxZ = 1.0f;
pDevice->SetViewport( &vp );
此时我希望在屏幕上看到整个纹理。
顺便说一句,我也不完全确定你在 SetTextureStageState 中做什么......你只是说“选择 Arg1”。您是否将相当于 D3DTA_TEXTURE 的值传递给 COLOR ARG 1?
关于c# - 使用 DirectX 将像素着色器应用于视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5380588/
我对此很陌生,我在这里的论坛上检查过答案,但我没有找到任何真正可以帮助我的答案。我正在尝试播放 res/raw 文件夹中的视频。到目前为止我已经设置了这段代码: MediaPlayer mp; @Ov
我可以播放一个视频剪辑,检测视频的结尾,然后创建一个表单,然后播放另一个视频剪辑。我的问题是,表单 react 不正确,我创建了带有提交按钮和两个单选按钮可供选择的表单。我希望让用户进行选择,验证响应
首先,我必须说我在web2py讨论组中看到过类似的内容,但我不太理解。 我使用 web2py 设置了一个数据库驱动的网站,其中的条目只是 HTML 文本。其中大多数将包含 img和/或video指向相
我正在尝试在视频 View 中播放 YouTube 视频。 我将 xml 布局如下: 代码是这样的: setContentView(R.layout.webview); VideoV
我正在开发一个需要嵌入其中的 youtube 视频播放器的 android 应用程序。我成功地从 API 获得了 RTSP 视频 URL,但是当我试图在我的 android 视频 View 中加载这个
我目前正在从事一个使用 YouTube API 的网络项目。 我完全不熟悉 API。所以每一行代码都需要付出很多努力。 使用以下代码,我可以成功检索播放列表中的项目: https://www.goog
是否可以仅使用视频 ID 和 key 使用 API V3 删除 youtube 视频?我不断收到有关“必需参数:部分”丢失的错误消息。我用服务器和浏览器 api 键试了一下这是我的代码: // $yo
所以我一直坚持这个大约一个小时左右,我就是无法让它工作。到目前为止,我一直在尝试从字符串中提取整个链接,但现在我觉得只获取视频 ID 可能更容易。 RegEx 需要从以下链接样式中获取 ID/URL,
var app = angular.module('speakout', []).config( function($sceDelegateProvider) {
我正在努力从 RSS 提要中阅读音频、视频新闻。我如何确定该 rss 是用于新闻阅读器还是用于音频或视频? 这是视频源:http://feeds.cbsnews.com/CBSNewsVideo 这是
利用python反转图片/视频 准备:一张图片/一段视频 python库:pillow,moviepy 安装库 ?
我希望在用户双击视频区域时让我的视频全屏显示,而不仅仅是在他们单击控件中的小图标时。有没有办法添加事件或其他东西来控制用户点击视频时发生的情况? 谢谢! 最佳答案 按照 Musa 的建议,附
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
我有一个公司培训视频加载到本地服务器上。我正在使用 HTML5 的视频播放来观看这些视频。该服务器无法访问网络,但我已加载 apache 并且端口 8080 对同一网络上的所有机器开放。 这些文件位于
我想混合来自 video.mp4 的视频(时长 1 分钟)和来自 audio.mp3 的音频(10 分钟持续时间)到一个持续时间为 1 分钟的输出文件中。来自 audio.mp3 的音频应该是从 4
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 8年前关闭。 Improve this questi
我正在尝试使用 peer/getUserMedia 创建一个视频 session 网络应用程序。 目前,当我将唯一 ID 发送到视频 session 时,我能够听到/看到任何加入我的 session
考虑到一段时间内的观看次数,我正在评估一种针对半自动脚本的不同方法,该脚本将对视频元数据执行操作。 简而言之,只要视频达到指标中的某个阈值,就说观看次数,它将触发某些操作。 现在要执行此操作,我将不得
我正在通过iBooks创建专门为iPad创建动态ePub电子书的网站。 它需要支持youtube视频播放,所以当我知道视频的直接路径时,我正在使用html5 标记。 有没有一种使用html5 标签嵌入
我对Android不熟悉,我想浏览youtube.com并在Webview内从网站显示视频。当前,当我尝试执行此操作时,将出现设备的浏览器,并让我使用设备浏览器浏览该站点。如果Webview不具备这种
我是一名优秀的程序员,十分优秀!