유니티용 캐릭터 커스터마이징 오픈소스
https://github.com/umasteeringgroup/UMA
기타 커스터마이징 관련
makehuman 파이썬으로된 독립 프로그램
유니티용 캐릭터 커스터마이징 오픈소스
https://github.com/umasteeringgroup/UMA
기타 커스터마이징 관련
makehuman 파이썬으로된 독립 프로그램
netframework4.5에서 http 통신문제 발생 : 특정 서버랑 연결이 안됌
netframework4.6.1로 버젼업해서 해결
https://github.com/EPinci/NFCSharp
윈폼에서 됌, 유니티에서 빌드되는것 확인
유니티에서 테스트는 못해봄
emgucv opencv unity 에서 가능
유니티 최신 버젼에 빌드 옵션 수정할것
흑백 출력
void Update () {
if (webcamTexture.didUpdateThisFrame)
{
webcamTexture.GetPixels32(colors);
GCHandle imageHandle = GCHandle.Alloc(colors, GCHandleType.Pinned);
GCHandle matHandle = GCHandle.Alloc(bytes, GCHandleType.Pinned);
using (Image<Bgra, byte> image = new Image<Bgra, byte>(webcamTexture.width, webcamTexture.height, webcamTexture.width * 4, imageHandle.AddrOfPinnedObject()))
{
//using (Mat mat = new Mat(webcamTexture.height, webcamTexture.width, DepthType.Cv8U, 3, matHandle.AddrOfPinnedObject(), webcamTexture.width * 3))
//{
// CvInvoke.CvtColor(image, mat, ColorConversion.Bgra2Bgr);
// //CvInvoke.CvtColor(mat, image, ColorConversion.Bgr2Gray);
// tex.LoadRawTextureData(mat.Bytes);
// tex.Apply();
//}
using (Image<Bgr, byte> mat = new Image<Bgr, byte>(webcamTexture.width, webcamTexture.height, webcamTexture.width * 3, matHandle.AddrOfPinnedObject()))
{
CvInvoke.CvtColor(image, mat, ColorConversion.Bgra2Bgr);
//CvInvoke.CvtColor(mat, image, ColorConversion.Bgr2Gray);
Image<Gray, byte> grayframe = mat.Convert<Gray, byte>();
Image<Bgr, byte> grayframe2= grayframe.Convert<Bgr, byte>();
tex.LoadRawTextureData(grayframe2.Bytes);
tex.Apply();
}
}
imageHandle.Free();
matHandle.Free();
}
}
https://syncthing.net/
동기화 프로그램
여러대의 서버 데이터를 토렌트 방식으로 동기화
서버 한대가 있으면 편함
오픈소스
테스트용 rtsp
rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov
거북이 svn 과 dropbox icon 문제 해결법
https://www.dropboxforum.com/t5/Dropbox/Ability-to-disable-shell-overlay-icons/idi-p/111622/page/5
regsvr32 /u "%LOCALAPPDATA%\Dropbox\bin\DropboxExt.26.dll"
regsvr32 /u "%LOCALAPPDATA%\Dropbox\bin\DropboxExt64.26.dll"
regsvr32 /u "%APPDATA%\Dropbox\bin\DropboxExt.26.dll"
regsvr32 /u "%APPDATA%\Dropbox\bin\DropboxExt64.26.dll"
regsvr32 /u "C:\Program Files\Dropbox\Client\DropboxExt.26.dll"
regsvr32 /u "C:\Program Files\Dropbox\Client\DropboxExt64.26.dll"
regsvr32 /u "C:\Program Files (x86)\Dropbox\Client\DropboxExt.26.dll"
regsvr32 /u "C:\Program Files (x86)\Dropbox\Client\DropboxExt64.26.dll"