Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8462471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T14:10:23+00:00 2026-06-10T14:10:23+00:00

So i have an app that when it sees an particularly pictures, it set

  • 0

So i have an app that when it sees an particularly pictures, it set some actions. And a picture should appear on the screen (it does not). When you click on that picture, it starts an video.
The video works fine, all i have to do is touch the screen and it starts.
There is something I’m missing because the picture is not loading.
I get one ERROR in Logcat and is something like this:

 08-29 10:15:44.102: E/libEGL(2314): call to OpenGL ES API with no current context (logged once per thread)

CODE:
This is instantiated when i run the program:
The model is not a billboard so it skips that part and goes on to loading the texture.

private boolean mLoadGeometry(MetaioModel model, String assetsDirectoryPath) {
    // String modelName = model.name;
    // MetaioModel model = getModelForName(modelName);
    if (model != null) {
        LogService.log(TAG, "object : " + model.model);
        if (model.model == null) {
            if ((model.isBillboard != null) && model.isBillboard) {
                loadBillboard(entity.absolutePath + "/" + model.texture, model);
                LogService.log(TAG, "LoadBillboard : " + model.texture);
            } else {

                LogService.log(TAG, " model.geometryFile : " + model.file);
                if (model.file != null) {
                    String modelPath = assetsDirectoryPath + "/" + model.file /* + ".md2" */;
                    model.model = mMobileSDK.loadGeometry(modelPath);
                    LogService.log(TAG, "> Loaded model: " + modelPath);
                    if (model.model != null) {
                        LogService.log(TAG, "> model.texture: " + model.texture);
                        if ((model.texture != null) && !"".equals(model.texture)) {
                            LogService.log(TAG, "Setting texture = " + entity.absolutePath + "/" + model.texture);
                            model.model.setTexture(entity.absolutePath + "/" + model.texture);
                            LogService.log(TAG, "Texture set");

                        }
                        LogService.log(TAG, "[Loaded geometry] model.model = " + model.model);
                    } else {
                        LogService.log(TAG, "[Load geometry] object is null");
                    }
                } else {
                    LogService.log(TAG, "> model.geometryFile is NULL");
                }
            }
            boolean success = setModelProperties(model, assetsDirectoryPath);
            if (!success) {
                return false;
            }
        }
    }
    return true;
}

This is how the SetModelProperties function look like:

