如何将 WinBioCaptureSample 转换为图像
我的问题是这样的:我得到了 WINBIO_BIR_DATA 类型的二进制数据的数据结构(http://207.46.172.252/en-us/library/dd401649(VS.85).aspx),我相信这是 ac 结构。我如何将其转换为图像?
看起来它给了我某种尺寸?有人对如何将其转换为我可以解析和使用的图像有任何想法吗?
My problem is this: I'm given a data structure of binary data of type WINBIO_BIR_DATA (http://207.46.172.252/en-us/library/dd401649(VS.85).aspx) which is a c struct I believe. How would I convert it to an image?
It seems it give me some kind of size? Anyone have any ideas on how to convert this into an image I can parse and use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WINBIO_BIR_DATA
用于供应商特定的数据。如果您想要图像,它将位于
WINBIO_BIR
的StandardDataBlock
(如果HeaderBlock
的类型设置为)WINBIO_ANSI_381_FORMAT_TYPE
。如果您想将 ANSI 381 图像转换为 DIB,您可能可以在网上找到足够的信息来缩小差距。
The
WINBIO_BIR_DATA
is for vendor-specific data.If you want an image, it'll be in the
WINBIO_BIR
'sStandardDataBlock
if theHeaderBlock
's Type is set toWINBIO_ANSI_381_FORMAT_TYPE
.If you want to convert an ANSI 381 image to a DIB, you can probably find enough information online to close the gap.