일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- NodeMCU
- google drive upload
- Python
- 아두이노 설치
- rotation
- opencv resize
- c#
- google drive 업로드
- sshkey
- opengl
- 정보처리기사
- 고정ip할당
- api사용해서 google drive에 폴더만들기
- vim명령어
- vtk
- opencv apt설치
- 아두이노
- annotating
- Google Drive API
- opencv
- 정보처리기사후기
- esp32
- Winform
- libopencv-dev
- vi
- 우분투 opencv 설치
- vim
- translation
- apt update
- Today
- Total
목록분류 전체보기 (74)
내가 보려고 만든 블로그
데이터 그리드뷰에 작은 화살표에서 우클릭해서 열편집 동작> sortMode >NotSortable 로 변경함 미들센터로 폰트를 정함 > 센터로 감.
https://console.cloud.google.com/apis/ Google 클라우드 플랫폼 로그인 Google 클라우드 플랫폼으로 이동 accounts.google.com https://www.youtube.com/watch?v=1y0-IfRW114 이 동영상보고 oauth계정만드는 부분만 따라했다. 코드부분은 내가 c#을 쓰기때문에 따라하지않았음. api코드 설정하는건 이렇게 했다. private static DriveService GetService() { var tokenResponse = new TokenResponse { AccessToken = "엑세스토큰", RefreshToken = "리플레시 토큰", }; var applicationName = "프로젝트이름"; // Use the..
public static string DriveUploadBasic(string filePath, string forderID) { var credential = GoogleCredential.FromFile(PathToServiceAccountKeyFile) .CreateScoped(DriveService.Scope.Drive); // Create Drive API service. var service = new DriveService(new BaseClientService.Initializer { HttpClientInitializer = credential, //ApplicationName = "Drive API Snippets" }); // Upload file photo.jpg on drive...
// service account 계정만들고 다운받은 json파일 경로 private const string PathToServiceAccountKeyFile = @"C:\Users\\Desktop\mygoogleapi.json"; // upload할 파일경로 + 이름 private const string UploadFileName = @"C:\Users\Desktop\aaa.txt"; //구글드라이브의 폴더주소 private const string DirectoryId = "1QM......."; ▲ service account 계정 어떻게 만들지 모르겠으면 google drive에 업로드하기 -1 보기!!! 구글드라이브 폴더주소 알아보는 법은 2편에 있음. public static string Dri..
// service account 계정만들고 다운받은 json파일 경로 private const string PathToServiceAccountKeyFile = @"C:\Users\\Desktop\mygoogleapi.json"; // upload할 파일경로 + 이름 private const string UploadFileName = @"C:\Users\Desktop\aaa.txt"; //구글드라이브의 폴더주소 private const string DirectoryId = "1QM......."; 구글드라이브에 들어가서 폴더 하나 만들고 그 폴더에서 우클릭하고 공유를 누른다. json파일을 보면 client_email 옆에 텍스트가 있는데 그것을 복사해서 공유에 쓰고 공유 버튼을 누른다. 그리고 tes..
https://www.daimto.com/upload-file-to-google-drive/ Upload file to Google drive Are you working on an application where you would like to upload a file to Google drive. There are some changes from google drive v2 to the new Google drive v3 and a lot of the samples out there for v2 wont work for the new Google drive API v3. www.daimto.com 보고 따라함.. winform에서 실행하는거라서 코드 변경 함. https://www.youtube.co..
sudo apt install assimp-utils sudo apt-get install libassimp-dev 순서대로 터미널에 입력하기 그다음에 내 소스의 cmake에 assimp 포함시켜주고헤더파일에 #include #include #include #include 쓰고 make해서 에러없으면 ok
**나중에 내가 까먹을까봐 적어둠!!!! opengl 에서 삼각형을 그릴때 glDrawArrays를 사용하면 index를 신경쓰지않고 그리면 된다. float triangle[]= { 0.0f, 0.0f, 0.0f 0.5f, 1.0f, 0.0f 1.0f, 0.0f, 0.0f }; 이렇게 데이터를 넣고 glDrawArrays 함수를 사용하면 정삼각형이 그려진다. 0,0을 기준으로 하고 이렇게 그려놓고 점을 찍으면서 버텍스에 데이터를 넣으면 편하다. 그런데 사각형을 그릴때 이렇게 그리려면 삼각형 두개가 필요하다 그냥 생각해도 점네개로 사각형을 그릴수 있는것같은데 그래서 인덱스를 써서 겹치는 부분을 써준다 GLuint indices[] = { 0, 1, 2, 1, 3, 2 }; 인덱스는 이렇게 해준다. 그리고..