목록전체 글 (49)
3D Graphic Technical Artist
간단하게 haarcascade_eye.xml 와 haarcascade_frontalface_default.xml 을 사용해서 detection 해봄 import cv2 import numpy as np face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml') cap = cv2.VideoCapture(0) while True : ret, img = cap.read() gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) faces = face_cascade.detectMultiScale(gray,1..
환경 Windows 10python 2.7 1. python-opencv 설치 후 D:\Downloads\opencv\build\python\2.7\x86\cv2.pyd 파일을 C:\Python27\Lib\site-packages로 복붙 2. numpy (1.10.2 버전 exe 파일로 간단히 설치)3. matplotlib(1.3.1 버전 exe 파일로 간단히 설치 ) 설치 방법 참고. http://speark.tistory.com/9 설치확인 개발환경 jupyter
1. 선택한 오브젝트에 로케이터 그룹 만들기 import maya.cmds as cmds selectionList = cmds.ls(orderedSelection=True, type = 'transform') if len(selectionList) >= 2: targetName = selectionList[0] selectionList.remove(targetName) locatorGroupName = cmds.group(empty=True, name = 'expansion_locator_grp#') for objectname in selectionList: coords = cmds.getAttr('%s.translate' % (objectname))[0] locatorName = cmds.spaceLo..