private boolean setModelProperties(MetaioModel metaioModel, String assetsDirectoryPath) {
    LogService.log(TAG, "[MetaioModel] "+ metaioModel +"-----texture"+ metaioModel.texture);
    if (metaioModel == null) {
        return false;
    } else {
        IUnifeyeMobileGeometry object = metaioModel.model;
        if (object != null) {
            if (metaioModel.translate != null) {
                if (metaioModel.translate.length == 3) {
                    Vector3d vector3d = new Vector3d(metaioModel.translate[0], metaioModel.translate[1], metaioModel.translate[2]);
                    object.setMoveTranslation(vector3d);
                    LogService.log(TAG, "[Properties] translate set");
                } else {
                    LogService.log(TAG, "[ERROR] setModelProperties : translate ---> Vector is of wrong size !!!");
                }
            }
            if (metaioModel.scale != null) {
                if (metaioModel.scale.length == 3) {
                    Vector3d vector3d = new Vector3d(metaioModel.scale[0], metaioModel.scale[1], metaioModel.scale[2]);
                    object.setMoveScale(vector3d);
                    LogService.log(TAG, "[Properties] scale3 set");
                } else {
                    LogService.log(TAG, "[ERROR] setModelProperties : scale ---> Vector is of wrong size !!!");
                }
            }
            if (metaioModel.rotate != null) {
                if (metaioModel.rotate.length == 3) {
                    Vector3d vector3d = new Vector3d(metaioModel.rotate[0], metaioModel.rotate[1], metaioModel.rotate[2]);
                    object.setMoveRotation(vector3d);
                    LogService.log(TAG, "[Properties] rotate3 set");
                } else if (metaioModel.rotate.length == 4) {
                    Vector4d vector4d = new Vector4d(metaioModel.rotate[0], metaioModel.rotate[1], metaioModel.rotate[2], metaioModel.rotate[3]);
                    object.setMoveRotation(vector4d);
                    LogService.log(TAG, "[Properties] rotate4 set");
                } else {
                    LogService.log(TAG, "[ERROR] setModelProperties : rotate ---> Vector is of wrong size !!!");
                }
            }
            if (metaioModel.visible != null) {
                object.setVisible(metaioModel.visible);
                LogService.log(TAG, "[Properties] visibility set to : " + metaioModel.visible);
            }

            if (metaioModel.occlude != null) {
                object.setOcclusionMode(metaioModel.occlude);
                LogService.log(TAG, "[Properties] occlusion set to : " + metaioModel.occlude);
            }
            if (metaioModel.picking != null) {
                object.setPickingEnabled(metaioModel.picking);
                LogService.log(TAG, "[Properties] is pickable set to : " + metaioModel.picking);
            }

            if (metaioModel.xray != null) {
                object.setRenderAsXray(metaioModel.xray);
                LogService.log(TAG, "[Properties] xray set to : " + metaioModel.xray);
            }

            if (metaioModel.transparency != null) {
                int transparency = metaioModel.transparency;
                object.setTransparency((short) transparency);
                LogService.log(TAG, "[Properties] transparency set to : " + transparency);
            }

            if (metaioModel.texture != null) {
                object.setTexture(entity.absolutePath + "/" + metaioModel.texture);
                object.setVisible(true);

                LogService.log(TAG, "[Properties] Rendered set to : "+object.getIsRendered());
                LogService.log(TAG, "[Properties] Visibility set to : "+object.getIsVisible());
                LogService.log(TAG, "[Properties] texture set to : " + entity.absolutePath + "/" + metaioModel.texture);
            }
        }
    }
    return true;
}

The object is not null, and it should enter in scale and texture. (LogCat status of it):

 -28 12:12:36.096: I/AugmentedRealityActivity(5910): ==> model : MetaioModel [name=movie, file=square.md2, isBillboard=null, translate=null, scale=[0.5, 0.5, 0.5], rotate=null, visible=null, occlude=null, picking=null, xray=null, transparency=null, texture=start.png, movie_texture=null, billboard=null, defaultTexture=null, geometryFile=null]

The setAction class that changes the visibility:

