일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pdf merge
- ironpython
- pythonnet
- processstart
- 파이썬 #업무자동화 #python
- Text To Speech
- Text-to-Speech
- YOLOv7
- pyautogui
- google cloud
- pypdf2
- 업무자동화
- YOLOv5
- yolo
- 사무자동화
- computervision
- DeepLearning
- objectdetection
- Google API
- 사무자동화 #Selenium
- Today
- Total
목록분류 전체보기 (107)
Doarchive
To update your account to use zsh, please run `chsh -s /bin/zsh`.The default interactive shell is now zsh. To update your account to use zsh, please run `chsh -s /bin/zsh`. https://support.apple.com/ko-kr/HT208050
UI변경이 합리적이고 보기 좋은지 병렬작업이 안전하게 실행되는지 설계(Design): 코드가 잘 설계되었고 시스템에 적합한가? 기능(Functionality): 코드가 작성자의 의도대로 동작하는가? 사용자에게 적합하게 동작하는가? 지금 당장 필요없는 기능을 개발하진 않았는가? 복잡성(Complexity): 더 간단하게 만들 수 있는가? 나중에 코드를 다른 개발자가 보았을 때 쉽게 이해하고 사용 가능한가? 테스트(Tests): 잘 설계된 자동 테스트가 있는가? 유닛 테스트는 적절항가? 작명(Naming): 개발자가 변수, 클래스, 메소드 등에 명확한 이름을 선택했는가? 주석(Comments): 주석이 명확하고 유용한가? '왜'에 대해 잘 나타내고 있는가 스타일(Style): 스타일 가이드(코딩 컨벤션)를 ..
NSLocalizedString(key:, comment:) 언어 추가 { "APP_NAME" = "MyApp" "LOGIN_LBL" = "Login" ... } { "APP_NAME" = "MinhaApp" "LOGIN_LBL" = "Entrar" ... }
사용가능한 데이터 타입 NSData NSDate NSNumber NSDictionary NSString NSArray NSNumber는 아래 형식도 포함 UInt Int Float Double Bool NSUserDefaults에 데이터 담기 let keyConstant = "keyValue" let defaults = NSUserDefaults.standardsUserDefaults() defaults.setObject("save", keyValue: keyConstant) NSUserDefaults있는 데이터를 사용하기 let name = defaults.stringForKey(keyConstant)
*.m -> Objective-C 언어만을 사용할 때 기본적으로 사용되는 확장자 *.mm -> Objective-C 코드에 c++ 코드를 사용하고자 할 때 사용되는 확장자 library 가 c++ 이면 라이브러리를 호출하는 파일의 확장자는 *.mm 이어야 함.
Undefined symbol: ___cxa_guard_acquire Undefined symbol: ___cxa_guard_releases Undefined symbol: ___cxa_guard_abort Undefined symbol: ___gxx_personality_v0 Build Settings - all - Other Liker Flages add -lc++ , - ObjC
1 Get started with playground 2.select mac os - Blank 3. typing this code and start 3. Drag image folder that you want to train folder structure have to be like that Test - object folders - images in to the folder this is the example, when i make model , I put more than 500 images each object folder 3, After dragging folder training is success 4. Let's evaluation , drag test images and another o..