基于镜像效果、亮度和缩放级别读取jpeg文件
我正在开发网关模拟器,模拟器将图像/视频流式传输到数据中心 我有 30 分钟的 JPEG 文件(很多单独的 JPEG 图像)。
数据中心中心可以请求具有不同参数值的视频/图像。
图像选项
1. 镜像效果(无、列、行、行/列)
2. 亮度(普通、强光、弱光、最大)
3. 缩放级别(1X、2X、4X、8X)
拍摄模式
单次快照 - 请求从相机连拍一张图像
中收集 N (1-65535) 个图像
连拍数量 - NUMBER 将从相机连拍 第二个选项生成图像流,并将
继续运行,直到发送 CancelImageRequest 命令。 连续选项生成图像流,并将继续运行,直到发送 CancelImageRequest 命令
Round-Robi- 是一种允许用户从每个活动和选定的传感器获取单个快照的模式
连续安排 - 除了计时之外,这与连续类似。
现在我需要根据上述选项读取 JPEG 文件并将其发送到数据中心。
- 我想知道如何在读取数据时强制执行这些图像选项。
- 是否有任何 Api 允许在以下图像选项上读取 JPeg 图像。
- 如果您有任何建议,请继续。
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.
- I wanted to how I can enforce these Image option while reading the data.
- is there any Api which will allow reading JPeg imges on following Image option.
- If you have any suggestion please go ahead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 fromImage
and theBitmapData
class that allows you direct access to pixelshttp://msdn.microsoft.com/en-us/library/ms534420%28VS.85%29.aspx