Can I get Color 1920 and Depth 1280 in a pipeline, on Android 7.1? Device is D435
Android Studio, Kotlin, code as :
Config().use { config ->
config.enableStream(StreamType.COLOR, 1920, 1080)
config.enableStream(StreamType.DEPTH, 1280, 720)
mPipeline!!.start(config).use { pp ->
mHandler.post(mStreaming)
}
}
When I run apk on device, I got the errors. devices os version is 7.1.
any one can help me?
-
In the Android case in the link below where this error was occurring, the RealSense user in that case found that it was because the application was destroying the pipeline when restarting. They fixed the problem by changing the code so that the pipeline was not destroyed.
Please sign in to leave a comment.
Comments
3 comments