基于镜像效果、亮度和缩放级别读取jpeg文件

发布于 2024-11-06 03:15:14 字数 669 浏览 2 评论 0原文

我正在开发网关模拟器,模拟器将图像/视频流式传输到数据中心 我有 30 分钟的 JPEG 文件(很多单独的 JPEG 图像)。

数据中心中心可以请求具有不同参数值的视频/图像。
图像选项
1. 镜像效果(无、列、行、行/列)
2. 亮度(普通、强光、弱光、最大)
3. 缩放级别(1X、2X、4X、8X)

拍摄模式

单次快照 - 请求从相机连拍一张图像

中收集 N (1-65535) 个图像

连拍数量 - NUMBER 将从相机连拍 第二个选项生成图像流,并将

继续运行,直到发送 CancelImageRequest 命令。 连续选项生成图像流,并将继续运行,直到发送 CancelImageRequest 命令
Round-Robi- 是一种允许用户从每个活动和选定的传感器获取单个快照的模式
连续安排 - 除了计时之外,这与连续类似。

现在我需要根据上述选项读取 JPEG 文件并将其发送到数据中心。

  1. 我想知道如何在读取数据时强制执行这些图像选项
  2. 是否有任何 Api 允许在以下图像选项上读取 JPeg 图像。
  3. 如果您有任何建议,请继续。

I am working on the gateway Simulator where Simulator will stream image/video to Data center
I have JPEG file for 30 min(lot of individual JPEG images).

Data Center Center can request video/Image with varying value of these parameter.
Image Option
1. Mirror Effect (None,Column,Row,Row / Column)
2. Brightness (Normal,Intense Light,Low Light,MAX)
3. Zoom Level (1X, 2X, 4X, 8X)

Capture mode

Single Snapshot- requests one image from the camera

Burst Number- NUMBER will gather N (1-65535) number of images from the camera

Burst Second-option produces a stream of images and will go until a CancelImageRequest command is sent

Continuous- option produces a stream of images and will go until a CancelImageRequest command is sent
Round-Robi-, is a mode to allow the user to get a single snapshot from each active and selected sensor
Schedule Continuous- THis is similar to Continuous except timing.

Now I need to read JPEG files based above mentioned option and send it to data center.

  1. I wanted to how I can enforce these Image option while reading the data.
  2. is there any Api which will allow reading JPeg imges on following Image option.
  3. If you have any suggestion please go ahead.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩人痒 2024-11-13 03:15:14

GDI+ 有一个 Image 类,可以加载 JPEG 并对其进行操作 -
http://msdn.microsoft.com/en-us /library/ms534462%28VS.85%29.aspx
如果您没有找到您正在寻找的操作,您可以使用从 Image 继承的 Bitmap 类和允许的 BitmapData 类您可以直接访问像素
http://msdn.microsoft.com/en-us /library/ms534420%28VS.85%29.aspx

GDI+ has an Image class that can load JPEGs and manipulate them -
http://msdn.microsoft.com/en-us/library/ms534462%28VS.85%29.aspx
If you don't find then manipulation you're looking for you can use the Bitmap class that ingerits from Image and the BitmapData class that allows you direct access to pixels
http://msdn.microsoft.com/en-us/library/ms534420%28VS.85%29.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文