양고네 연구노트

고정 헤더 영역

글 제목

메뉴 레이어

양고네 연구노트

메뉴 리스트

  • 홈
  • 태그
  • 미디어로그
  • 위치로그
  • 방명록
  • 분류 전체보기
    • 공인중개사
    • 개발과 트러블슈팅
    • 학술
    • 아무거나 리뷰
    • 테니스
    • 정보통신
    • 회사

검색 레이어

양고네 연구노트

검색 영역

컨텐츠 검색

분류 전체보기

  • Converting Between YUV and RGB

    2011.11.14 by 양고

  • Mapping Messages to Functions

    2011.11.11 by 양고

  • PDF Unlock

    2011.10.31 by 양고

  • LG Xnote P310-SP94K Windows 7 64bit 설치

    2011.10.25 by 양고

  • On the direct minimization of ray distances

    2011.10.17 by 양고

  • Google Earth와 Sketchup

    2011.10.17 by 양고

  • Photoshop에서 interlaced(비월주사) 스테레오 이미지 만들기

    2011.10.10 by 양고

  • [OpenCV] BRIEF에는 FLANN을 사용할 수 없다.

    2011.09.15 by 양고

Converting Between YUV and RGB

YUV422에서 RGB로 2:1 리샘플링한다. 이 때 괜히 위키피디아에 있는 YUV 문서 들어가면 주화입마에 빠질 수 있으며, 간단하게 변환하는 방법이 있어서 소개한다. 현재는 UYVY->BGR 리샘플링했을 때 8-core CPU임에도 점유율이 높은 것이 문제다. 디버그 모드: 약 10%, 릴리스 모드: 약 5~7% 정도. // http://yango.tistory.com/185 byte clip(int i) { if(i 255) return 255; else return i; } void Resample(Mat& image, byte* src) { for(int y = 0; y < 540; y++) for(int x = 0; x < 960; x++) im..

개발과 트러블슈팅 2011. 11. 14. 17:13

Mapping Messages to Functions

출처: http://msdn.microsoft.com/en-us/library/dey7ke4c.aspx  Mapping Messages to Functions Visual Studio 2010 Other Versions Visual Studio 2008 Visual Studio 2005 Visual Studio .NET 2003 The Properties window enables you to bind message handlers (member functions of MFC user-interface classes) to the messages generated by your application's resources. They use MFC message maps to create the bindi..

개발과 트러블슈팅 2011. 11. 11. 17:52

PDF Unlock

참고: http://olpost.com/v/1985464 논문 볼 때 PDF에 형광펜 쳐가면서 보는데, 가끔씩 (보안)이라 표시되면서 주석을 달 수 없는 경우는 상당히 짜증난다. 논문을 훔친 것도 아니고 다 돈 내고 받는 건데... 잡스러운 언락언록 프로그램 받아서 돌려봤지만 효과가 없었다. 이 사이트가 최고: http://www.pdfunlock.com/ 형광펜 마구 칠해야지 잇힝~

학술 2011. 10. 31. 15:07

LG Xnote P310-SP94K Windows 7 64bit 설치

윈도7 깔고 웬만한 건 다 잡히는데, 무선랜이 말썽이다. 드라이버는 제대로 깔린 것 같은데 당최 켜지질 않는다. Fn+F6를 누르면 "Wireless device not found"라고 뜬다. 인텔에서 다른 무선랜 제어 프로그램을 깔아봤지만 장치가 켜지지 않았으니 하드웨어 버튼을 사용하여 켜라고만 한다 (하드웨어 버튼 따위 없단 말이닷 ㅠㅠ). 결국 이 R590용 OSD를 받아서 설치하면 해결되더라는 것. http://www.lg.com/lgecs.downloadFile.ldwf?DOC_ID=KRSWD000003296&ORIGINAL_NAME_b1_a1=OSD.zip&FILE_NAME=KRSWD000003296-b1-a1.zip&TC=DwnCmd 인텔 터보 메모리 드라이버도 안 잡히는데, 인텔 사이트 가..

아무거나 리뷰 2011. 10. 25. 12:40

On the direct minimization of ray distances

MVG says (Ch 12.1, p.311): It is clear, particularly for projective reconstruction, that it is inappropriate to minimize errors in the 3D projective space, P3. For instance, the method that finds the midpoint of the common perpendicular to the two rays in space in not suitable for projective reconstruction, since concepts such as distance and perpendicularity are not valid in the context of proj..

학술 2011. 10. 17. 17:15

Google Earth와 Sketchup

대략 좋다

아무거나 리뷰 2011. 10. 17. 16:27

Photoshop에서 interlaced(비월주사) 스테레오 이미지 만들기

설명을 쓸 시간이 없어서 일단 이미지만 올린다!

개발과 트러블슈팅 2011. 10. 10. 13:23

[OpenCV] BRIEF에는 FLANN을 사용할 수 없다.

FLANN은 SURF와 같은 4-byte floating point 기반 descriptor에서만 사용할 수 있다. BRIEF는 (바이트 단위로 재구성된) 바이너리 스트링이기 때문에 FLANN을 사용하는 것은 어려울 듯. ㅠㅠ 해결 방안은 1. SURF로 해본다. --> 일단은 이쪽으로 MH를 실험. 2. 다른 ANN 라이브러리를 찾는다. http://opencv-users.1802565.n2.nabble.com/FLANN-help-td6185055.html FLANN works with 4 bytes descriptors because needs to calculate distances and then uses floating point values. Try to take a look at origin..

학술 2011. 9. 15. 11:33

추가 정보

인기글

최신글

페이징

이전
1 ··· 8 9 10 11 12 13 14 ··· 30
다음
TISTORY
양고네 연구노트 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바