250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 터치디자이너 파이썬
- 터치디자이너 에이블톤
- 터치디자이너
- 터치디자이너 강의
- ableton live 10
- 터치디자이너 list
- touchdesinger
- 터치디자이너 Instancing
- touchdesigner particle
- 터치디자이너 인터페이스
- 파이썬reference
- 터치디자이너 timeline
- 터치디자이너 python
- TDableton
- 터치디자이너 interface
- 터치디자이너 replicator
- displace
- touchdesigner displace
- 터치디자이너 if
- 터치디자이너 함수
- 터치디자이너 reference
- 터치디자이너 참조
- 파이썬 if
- 파이썬
- touchdesigner GPU
- TouchDesigner
- 터치디자이너 오퍼레이터
- 터치디자이너 튜토리얼
- 터치디자이너 클론
- particleGPU
Archives
- Today
- Total
caLAB
[유니티] OpenCV+ Face Detection 본문
728x90
https://assetstore.unity.com/packages/tools/integration/opencv-plus-unity-85928
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using OpenCvSharp;
public class faceDetector : MonoBehaviour
{
WebCamTexture _webCamTexture;
CascadeClassifier cascade;
OpenCvSharp.Rect MyFace;
OpenCvSharp.Rect[] faces;
void Start()
{
WebCamDevice[] devices = WebCamTexture.devices;
_webCamTexture = new WebCamTexture(devices[0].name);
_webCamTexture.Play();
cascade = new CascadeClassifier(Application.dataPath + "/OpenCV+Unity/Demo/Face_Detector/" + "haarcascade_frontalface_default.xml");
}
void Update()
{
//GetComponent<Renderer>().material.mainTexture = _webCamTexture;
Mat frame = OpenCvSharp.Unity.TextureToMat(_webCamTexture);
findNewFace(frame);
display(frame);
}
void findNewFace(Mat frame)
{
faces = cascade.DetectMultiScale(frame, 1.1, 2, HaarDetectionType.ScaleImage);
if(faces.Length >= 1)
{
Debug.Log(faces[0].Location);
Debug.Log("detected face num : "+ faces.Length);
MyFace = faces[0];
}
else
{
Debug.Log("could not reconginze the face");
}
}
void display(Mat frame)
{
if(MyFace != null && faces.Length >= 1)
{
frame.Rectangle(MyFace, new Scalar(0, 255, 0), 2);
}
Texture newtexture = OpenCvSharp.Unity.MatToTexture(frame);
GetComponent<Renderer>().material.mainTexture = newtexture;
}
}
plane 3D 게임 오브젝트를 만들고 위 스크립트를 add Component해준다.
728x90
반응형
'Unity > 유니티 개발' 카테고리의 다른 글
[유니티 C#] Delegate 이벤트 예제(feat.Singleton) (1) | 2021.09.30 |
---|---|
[유니티] OSC sender, receiver (0) | 2021.09.26 |
[유니티] 다수의 UI 캔버스 관리하기 (2) | 2021.09.16 |
pinch Interaction 시뮬레이션(zoom, rotation) (0) | 2021.08.25 |
유니티 깃헙 연동해서 팀프로젝트 하기 feat. markDown글쓰기 (0) | 2021.08.24 |
Comments