private void setActions(ArrayList<Action> actions, String directory) {
    if ((actions != null) && (actions.size() > 0)) {
        for (int i = 0; i < actions.size(); i++) {
            String type = actions.get(i).type;
            Action action = actions.get(i);
            LogService.log(TAG, "==> action Type : " + type);

            if ("saveScreenshot".equalsIgnoreCase(type)) {
                LogService.log(TAG, "==> saveScreenshot");
                captureScreenShot(entity.absolutePath + "/Screenshots/screenshot.jpg");
            }
 else if ("setTexture".equalsIgnoreCase(type)) {
                LogService.log(TAG, "==> setTexture");
                String modelName = action.model;
                if ((modelName != null) && (modelName.length() > 0)) {
                    LogService.log(TAG, "InSetTEXTURE======Inainte de Texture set: " + action.file);
                    String texture = action.file;
                    if (texture.length() > 0) {
                        String texturePath = entity.absolutePath + "/" + texture;
                        MetaioModel metaioModel = getModelForName(modelName);
                        IUnifeyeMobileGeometry object = metaioModel.model;
                        if (object != null) {
                            object.setTexture(texturePath);
                            // flag = !flag;
                            // System.out.println("flag = " + flag);
                            // object.setTexture("changed.jpg", null, true);

                            // object.setTexture(entity.absolutePath + "/" + model.texture);
                            // if (flag) {
                            // } else {
                            // object.setTexture(entity.absolutePath + "/normal.png" /* + model.texture */);
                            // }

                            LogService.log(TAG, "InSetTEXTURE======Texture set: " + texturePath);
                        } else {
                            LogService.log(TAG, "ERROR: object is null!");
                        }
                    }
                }
            }

All Logcat LOG:

08-28 12:12:33.846: I/AugmentedRealityActivity(5910): >> Tracking data: /mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture/TrackingData_MarkerlessFast.xml
08-28 12:12:33.846: I/AugmentedRealityActivity(5910): >> AugmentedRealityActivity.onCreate()
08-28 12:12:36.056: I/AugmentedRealityActivity(5910): > Loading assets from : /mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture
08-28 12:12:36.056: I/AugmentedRealityActivity(5910): ==> action Type : loadGeometry
08-28 12:12:36.056: I/AugmentedRealityActivity(5910): ==> load geometry
08-28 12:12:36.056: I/AugmentedRealityActivity(5910): object : null
08-28 12:12:36.056: I/AugmentedRealityActivity(5910):  model.geometryFile : square.md2
08-28 12:12:36.066: I/AugmentedRealityActivity(5910): > Loaded model: /mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture/square.md2
08-28 12:12:36.066: I/AugmentedRealityActivity(5910): > model.texture: start.png
08-28 12:12:36.066: I/AugmentedRealityActivity(5910): Setting texture = /mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture/start.png
08-28 12:12:36.086: I/AugmentedRealityActivity(5910): Texture set
08-28 12:12:36.086: I/AugmentedRealityActivity(5910): [Loaded geometry] model.model = com.metaio.unifeye.ndk.IUnifeyeMobileGeometry@4af880
08-28 12:12:36.086: I/AugmentedRealityActivity(5910): [MetaioModel] MetaioModel [name=movie, file=square.md2, isBillboard=null, translate=null, scale=[0.5, 0.5, 0.5], rotate=null, visible=null, occlude=null, picking=null, xray=null, transparency=null, texture=start.png, movie_texture=null, billboard=null, defaultTexture=null, geometryFile=null]-----texturestart.png
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): [Properties] scale3 set
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): [Properties] Rendered set to : false
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): [Properties] Visibility set to : true
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): [Properties] texture set to : /mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture/start.png
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): ==> action Type : setMovieTexture
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): ==> setMovieTexture
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): ==> setMovieTexture modelName : movie
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): Got 1 models
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): Returning model : movie
08-28 12:12:36.096: I/AugmentedRealityActivity(5910): ==> model : MetaioModel [name=movie, file=square.md2, isBillboard=null, translate=null, scale=[0.5, 0.5, 0.5], rotate=null, visible=null, occlude=null, picking=null, xray=null, transparency=null, texture=start.png, movie_texture=null, billboard=null, defaultTexture=null, geometryFile=null]
08-28 12:12:36.116: I/AugmentedRealityActivity(5910): set movie texture : /mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture/demo_movie.3g2,false,true

LogCat when Marker is detected and should set texture to visible:

08-28 12:17:01.926: I/AugmentedRealityActivity(5910): >> Marker detected..
08-28 12:17:01.926: I/System.out(5910): >> cosName patch1
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Action size in action!=null  ----1/mnt/sdcard/Android/data/com.cardemotion.mobile/files/VWSEEMORE/TEMP/movie_texture
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): ==> action Type : setVisible
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): ==> setVisible
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Got 1 models
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Returning model : movie
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): ==> modelName: movie setVisible : true
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Devine Visible==> modelName: movie true  object is object: com.metaio.unifeye.ndk.IUnifeyeMobileGeometry@4af880texturecom.metaio.unifeye.ndk.IUnifeyeMobileGeometry@4af880
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): modelName unde sunt acuma= movie
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Model name : movie
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Got 1 models
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): Returning model : movie
08-28 12:17:01.926: I/AugmentedRealityActivity(5910): model.texture : 'start.png' 
08-28 12:17:01.926: I/System.out(5910): model.texture : 'start.png' 
08-28 12:17:01.926: I/System.out(5910): Pose set : 1

