ArFrame.acquireCameraImage() is not working Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceWorking with video instead of camera input for ARCore in AndroidWill the front facing camera work with ARCoreArcore preview 2 apk doesn't work on note8ViewRenderable not working properly with VideoView[SceneForm ARCore]Android ArCore Animated 3D Objects Not Animation movements not workingViewRenderable not working ARCoreFor ARCore TramsformableNode, Pinch getsture doesn't work at the first timeWill ARCORE work on Huawei Mate 10? it is working on p20 line and they have the exact same hardware except one less camera lensGetting Instant Preview to work with Unity & AndroidWhy not work on arcore unity's ios platform
Interesting examples of non-locally compact topological groups
Simulating Exploding Dice
How do you clear the ApexPages.getMessages() collection in a test?
Array/tabular for long multiplication
What do you call a plan that's an alternative plan in case your initial plan fails?
What's the difference between (size_t)-1 and ~0?
Estimated State payment too big --> money back; + 2018 Tax Reform
How is simplicity better than precision and clarity in prose?
What did Darwin mean by 'squib' here?
What is the electric potential inside a point charge?
How to rotate it perfectly?
Can I throw a sword that doesn't have the Thrown property at someone?
Passing functions in C++
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
Did the new image of black hole confirm the general theory of relativity?
How did the aliens keep their waters separated?
Why is there no army of Iron-Mans in the MCU?
What computer would be fastest for Mathematica Home Edition?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
Who can trigger ship-wide alerts in Star Trek?
What to do with post with dry rot?
Is it possible to ask for a hotel room without minibar/extra services?
Problem when applying foreach loop
Why does tar appear to skip file contents when output file is /dev/null?
ArFrame.acquireCameraImage() is not working
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceWorking with video instead of camera input for ARCore in AndroidWill the front facing camera work with ARCoreArcore preview 2 apk doesn't work on note8ViewRenderable not working properly with VideoView[SceneForm ARCore]Android ArCore Animated 3D Objects Not Animation movements not workingViewRenderable not working ARCoreFor ARCore TramsformableNode, Pinch getsture doesn't work at the first timeWill ARCORE work on Huawei Mate 10? it is working on p20 line and they have the exact same hardware except one less camera lensGetting Instant Preview to work with Unity & AndroidWhy not work on arcore unity's ios platform
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I want to make get bitmap from ScreenView.
So before get bitmap I get Image like below.
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
but it's not working with exception like "com.google.ar.core.exceptions.NotYetAvailableException"
how can I solve this problem.
here is my full code.
[arFragment]
class StudyScanFragment : ArFragment()
override fun getSessionConfiguration(session: Session?): Config
planeDiscoveryController.setInstructionView(null)
val config = Config(session)
config.updateMode = Config.UpdateMode.LATEST_CAMERA_IMAGE
session!!.configure(config)
this.arSceneView.setupSession(session)
val studyScanActivity = activity as StudyScanActivity
if(studyScanActivity.setUpAugmentedImageDb(config, session))
//
else
//
return config
[StudyScanActivity]
fun onUpdateFrame(frameTime: FrameTime)
try
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
checkType(captureImage)
catch (e : Exception)
Log.e(TAG, e.toString())
arcore sceneform
add a comment |
I want to make get bitmap from ScreenView.
So before get bitmap I get Image like below.
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
but it's not working with exception like "com.google.ar.core.exceptions.NotYetAvailableException"
how can I solve this problem.
here is my full code.
[arFragment]
class StudyScanFragment : ArFragment()
override fun getSessionConfiguration(session: Session?): Config
planeDiscoveryController.setInstructionView(null)
val config = Config(session)
config.updateMode = Config.UpdateMode.LATEST_CAMERA_IMAGE
session!!.configure(config)
this.arSceneView.setupSession(session)
val studyScanActivity = activity as StudyScanActivity
if(studyScanActivity.setUpAugmentedImageDb(config, session))
//
else
//
return config
[StudyScanActivity]
fun onUpdateFrame(frameTime: FrameTime)
try
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
checkType(captureImage)
catch (e : Exception)
Log.e(TAG, e.toString())
arcore sceneform
add a comment |
I want to make get bitmap from ScreenView.
So before get bitmap I get Image like below.
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
but it's not working with exception like "com.google.ar.core.exceptions.NotYetAvailableException"
how can I solve this problem.
here is my full code.
[arFragment]
class StudyScanFragment : ArFragment()
override fun getSessionConfiguration(session: Session?): Config
planeDiscoveryController.setInstructionView(null)
val config = Config(session)
config.updateMode = Config.UpdateMode.LATEST_CAMERA_IMAGE
session!!.configure(config)
this.arSceneView.setupSession(session)
val studyScanActivity = activity as StudyScanActivity
if(studyScanActivity.setUpAugmentedImageDb(config, session))
//
else
//
return config
[StudyScanActivity]
fun onUpdateFrame(frameTime: FrameTime)
try
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
checkType(captureImage)
catch (e : Exception)
Log.e(TAG, e.toString())
arcore sceneform
I want to make get bitmap from ScreenView.
So before get bitmap I get Image like below.
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
but it's not working with exception like "com.google.ar.core.exceptions.NotYetAvailableException"
how can I solve this problem.
here is my full code.
[arFragment]
class StudyScanFragment : ArFragment()
override fun getSessionConfiguration(session: Session?): Config
planeDiscoveryController.setInstructionView(null)
val config = Config(session)
config.updateMode = Config.UpdateMode.LATEST_CAMERA_IMAGE
session!!.configure(config)
this.arSceneView.setupSession(session)
val studyScanActivity = activity as StudyScanActivity
if(studyScanActivity.setUpAugmentedImageDb(config, session))
//
else
//
return config
[StudyScanActivity]
fun onUpdateFrame(frameTime: FrameTime)
try
val captureImage = arFragment.arSceneView.arFrame!!.acquireCameraImage()
checkType(captureImage)
catch (e : Exception)
Log.e(TAG, e.toString())
arcore sceneform
arcore sceneform
asked Mar 22 at 7:40
LYGLYG
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55294931%2farframe-acquirecameraimage-is-not-working%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55294931%2farframe-acquirecameraimage-is-not-working%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown