#include #include int a = 10; static int s = 20; void f1(void); void main(void) { static int s; // s = 0이 자동으로 된다. static. a++, s++; // 1. a = 11, s = 1 printf("%d %d\n", a, s); f1(); a++, s++; printf("%d %d\n", a, s); // 3. a = 12, s = 2 f1(); system("pause"); } void f1(void) { int a = 1; static int s = 2; a++, s++; // 2. a = 2, s = 3 // 4. a = 2, s = 4, a는 static이 아니기 때문에 2번째 호출 시 다시 a = 1부터 시..
// 티스토리가 처음이라 코드를 올리는 과정에 이상하게 올라가진다.. 급하게 소스코드 에디터를 야매로 설치한 탓에 발생한 현상 같다. HTML 특징 같은데.. 를 넣으면 가 자동 추가되는..? 나중에 고쳐야겠다. 혹시나 보시는 분이 계시다면 잡다한 오류는 무시해주세요! // 나를 위한 메모 : 사이에 코드를 넣을 것 extern은 다른 파일의 변수나 함수를 참조하기 위해 사용한다.static은 한 파일에서 전역변수로 쓰지만, 다른 파일의 참조를 막고 싶은 경우에 사용한다. Exam01.cpp #include int a; // 전역변수는 static이 자동으로 선언되며 static은 초기화를 안해도 0의 값이 들어간다. static int b = 10; extern int c; extern void fun..
- Total
- Today
- Yesterday
- direction detection
- high pass filter
- equalizing
- median filter
- erosion
- dilation
- Filter
- Line Detection
- Low pass filter
- canny
- canny operator
- laplacian of gaussian
- Sobel
- segmentation
- mean filter
- morphology
- 영상처리
- difference of gaussian
- 캐니 엣지
- hough transform
- top hat
- upsampling
- pyrUp
- OpenCV
- adaptive thresholding
- black top hat
- gradient
- morphological operation
- pyrDown
- bilateral filter
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |