- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am using Microsoft visual studio to edit the code for the camera. Would anyone by any chance know what I can write in the wmain() in order to call Property_color_focal_length_mm? The documentation says that I can use the helper functions QueryXXX and SetXXX of the device interface to get the property values without involving the property enumerator. So does this mean that I should write in wmain the following:
pp ->QueryCaptureManager() ->Set(I don't know what I would put here) ->(PXCCapture::Device::Property_color_focal_length_mm)
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The method would be PXCCapture::Device::QueryColorFocalLengthMM.You can use it like this:
PXCCapture::Device* device = pp ->QueryCaptureManager()->QueryDevice(); if (device) // the device might not exist before you started any streams { device->QueryColorFocalLengthMM(); }

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page