유니티용 캐릭터 커스터마이징 오픈소스


https://github.com/umasteeringgroup/UMA


기타 커스터마이징 관련

makehuman 파이썬으로된 독립 프로그램



Posted by 아기곰푸우
,

netframework4.5에서 http 통신문제 발생 : 특정 서버랑 연결이 안됌

netframework4.6.1로 버젼업해서 해결


Posted by 아기곰푸우
,

NFC

프로그램개발/C# and unity 2018. 12. 22. 23:45

https://github.com/EPinci/NFCSharp


윈폼에서 됌,  유니티에서 빌드되는것 확인

유니티에서 테스트는 못해봄


Posted by 아기곰푸우
,

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();


            

        }

}

Posted by 아기곰푸우
,

http://www.cydiaimpactor.com/



애플 인증서 무시 어플 유틸

Posted by 아기곰푸우
,

http://neoray.org/453

Posted by 아기곰푸우
,

https://syncthing.net/ 


동기화 프로그램


여러대의 서버 데이터를 토렌트 방식으로 동기화


서버 한대가 있으면 편함


오픈소스

Posted by 아기곰푸우
,

테스트용 rtsp


rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov

Posted by 아기곰푸우
,

거북이 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"

Posted by 아기곰푸우
,

영화보고 미드 보는데 좋음


영어 회화 공부 의욕이 생김


봤던 영화와 미드 중심으로 영어 공부 시작



Posted by 아기곰푸우
,