자료 썸네일형 리스트형 C#에서 tensorflow 사용하는 방법 알아보기 (*아래 사이트를 참고하여 작성하였습니다: (1) http://euhyeji.blogspot.com/2018/08/tensorflowsharp01.html (2) https://github.com/migueldeicaza/TensorFlowSharp) C#에서 Tensorflow로 만든 모델을 활용할 수 있는 방법은 아래와 같습니다. Tensorflow에서 제공하는 TensorFlowsharp(https://github.com/migueldeicaza/TensorFlowSharp)을 사용하면 C#에서 tensorflow를 사용할 수 있습니다. Tensorflow, Keras로 학습시킨 모델을 .NET에 로드시켜 학습이나 참조를 시키는 응용 프로그램을 만들 수 있는 API를 TensorFlowSharp에서.. 더보기 치트엔진 라이브러리(cheatengine-library) 링크 : https://github.com/fenix01/cheatengine-library 치트엔진 기반으로 제작되었다 합니다.언어는 C#, C++, Delphi 을 지원합니다.예제코드로는 오토어셈블, 스캐너 와 라이브러리 코드 가 지원됩니다.ce-lib.dll 은 https://github.com/fenix01/cheatengine-library/releases 에서 다운받으실 수 있습니다. 기능은 아래와같습니다. ##Features : manage a virtual cheat engine table add an address manually add an autoassemble script activate, desactivate, freeze and unfreeze any address or scri.. 더보기 VB.net GetPixel Private Declare Function GetDC Lib "user32" Alias "GetDC" (hwnd As IntPtr) As IntPtr Private Declare Function ReleaseDC Lib "user32" Alias "ReleaseDC" (hwnd As IntPtr, hdc As IntPtr) As Int32 Private Declare Function GetPixel Lib "gdi32" Alias "GetPixel" (hdc As IntPtr, nXPos As Integer, nYPos As Integer) As UInteger Dim hdc As IntPtr = GetDC(IntPtr.Zero) Dim pixel As UInteger = GetPixel(hdc, x,.. 더보기 DD Methods Methods btn(param) - Simulate mouse button press param: 1 = LButton Down, 2 = LButton Up 4 = RButton Down, 8 = RButton Up 16 = MButton Down, 32 = MButton Up 64 = Button 4 Down, 128 = Button 4 Up 256 = Button 5 Down, 512 = Button 5 Up mov(x, y) - Simulate mouse move movR(dx, dy) - Simulate mouse move (relatively) whl(param) - Simulate mouse wheel param: 1=upward 2=downward key(param1, param2) - S.. 더보기 메이플스토리 IP 175.207.0.73:8585 더보기 Delay 함수 Public Sub Delay(ByVal MilliSecond As Integer) Dim _startsecond As Integer _startsecond = Environment.TickCount While (True) If (Environment.TickCount - _startsecond >= MilliSecond) Then Exit While End If Application.DoEvents() End While End Sub Public Sub delay(ByVal MilliSecond As Double) Dim delayTime As Date = Now.AddSeconds(MilliSecond / 1000) Do Until Now > delayTime Application.DoEvents().. 더보기 프로그램 ANTI-DUMP 적용 메모리상에서 이미지 베이스 부터 500 Byte 까지 Null (0) 으로 덮어씌워 PE 헤더를 손상시켜 덤프를 뜰수 없게 합니다. Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long Private Declare Function GetCurrentProcessId Lib "kernel32" () As Long Private Declare Function VirtualProtectEx Lib "kernel32.dll" (ByVal hProcess As Long, ByRef lpAddress As.. 더보기 DD.dll의 하드입력 방식 소스코드 및 작동원리 사용하는 라이브러리 class_DD는 C++로 만들어진 가상 하드웨어 드라이버이다. 그러모르 Dll Call 함수가 필요하다. DllImport 함수를 이용하여 Winapi인 user32.dll, kernel32.dll을 Import한다. user32에서는 GetCursorPos와 핫키에 관한 함수 2개를 import했다. kernel32에서는 라이브러리를 관리하는 LoadLibrary, GetProcAddress, FreeLibrary를 import했다. 그리고 아래에는 class_DD에서 불러오는 함수를 미리 delegate로 선언해 주었다. dll은 Dynamic link library의 약자로, 윈도우에서 사용하는 동적 라이브러리이다. extern : 외부 메소드를 참조하려면.. 더보기 이전 1 ··· 22 23 24 25 26 다음