Items with no label
3341 ディスカッション

Need Help) Can i get some finished example about rs2 - function?

mgum1
ビギナー
2,480件の閲覧回数

Hello, I'm newbee in RealSense SDK 2.0 in C++, Visual Studio. (for D400 Series)

I searched manual of RS SDK 2.0, there are lot's of helpful examples.

but, in rs2 functions, unfortunately, there aren't complete example function.

when i download sdk 2.0 lib, exe etc.. i can see below function and explanation.

ex)

/**

* \brief Creates RealSense context that is required for the rest of the API.

* \param[in] api_version Users are expected to pass their version of \c RS2_API_VERSION to make sure they are running the correct librealsense version.

* \param[out] error If non-null, receives any error that occurs during this call, otherwise, errors are ignored.

* \return Context object

*/

rs2_context* rs2_create_context(int api_version, rs2_error** error);

It explain the rs_create_context function, but there isn't finished examples like,

rs2_context* rs2_create_context(int api_version, rs2_error** error)

{

......... contents...............

}

So, could you show me some finished example about rs2--- functions?

0 件の賞賛
1 解決策
MartyG
名誉コントリビューター III
1,419件の閲覧回数

There is an unofficial documentation site maintained by a developer called unanancyowen that enables documentation information to easily be searched with menus at the top of the page.

https://unanancyowen.github.io/librealsense2_apireference/namespacers2.html Intel® RealSense™ Cross Platform API: rs2 Namespace Reference

元の投稿で解決策を見る

4 返答(返信)
MartyG
名誉コントリビューター III
1,420件の閲覧回数

There is an unofficial documentation site maintained by a developer called unanancyowen that enables documentation information to easily be searched with menus at the top of the page.

https://unanancyowen.github.io/librealsense2_apireference/namespacers2.html Intel® RealSense™ Cross Platform API: rs2 Namespace Reference

DPark11
ビギナー
1,419件の閲覧回数

thank for the help.

I have additional question, Is it possible to use old SDK version (for LR200, SR300 etc..) for D400 series?

there is a book explaining easily on old SDK, but i have to use D435 camera. so, lot's of function in old SDK cannot be used in SDK 2.0 by myself.

is it the way to useing them in D435 camera?

thx alot.

MartyG
名誉コントリビューター III
1,419件の閲覧回数

There is no real compatibility between the 400 Series cameras and the old SDKs unfortunately. There might be a very small number of old SDK functions based on RGB processing that could use the D435, as they could treat the camera as though it was an ordinary RGB webcam instead of a RealSense depth camera. Mostly though, the camera and old SDKs do not work together.

DPark11
ビギナー
1,419件の閲覧回数
返信