ARKit应用之导航

概述

ARKit 2.0发布以来,iOS端AR类应用层出不穷。由于其强大的功能,许多人们对于AR应用的美好设想都一一实现。
AR(Augmented Reality)的最初定义,就是增强现实(或扩增现实),即在外部设备的辅助下增强现实生活的感官体验。AR的本质也是虚拟,是在现实世界之上叠加虚拟场景以提供更加直观或有趣的信息。
基于这一定义,人们很容易想到利用AR看到周边街景中被遮挡的部分,并显示其基本信息的应用场景。利用手机这一外部辅助设备,内置摄像头捕捉到的画面就是现实景观,开发者可以在摄像头的实景之上添加想要添加的3D标注,并附以有用的信息,简单的AR导航就得能以实现。

基础

该功能的实现核心是基于CoreLocation的实时定位功能与ARKit的图层的结合。实现的基础除ARKit和iOS 11.0+以外,还借鉴了GitHub开源项目ARKit+CoreLocation提供的ARCL工具类,建议首先仔细阅读此项目中源码,领悟实现思想和逻辑。

实现

前期准备工作

项目中代码使用Swift 4.2 编写。
1.首先,在项目中引入上文中提到的 ARCL中的Source部分,或者直接pod 'ARCL'。
其中各文件中代码的作用可以从他们的命名中一目了然,这里就不做赘述,参见以下文件目录结构:

Source
├── CGPoint+Extensions.swift
├── CLLocation+Extensions.swift
├── FloatingPoint+Radians.swift
├── LocationManager.swift
├── LocationNode.swift
├── SCNNode+Extensions.swift
├── SCNVector3+Extensions.swift
├── SceneLocationEstimate+Extensions.swift
├── SceneLocationEstimate.swift
└── SceneLocationView.swift

2.在Plist中加入NSCameraUsageDescription和NSLocationWhenInUseUsageDescription的key并添加简短描述。

  1. 改写ARCL中的LocationNode.swift,即构造你需要的标注样式和内容。
open class LocationAnnotationNode: LocationNode {
    ///An image to use for the annotation
    ///When viewed from a distance, the annotation will be seen at the size provided
    ///e.g. if the size is 100x100px, the annotation will take up approx 100x100 points on screen.
    public let image: UIImage

    ///Subnodes and adjustments should be applied to this subnode
    ///Required to allow scaling at the same time as having a 2D 'billboard' appearance
    public let annotationNode: SCNNode

    ///Whether the node should be scaled relative to its distance from the camera
    ///Default value (false) scales it to visually appear at the same size no matter the distance
    ///Setting to true causes annotation nodes to scale like a regular node
    ///Scaling relative to distance may be useful with local navigation-based uses
    ///For landmarks in the distance, the default is correct
    public var scaleRelativeToDistance = false
    

    public init(location: CLLocation?, image: UIImage, title: String, distance: String) {
        self.image = image
        
        let frame: CGRect = CGRect(x:0.0, y:0.0, width:200.0, height:82.0)
        let bgImageView = UIImageView.init(frame: frame)
        bgImageView.image = image
        
        let titleLabel = UILabel.init(frame: CGRect(x: 0.0, y: 0.0, width: 120.0, height: 60.0))
        titleLabel.textColor = UIColor.darkText
        titleLabel.font = UIFont.boldSystemFont(ofSize: 18.0)
        titleLabel.text = title
        titleLabel.textAlignment = NSTextAlignment.center
        bgImageView.addSubview(titleLabel)
        
        let distanceLabel = UILabel.init(frame: CGRect(x: 120.0, y: 0.0, width: 80.0, height: 60.0))
        distanceLabel.textColor = UIColor.init(red: 19.0/255.0, green: 115.0/255.0, blue: 114.0/255.0, alpha: 1.0)
        distanceLabel.font = UIFont.systemFont(ofSize: 16.0)
        distanceLabel.text = distance
        distanceLabel.textAlignment = NSTextAlignment.center
        bgImageView.addSubview(distanceLabel)
        

        let plane = SCNPlane(width: frame.size.width/100, height: frame.size.height/100)
        plane.firstMaterial!.diffuse.contents = bgImageView
        plane.firstMaterial!.lightingModel = .constant

        annotationNode = SCNNode()
        annotationNode.geometry = plane

        super.init(location: location)
        
        self.name = title
        self.distance = distance
        self.distanceLabel = distanceLabel

        let billboardConstraint = SCNBillboardConstraint()
        billboardConstraint.freeAxes = SCNBillboardAxis.Y
        constraints = [billboardConstraint]

        addChildNode(annotationNode)
    }

以上代码的作用是使用位置名称和距离创建标注,返回一个带标题和距离信息的气泡,注意:这里的距离是实时变化的,也就是在初始化时给定一个初始值,而在获取到的位置信息后通过计算实时进行更新,以达到动态更新场景的效果

呈现

在以上准备工作的基础上,我们需要将AR标注实时呈现在摄像头中。
因此我们需要初始化SceneLocationViewMKMapView,并完成相关配置。

