일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ubuntu
- Winform
- Google Drive API
- opencv resize
- annotating
- vim명령어
- 우분투 opencv 설치
- esp32
- 아두이노
- google drive 업로드
- opencv apt설치
- translation
- vi
- rotation
- c#
- opencv
- Python
- vtk
- 정보처리기사
- 정보처리기사후기
- opengl
- apt update
- api사용해서 google drive에 폴더만들기
- vim
- 고정ip할당
- NodeMCU
- sshkey
- libopencv-dev
- 아두이노 설치
- google drive upload
- Today
- Total
목록전체 글 (74)
내가 보려고 만든 블로그
sudo apt update했을때apt list --upgradable 해보라면서 뜰때가 있다apt list --upgradable 이렇게 치면이렇게 나오는데 초록색으로 나오는 python3-update-manager 이런걸 각각 업그레이드 해주면 된다.그냥 sudo apt upgrade 하면 upgrade몇개 안된다고 그렇게 뜸......sudo apt-get install --only-upgrade 다 업그레이드 해주면 이렇게 깔끔하게 된다..
sudo apt update이런식으로 업데이트 되다가 안될때. 시키는대로 이렇게 업데이트 가능한 list를 본다이런식으로 나오는데초록색 글자를 보면 python3-update-manager를 업데이트 하라고 나옴 sudo apt-get install --only-upgrade python3-update-manager이런식으로 업그레이드 해준다. 다 해주고 다시 업데이트 해보면이렇게 제대로 업데이트가 된다. 우분투를 회사에서하고 집 노트북에서 쓰는데 22.04의 문제인지 몰라도 두 컴퓨터 다 이런 문제가 발생했다. 어쨌든 이렇게 해결이 되더라
https://learnopencv.com/image-filtering-using-convolution-in-opencv/main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); if (image.empty()){ std::cout (3,3) (3,3)
우분투 바탕화면에서 우클릭한 후 Display setting에 들어가서 sharing을 누르면 remote를 켤수 있는 화면이 나오는데문제는 여기의 비밀번호가 reboot할때마다 임의의 비번으로 바뀐다는것이다. 1. 우분투에서 "Passwords and Keys" 앱을 연다. 2."+" 클릭 후 "Pssword keyring"을 클릭한다. 3.새 키링의 이름을 "Zero Security Keyring"으로 지정하거나 암호화되지 않음을 상기시키는 이름을 지정하고 Add클릭한다. 4.그러면 비번정해라 그런 화면이 나오는데 아무것도 치지말고 컨티뉴 버튼을 클릭한다. 5.암호화되지 않은 키체인을 생성한다는 경고가 표시되는데 그냥 컨티뉴 누른다. 6.새 키링을 마우스 오른쪽 버튼으로 클릭하고 "Set as def..
# Import dependenciesimport cv2# Read Imagesimg = cv2.imread('Lenna.png')# Print error message if image is nullif img is None: print('Could not read image')# Draw line on imageimageLine = img.copy()#Draw the image from point A to BpointA = (200,80)pointB = (450,80)cv2.line(imageLine, pointA, pointB, (255, 255, 0), thickness=3, lineType=cv2.LINE_AA)# Draw circleimageCircle = img.copy()# define..
CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS}) add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS}) main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); if (image.empty()){ std::cout 실행하니까 다 잘나옴.
CMakeLists.txtcmake_minimum_required(VERSION 3.10)project(OpenCVExample)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS}) add_executable(main main.cpp)target_link_libraries(main ${OpenCV_LIBS}) main.cpp#include #include int main() { // read image cv::Mat image = cv::imread("Lenna.png"); // rotated ///////////////////////////////////////////////////////////////// double a..
1.이미지 회전rotated.pyimport cv2 # Reading the imageimage = cv2.imread('Lenna.png') # dividing height and width by 2 to get the center of the imageheight, width = image.shape[:2]# get the center coordinates of the image to create the 2D rotation matrixcenter = (width/2, height/2) # using cv2.getRotationMatrix2D() to get the rotation matrixrotate_matrix = cv2.getRotationMatrix2D(center=center, angle=..