ARKit 2 - Crop Recognizing Images












-1















So, my goal is:





  1. Find known image



    guard let referenceImages = ARReferenceImage.referenceImages(inGroupNamed: "AR Resources", bundle: nil) else { return }

    let configuration = ARWorldTrackingConfiguration()
    configuration.detectionImages = referenceImages



.





  1. take a snapshot from sceneView



     func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) {

    let image = sceneView.snapshot() // or else self.sceneView.session.currentFrame?.capturedImage


  2. I need extract the image form the SceneView.



enter image description here



This is my code,
I'm using the renderer.projectPoint method.



  guard let imageAnchor = anchor as? ARImageAnchor else {
return
}
let posx = anchorTr.x// fnode.convertPosition(node.position, to: node).x //self.positionFromTransform(node.simdTransform).x// node.simdTransform.columns.3.x
let posy = anchorTr.y//fnode.convertPosition(node.position, to: node).y //self.positionFromTransform(node.simdTransform).y//node.simdTransform.columns.3.y
let posz = anchorTr.z //node.simdTransform.columns.3.z


let width = referenceImage.physicalSize.width
let height = referenceImage.physicalSize.height


let topLeftPosition = SCNVector3(posx - Float(width / 2), posy - Float(height / 2), posz )
let topRightPosition = SCNVector3(posx + Float(width / 2), posy - Float(height / 2), posz )
let bottomLeftPosition = SCNVector3(posx - Float(width / 2), posy + Float(height / 2), posz )
let bottomRightPosition = SCNVector3(posx + Float(width / 2), posy + Float(height / 2), posz)


let topLeftProjection = renderer.projectPoint(topLeftPosition)
let topRightProjection = '''
let bottomLeftProjection = '''
let bottomRightProjection = '''

let topLeft = CGPoint(x: CGFloat(topLeftProjection.x), y: CGFloat( topLeftProjection.y))
let topRight = ''
let bottomLeft = ''''''
let bottomRight = '''


let points = [topLeft, topRight, bottomRight, bottomLeft]

self.drawPolygon(points, color:.green)


but it seems that this method depends on the position of the cell phone.



enter image description here



enter image description here










share|improve this question




















  • 2





    "I want to <app feature>" posts are not well suited for this site. This site is for getting debugging help with code you've already written.

    – Duncan C
    Nov 23 '18 at 22:15
















-1















So, my goal is:





  1. Find known image



    guard let referenceImages = ARReferenceImage.referenceImages(inGroupNamed: "AR Resources", bundle: nil) else { return }

    let configuration = ARWorldTrackingConfiguration()
    configuration.detectionImages = referenceImages



.





  1. take a snapshot from sceneView



     func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) {

    let image = sceneView.snapshot() // or else self.sceneView.session.currentFrame?.capturedImage


  2. I need extract the image form the SceneView.



enter image description here



This is my code,
I'm using the renderer.projectPoint method.



  guard let imageAnchor = anchor as? ARImageAnchor else {
return
}
let posx = anchorTr.x// fnode.convertPosition(node.position, to: node).x //self.positionFromTransform(node.simdTransform).x// node.simdTransform.columns.3.x
let posy = anchorTr.y//fnode.convertPosition(node.position, to: node).y //self.positionFromTransform(node.simdTransform).y//node.simdTransform.columns.3.y
let posz = anchorTr.z //node.simdTransform.columns.3.z


let width = referenceImage.physicalSize.width
let height = referenceImage.physicalSize.height


let topLeftPosition = SCNVector3(posx - Float(width / 2), posy - Float(height / 2), posz )
let topRightPosition = SCNVector3(posx + Float(width / 2), posy - Float(height / 2), posz )
let bottomLeftPosition = SCNVector3(posx - Float(width / 2), posy + Float(height / 2), posz )
let bottomRightPosition = SCNVector3(posx + Float(width / 2), posy + Float(height / 2), posz)


let topLeftProjection = renderer.projectPoint(topLeftPosition)
let topRightProjection = '''
let bottomLeftProjection = '''
let bottomRightProjection = '''

let topLeft = CGPoint(x: CGFloat(topLeftProjection.x), y: CGFloat( topLeftProjection.y))
let topRight = ''
let bottomLeft = ''''''
let bottomRight = '''


let points = [topLeft, topRight, bottomRight, bottomLeft]

self.drawPolygon(points, color:.green)


but it seems that this method depends on the position of the cell phone.



enter image description here



enter image description here










share|improve this question




















  • 2





    "I want to <app feature>" posts are not well suited for this site. This site is for getting debugging help with code you've already written.

    – Duncan C
    Nov 23 '18 at 22:15














-1












-1








-1


1






So, my goal is:





  1. Find known image



    guard let referenceImages = ARReferenceImage.referenceImages(inGroupNamed: "AR Resources", bundle: nil) else { return }

    let configuration = ARWorldTrackingConfiguration()
    configuration.detectionImages = referenceImages



.





  1. take a snapshot from sceneView



     func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) {

    let image = sceneView.snapshot() // or else self.sceneView.session.currentFrame?.capturedImage


  2. I need extract the image form the SceneView.



enter image description here



This is my code,
I'm using the renderer.projectPoint method.



  guard let imageAnchor = anchor as? ARImageAnchor else {
return
}
let posx = anchorTr.x// fnode.convertPosition(node.position, to: node).x //self.positionFromTransform(node.simdTransform).x// node.simdTransform.columns.3.x
let posy = anchorTr.y//fnode.convertPosition(node.position, to: node).y //self.positionFromTransform(node.simdTransform).y//node.simdTransform.columns.3.y
let posz = anchorTr.z //node.simdTransform.columns.3.z


let width = referenceImage.physicalSize.width
let height = referenceImage.physicalSize.height


let topLeftPosition = SCNVector3(posx - Float(width / 2), posy - Float(height / 2), posz )
let topRightPosition = SCNVector3(posx + Float(width / 2), posy - Float(height / 2), posz )
let bottomLeftPosition = SCNVector3(posx - Float(width / 2), posy + Float(height / 2), posz )
let bottomRightPosition = SCNVector3(posx + Float(width / 2), posy + Float(height / 2), posz)


let topLeftProjection = renderer.projectPoint(topLeftPosition)
let topRightProjection = '''
let bottomLeftProjection = '''
let bottomRightProjection = '''

let topLeft = CGPoint(x: CGFloat(topLeftProjection.x), y: CGFloat( topLeftProjection.y))
let topRight = ''
let bottomLeft = ''''''
let bottomRight = '''


let points = [topLeft, topRight, bottomRight, bottomLeft]

self.drawPolygon(points, color:.green)


but it seems that this method depends on the position of the cell phone.



enter image description here



enter image description here










share|improve this question
















So, my goal is:





  1. Find known image



    guard let referenceImages = ARReferenceImage.referenceImages(inGroupNamed: "AR Resources", bundle: nil) else { return }

    let configuration = ARWorldTrackingConfiguration()
    configuration.detectionImages = referenceImages



.





  1. take a snapshot from sceneView



     func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) {

    let image = sceneView.snapshot() // or else self.sceneView.session.currentFrame?.capturedImage


  2. I need extract the image form the SceneView.



enter image description here



This is my code,
I'm using the renderer.projectPoint method.



  guard let imageAnchor = anchor as? ARImageAnchor else {
return
}
let posx = anchorTr.x// fnode.convertPosition(node.position, to: node).x //self.positionFromTransform(node.simdTransform).x// node.simdTransform.columns.3.x
let posy = anchorTr.y//fnode.convertPosition(node.position, to: node).y //self.positionFromTransform(node.simdTransform).y//node.simdTransform.columns.3.y
let posz = anchorTr.z //node.simdTransform.columns.3.z


let width = referenceImage.physicalSize.width
let height = referenceImage.physicalSize.height


let topLeftPosition = SCNVector3(posx - Float(width / 2), posy - Float(height / 2), posz )
let topRightPosition = SCNVector3(posx + Float(width / 2), posy - Float(height / 2), posz )
let bottomLeftPosition = SCNVector3(posx - Float(width / 2), posy + Float(height / 2), posz )
let bottomRightPosition = SCNVector3(posx + Float(width / 2), posy + Float(height / 2), posz)


let topLeftProjection = renderer.projectPoint(topLeftPosition)
let topRightProjection = '''
let bottomLeftProjection = '''
let bottomRightProjection = '''

let topLeft = CGPoint(x: CGFloat(topLeftProjection.x), y: CGFloat( topLeftProjection.y))
let topRight = ''
let bottomLeft = ''''''
let bottomRight = '''


let points = [topLeft, topRight, bottomRight, bottomLeft]

self.drawPolygon(points, color:.green)


but it seems that this method depends on the position of the cell phone.



enter image description here



enter image description here







ios swift arkit






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 26 '18 at 13:17







Carlos Andres Chaguendo

















asked Nov 23 '18 at 21:39









Carlos Andres ChaguendoCarlos Andres Chaguendo

784413




784413








  • 2





    "I want to <app feature>" posts are not well suited for this site. This site is for getting debugging help with code you've already written.

    – Duncan C
    Nov 23 '18 at 22:15














  • 2





    "I want to <app feature>" posts are not well suited for this site. This site is for getting debugging help with code you've already written.

    – Duncan C
    Nov 23 '18 at 22:15








2




2





"I want to <app feature>" posts are not well suited for this site. This site is for getting debugging help with code you've already written.

– Duncan C
Nov 23 '18 at 22:15





"I want to <app feature>" posts are not well suited for this site. This site is for getting debugging help with code you've already written.

– Duncan C
Nov 23 '18 at 22:15












1 Answer
1






active

oldest

votes


















0














In my case, I solved it by doing this for each of the reference points.



let transform = node.simdConvertTransform(node.simdTransform, to: node.parent!)

let x = transform.columns.3.x
let y = transform.columns.3.y
let z = transform.columns.3.z

let position = SCNVector3(x, y, z)
let projection = renderer.projectPoint(position)

let screenPoint = CGPoint(x: CGFloat(projection.x), y: CGFloat( projection.y))





share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53453203%2farkit-2-crop-recognizing-images%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    In my case, I solved it by doing this for each of the reference points.



    let transform = node.simdConvertTransform(node.simdTransform, to: node.parent!)

    let x = transform.columns.3.x
    let y = transform.columns.3.y
    let z = transform.columns.3.z

    let position = SCNVector3(x, y, z)
    let projection = renderer.projectPoint(position)

    let screenPoint = CGPoint(x: CGFloat(projection.x), y: CGFloat( projection.y))





    share|improve this answer




























      0














      In my case, I solved it by doing this for each of the reference points.



      let transform = node.simdConvertTransform(node.simdTransform, to: node.parent!)

      let x = transform.columns.3.x
      let y = transform.columns.3.y
      let z = transform.columns.3.z

      let position = SCNVector3(x, y, z)
      let projection = renderer.projectPoint(position)

      let screenPoint = CGPoint(x: CGFloat(projection.x), y: CGFloat( projection.y))





      share|improve this answer


























        0












        0








        0







        In my case, I solved it by doing this for each of the reference points.



        let transform = node.simdConvertTransform(node.simdTransform, to: node.parent!)

        let x = transform.columns.3.x
        let y = transform.columns.3.y
        let z = transform.columns.3.z

        let position = SCNVector3(x, y, z)
        let projection = renderer.projectPoint(position)

        let screenPoint = CGPoint(x: CGFloat(projection.x), y: CGFloat( projection.y))





        share|improve this answer













        In my case, I solved it by doing this for each of the reference points.



        let transform = node.simdConvertTransform(node.simdTransform, to: node.parent!)

        let x = transform.columns.3.x
        let y = transform.columns.3.y
        let z = transform.columns.3.z

        let position = SCNVector3(x, y, z)
        let projection = renderer.projectPoint(position)

        let screenPoint = CGPoint(x: CGFloat(projection.x), y: CGFloat( projection.y))






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 26 '18 at 16:18









        Carlos Andres ChaguendoCarlos Andres Chaguendo

        784413




        784413
































            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53453203%2farkit-2-crop-recognizing-images%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            To store a contact into the json file from server.js file using a class in NodeJS

            Redirect URL with Chrome Remote Debugging Android Devices

            Dieringhausen