unity android读取本地图片,Unity之读取本地图片

1.下载Opencv for unity.

2.把OpenCVForUnity下的StreamingAssets拖到Assets下。

3.点击Tools->opencv for unity->set plugin import settings.

4.

using UnityEngine;

using System.Collections;

using OpenCVForUnity;

using System;

using System.Collections.Generic;

public class imageTest : MonoBehaviour {

public Texture2D img;

// Use this for initialization

void Start () {

}

// Update is called once per frame

void Update () {

if (Input.GetKeyDown(KeyCode.A)){

int height = 500;

string imgpath = "/Users/shiyuhuang/Downloads/ATOCAR/ATOCAR_UNITY_2/ATOCAR_UNITY/13.jpg";

Mat imgMat2 = Imgcodecs.imread(imgpath);

Mat imgMat = new Mat ();

int new_w, new_h=500;

double scale  = new_h/Convert.ToDouble(imgMat2.rows ());

new_w = Convert.ToInt32 (imgMat2.cols () * scale);

Imgproc.resize (imgMat2, imgMat,new Size( Convert.ToDouble(new_w), Convert.ToDouble(new_h)) );

Listchannels = new List();

OpenCVForUnity.Core.split (imgMat,channels);

Mat a = new Mat ();

a = channels [0];

channels [0] = channels [2];

channels [2] = a;

OpenCVForUnity.Core.merge (channels,imgMat);

Debug.Log("您按下了A键"+imgMat.size());

SpriteRenderer spr = gameObject.GetComponent();

Texture2D texture2d = new Texture2D (new_w, new_h);

Utils.matToTexture2D (imgMat, texture2d);

Sprite sp = Sprite.Create(texture2d,new UnityEngine.Rect(0, 0, new_w, new_h), new Vector2(0.5f,0.5f) );//注意居中显示采用0.5f值

spr.sprite = sp;

//            gameObject.GetComponent().material.mainTexture = texture2d;

//            Mat imgMat2 = new Mat (texture2d.height, texture2d.width, CvType.CV_8UC4);

//            Utils.texture2DToMat (texture2d, imgMat2);

//            Imgcodecs.imwrite ("/Users/shiyuhuang/Downloads/ATOCAR/ATOCAR_UNITY_2/ATOCAR_UNITY/test2.jpg",imgMat2);

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值