And Code for Detection:

 @Override
        public void onTrackingEvent(PoseVector poses) {
         for (int i = 0; i < poses.size(); i++) {
            Pose pose = poses.get(i);
            if (pose.isDetected()) {
                ArrayList<MetaioEvent> items = entity.events;
                for (int k = 0; k < items.size(); k++) {
                    MetaioEvent item = items.get(k);
                    Event event = item.event;
                    String type = event.type;
                    String cosName = pose.getCosName() != null ? pose.getCosName().toLowerCase() : "NULL";
                    String cosNameFromFile = event.cosName != null ? event.cosName.toLowerCase() : "NULL";

                    if ("markerDetected".equals(type)) {
                        LogService.log(TAG, ">> Marker detected..");
                        if (!"".equals(cosName) && !"".equals(cosNameFromFile) && cosName.equals(cosNameFromFile)) {
                            System.out.println(">> cosName " + cosName);
                            ArrayList<Action> actions = item.actions;
                            if ((actions != null) && (actions.size() > 0)) {
                                LogService.log(TAG, "Action size in action!=null  ----"+actions.size() + "" + entity.absolutePath );
                                setActions(actions, entity.absolutePath);
                                for (Action action : actions) {
                                    if ((action != null) && (action.type != null)) {
                                        String modelName = action.model;
                                        LogService.log(TAG, "modelName unde sunt acuma= " + modelName);
                                        if ((modelName != null) && (modelName.length() > 0)) {
                                            LogService.log(TAG, "Model name : " + modelName);
                                            MetaioModel model = getModelForName(modelName);
                                            LogService.log(TAG, "model.texture : '" + model.texture + "' ");
                                            System.out.println("model.texture : '" + model.texture + "' ");

                                            IUnifeyeMobileGeometry object = model.model;
                                            String cosName2 = action.cosName;

                                            if ((object != null)) {
                                                if ("camera".equals(cosName2)) {
                                                    object.setCos(0);
                                                    System.out.println("Pose set 0 ");
                                                } else {
                                                    object.setCos(pose.getCosID());
                                                    System.out.println("Pose set : " + pose.getCosID());
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            } else if (pose.isLost()) {
                for (MetaioEvent item : entity.events) {
                    Event event = item.event;
                    String type = event.type;
                    String cosName = pose.getCosName() != null ? pose.getCosName().toLowerCase() : "NULL";
                    String cosNameFromFile = event.cosName != null ? event.cosName.toLowerCase() : "NULL";

                    if ("markerLost".equals(type)) {
                        LogService.log(TAG, ">> Marker lost..");
                        if (!"".equals(cosNameFromFile) && !"".equals(cosName) && cosName.equals(cosNameFromFile)) {
                            ArrayList<Action> actions = item.actions;
                            if ((actions != null) && (actions.size() > 0)) {
                                setActions(actions, "");
                            }
                        }
                    }
                }
            }
        }
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T14:10:24+00:00Added an answer on June 10, 2026 at 2:10 pm

    It was in the wrong thread, so i did this:

    if (object != null) {
                                mUnifeyeSurfaceView.queueEvent(new Runnable() {
                                    @Override
                                    public void run() {
                                        object.setTexture(texturePath);
                                    }
                                });
    
    
                                LogService.log(TAG, "Texture set: " + texturePath);
                            } else {
                                LogService.log(TAG, "ERROR: object is null!");
                            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have set up some gesture recognition in an app that I'm building. One
I have an app that switches between full screen and normal screen for a
I have a Rails app set up so that when a user uploads an
have an app that finds your GPS location successfully, but I need to be
Have an app that has listings - think classified ads - and each listing
I have an app that uses the ActionBar with tabs in combination with Fragments.
I have an app that lets the user interact with several forms. I can
I have an App that downloads and displays images from URL's. This works fine
I have an app that is part of a suite of related apps. It's
I have an App that displays thousands of Pin annotations on a google map

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.