분류 전체보기590 Gaussian Blur in Delphi You can do it like so. In informal testing it appears to take roughly twice as much time as Adobe Photoshop takes to do the same thing, which seems pretty OK to me - there are a lot of things you could do to speed it up. The gaussian kernel exp(-(x^2 + y^2)) is of the form f(x)*g(y), which means that you can perform a two-dimensional convolution by doing a sequence of one-dimensional convolution.. 2008. 8. 13. delphi 2007에서 tnt 설치 TNT 2.3 최신 버전을 Delphi 컴파일 할 경우 아래와 같은 오류가 발생합니다. [DCC Error] TntWideStrings.pas(19): F1054 Do not refer to TntWideStrings.pas. It works correctly in Delphi 2006. 소스 코드를 보면 아래와 같은 부분이 있는데, Delphi 2007에서는 설치가 되지 않는 것인지, 아니면 Delphi 2007 에는 유니코드를 지원하는 컴포넌트를 따로 제공 하거나 다른 방법이 있는지 알고 싶습니다. {$IFDEF COMPILER_10_UP} {$MESSAGE FATAL 'Do not refer to TntWideStrings.pas. It works correctly in Delphi 2006.'} .. 2008. 8. 13. Component 설치하는 방법 출처 노력하는 자는 이길 수 없다. | crattack http://blog.naver.com/crattack/70015057974 delphi 2006에서 ActiveX 컴포넌트 등록하기 delphi 2007/02/12 19:33 http://blog.naver.com/daehyun3230/80034632150 Installation of ActiveX Controls in Delphi 2005 and 2006 Borland Delphi 2005 and 2006 include a component import wizard for installing ActiveX controls. Unlike in earlier versions of Delphi where the use of this wizard was.. 2008. 8. 13. 공유기 사용시 Public IP 구하기 // 보통 공유기를 사용하여 인터넷에 접속할 경우 공유기로부터 내부 IP(192.168.x.x)를 받아 사용하게 // 되고 공유기는 이것를 Public IP 로 변환(NAT)하여 전송하는 라우터로서 동작하게 됩니다 // 이런 상황에서 ISP 로 부터 받은 공유기의 Publuc IP 를 로컬 컴퓨터에서 직접 알아보는 방법은 // SNMP 프로토콜을 이용하거나 trace route 해보는 방법이 있는데 좀 복잡합니다 // 간단하게 하는 방법은 접속 IP 를 echo 해주는 외부 서버에서 받아오는 방법입니다 // 아래 소스를 약간 응용하면 내 IP가 공인인지 사설인지 판단하는 루틴을 만들 수 있습니다 unit Unit1; interface uses Windows, Messages, SysUtils, Varia.. 2008. 8. 13. 이전 1 ··· 112 113 114 115 116 117 118 ··· 148 다음