  • 初始化sceneLocationView
sceneLocationView.locationDelegate = self as? SceneLocationViewDelegate
        // Set to true to display am arrow wjoch points north.
        sceneLocationView.orientToTrueNorth = false
        sceneLocationView.showAxesNode = true
        if displayDebugging {
            sceneLocationView.showFeaturePoints = true
        }
        buildData().forEach {
            sceneLocationView.addLocationNodeWithConfirmedLocation(locationNode: $0)
        }
        view.addSubview(sceneLocationView)
  • 初始化mapView
if !showMapView {
            mapView.delegate = self as? MKMapViewDelegate
            mapView.showsUserLocation = true
            mapView.isHidden = true
            view.addSubview(mapView)
        }

使用LocationAnnotationNodeinit方法创建标注点。

func buildNode(latitude: CLLocationDegrees, longtitude: CLLocationDegrees, altitude: CLLocationDistance, imageName: String, title: String, distance: String) -> LocationAnnotationNode {
        let location = CLLocation(coordinate: CLLocationCoordinate2D(latitude: latitude, longitude: longtitude), altitude: altitude)
        let image = UIImage(named: imageName)!
        
        return LocationAnnotationNode(location: location, image: image, title: title, distance: distance)
}

再利用定时器连续且间断地更新标注信息。

// Update user location and show distance from current location to nodes added
updateUserLocationTimer = Timer.scheduledTimer(timeInterval: 3.0,
                                                       target: self,
                                                       selector: #selector(ViewController.updateUserLocation),
                                                       userInfo: nil,
                                                       repeats: true)

在适当的时候更新距离信息即可。

@objc func updateUserLocation() {
        guard let currentLocation = sceneLocationView.currentLocation() else {
            return
        }
        
        DispatchQueue.main.async {
            if let bestEstimate = self.sceneLocationView.bestLocationEstimate(), let position = self.sceneLocationView.currentScenePosition() {
                print("------------------------------------")
                print("Fetch current location")
                print("Best location estimate, position: \(bestEstimate.position), location: \(bestEstimate.location.coordinate), accurace: \(bestEstimate.location.horizontalAccuracy)")
                print("current position: \(position)")
                
                let translation = bestEstimate.translatedLocation(to: position)
                print("translation: \(translation)")
                print("translated location: \(currentLocation)")
                print("------------------------------------")
                
                // Location nodes
                for node in self.sceneLocationView.locationNodes {
                    let distance = currentLocation.distance(from: node.location)
                    var distanceStr: String = String(format: "%.0fm", distance)
                    if distance >= 1000 {
                        distanceStr = String(format: "%.1fkm", (distance/1000))
                    }
                    node.distance = distanceStr
                    node.distanceLabel.text = distanceStr
                }
            }
        }
    }

以上。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,924评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,781评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,813评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,264评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,273评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,383评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,800评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,482评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,673评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,497评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,545评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,240评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,802评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,866评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,101评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,673评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,245评论 2 341

推荐阅读更多精彩内容