SDK does not contain any platforms. error (android)

By default sdk was installed under the 

C:\Users\<user_name>\AppData\Local\Android\sdk\ directory

Not inside the

C:\Users\<user_name>\.AndroidStudio2.1\

So now change your sdk path by browsing above specified path. And you have to add JAVA_HOME path under System Variable.

You can change the sdk path by copy pasting the entire sdk directory from C Drive to any new location.

重新启动,即可进入,进入后发现start a new android studio project无效

一般是因为SDK没有找到,按下图操作即可。

 

android studio点击start a new android studio project没反应

 

 

android studio点击start a new android studio project没反应

 

 

android studio点击start a new android studio project没反应

 

 

android studio点击start a new android studio project没反应

 

转载于:https://www.cnblogs.com/akiha/p/5751475.html

### Orbbec SDK C++ Code Examples and Documentation For developers interested in utilizing the Orbbec SDK with C++, comprehensive resources are available that provide both detailed documentation and practical code examples. The official Orbbec website offers extensive documentation covering setup, configuration, and usage of various features within the SDK[^1]. This includes tutorials on initializing devices, capturing data streams such as depth or color images, processing this information using provided algorithms, and integrating these functionalities into applications. Additionally, GitHub repositories associated with Orbbec projects often contain valuable sample codes written specifically for C++. These samples demonstrate how to implement core functionalities like setting up pipelines, configuring sensors, handling different types of frames (e.g., RGB-D), applying filters, performing spatial mapping tasks, among others. Exploring these repositories can offer insights into best practices when developing applications based on the Orbbec platform[^2]. Moreover, community forums dedicated to discussing topics related to 3D camera technologies frequently feature discussions around coding challenges encountered while working with the Orbbec SDK. Such platforms serve not only as sources of inspiration but also places where one might find solutions to specific issues faced during development work. ```cpp // Example: Initializing an Orbbec device using C++ #include <orbbec/orbbec.hpp> int main() { try { ob::Context ctx; auto list = ctx.queryDevices(); if (list.empty()) throw std::runtime_error("No device connected"); auto dev = list.front(); dev.open(); // Further operations... } catch(const std::exception& e){ std::cerr << "Error occurred:" << e.what() << "\n"; return EXIT_FAILURE; } return EXIT_SUCCESS; } ``` --related questions-- 1. What kind of preprocessing steps should be taken before starting a project involving the Orbbec SDK? 2. How does one integrate machine learning models with data captured from Orbbec cameras? 3. Are there any particular considerations regarding performance optimization when deploying apps built upon the Orbbec SDK? 4. Can you recommend some advanced techniques for enhancing image quality obtained through Orbbec hardware?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值