일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- convexhull
- opencv SURF
- object detection
- 완전탐색
- #Android
- #실생활 영어
- keras
- #영어
- python list
- 영어명언
- findContours
- Convolution Neural Network
- TensorFlow
- #실생활영어
- tokenizing
- c언어
- 딥러닝
- 영어
- #영어 명언
- word embedding
- python __init__
- python 알고리즘
- #프로젝트
- #opencv
- #English
- #일상영어
- #1일1영어
- tensorflow update
- text2img
- 이미지 생성
Archives
- Today
- Total
When will you grow up?
[Java] 배열(Array)
/* * 배열 * : 동일한 데이터 타입의 데이터 값을 일관성있게 여러 개 저장해서 관리할 수 있는 단위이다. */ public class ArrayTest1 { public static void main(String[] args) { // TODO Auto-generated method stub //배열 선언 int[] arr1; int arr2[]; //배열 객체 생성 arr1 = new int[3]; //배열에 값 할당 arr1[0]=2; arr1[1]=3; arr1[2]=4; //배열 값 출력 for(int i=0;i
02. Study/Java
2016. 2. 7. 15:41
화면 위에처럼 이런식으로 나오네요^~^아래는 소스코드 // //////////////////////////////////////////////////////////////////////////////// #pragma warning( disable : 4996) #include #include #include #include char m_sCls[128] ; HINSTANCE m_hInst = NULL; HWND m_hWnd = NULL; DWORD m_dWinStyle = WS_OVERLAPPEDWINDOW| WS_VISIBLE; DWORD m_dScnX = 800; // Screen Width DWORD m_dScnY = 600; // Screen Height BOOL m_bShowCusor= TRU..
02. Study/API
2016. 2. 7. 15:16