일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Winform
- libopencv-dev
- opencv apt설치
- vim
- apt update
- Google Drive API
- opengl
- vim명령어
- 아두이노
- 우분투 opencv 설치
- 정보처리기사
- 아두이노 설치
- api사용해서 google drive에 폴더만들기
- 고정ip할당
- vi
- google drive 업로드
- google drive upload
- c#
- 정보처리기사후기
- esp32
- opencv resize
- sshkey
- vtk
- opencv
- annotating
- rotation
- ubuntu
- NodeMCU
- translation
- Python
- Today
- Total
목록분류 전체보기 (74)
내가 보려고 만든 블로그
sudo apt install libglm-dev
https://forum.arduino.cc/t/esp32-compile-error-python-exe-missing-solved/953279 ESP32 compile error: python .exe missing [SOLVED!] Platform: Ubuntu Linux / 1.8.19 IDE Note: FRESH install. Compile error on esp32: exec: "python": executable file not found in $PATH Error compiling for board ESP32 Dev Module. I have installed python and rebooted. sudo apt-get install git && \ wget https:/ forum.ardu..
https://developer.nvidia.com/cudnn 가입하고 다운로드 클릭 가입해야 다운로드 가능함.. 버전에 맞게 클릭 Local Installer for Linux x86_64 (Tar)sudo cp include/cudnn* /usr/local/cuda/include 우분투에 64비트라서 이거 클릭함. 터미널에 tar -xvf cudnn-linux-x86_64-8.9.2.26_cuda12-archive.tar.xz 쳐서 압축풀고 cd cudnn-linux-x86_64-8.9.2.26_cuda12-archive sudo cp include/cudnn* /usr/local/cuda/include sudo cp lib/libcudnn* /usr/local/cuda/lib64 sudo chmod..
터미널에서 ubuntu-drivers devices 이런식으로 나옴 메뉴바에 여기 누르고 software updater 누르고 기다리면 이런화면이 나오는데 settings를 누른다. 화면을 보면 525로 세팅되어있는데 변경하고 거기에 맞춰서 설치해야한다. 나는 525에 맞춰서 설치했다. https://developer.nvidia.com/cuda-toolkit-archive CUDA Toolkit Archive Previous releases of the CUDA Toolkit, GPU Computing SDK, documentation and developer drivers can be found using the links below. Please select the release you want f..
export MESA_GL_VERSION_OVERRIDE=3.3 우분투 18.3에서 opengl 사용시에 이런에러가 뜰때가 있음 그래서 터미널에 위와같이 입력하고 엔터치니깐 괜찮아짐!!
0 -5 1 -4 2 -3 3 -2 4 -1 리스트 리스트가 있을때 파이썬은 앞에서 부터하면 0,1,2,3... 이렇게 나가는데 반대로하면 -1,-2,-3....이런식으로 나간다. 그리고 파이썬은 a[0:2]이렇게 있으면 0번째,1번째가 나온다. range도 range(1, 20) 이러면 1~19까지 나온다. list[start:end:step] 잘기억해야함 파이썬 안써서 step값 처음봤을때 이게 뭔가싶었음.......;;;;;;; ex)list[0:10:2]이러면 0~9까지 2스텝으로 가는것이다. a = "REMEMBER NOVEMBER" b = a[0:3] + a[12:16] c = "R AND %s" % "STR" print(b+c) print(a[::2]) print(a[::-2]) print(..
빈칸문제 implements interface static extends new 이렇게 많이 나오는듯;; extends는 일반 클래스와 abstract 클래스 상속에 사용되고, implements는 interface 상속에 사용된다. interface 나오면 implements 반대로 implements가 나오면 interface가 나올수 있다고 생각해야함. import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Car implements Runnable{ int a; public void run(){ System.out...