Others 썸네일형 리스트형 Camera Intrinsic/Extrinsic Parameter 자세한 설명 굉장히 좋은 설명 블로그를 발견하여 공유한다!! https://xoft.tistory.com/12 [개념 정리] Camera Intrinsic/Extrinsic Parameters #2 이전 포스트 에서는 Camera Parameter가 어디서 사용되는지와 Pinhole Camera Model, 4가지 Coordinate System에서 대해서 설명하였습니다. 본 포스트에서는 Camera Parameter를 수식적으로 설명합니다. 4가지 Coordinat xoft.tistory.com 아래 그림은 위 블로그의 캡쳐!! (저작권에 문제가 있을 시 알려주세요!) 더보기 Kalman Filter 이해하기 좋은 사이트 https://limitsinx.tistory.com/72 더보기 Github 명령어 모음 더보기 [C] how to read csv file - old int main() { FILE *fp;fopen_s(&fp, "D:/CProject/test00/test.csv", "r"); if (fp == NULL){perror("error fopen");return 0;}float val;for (int i = 0; i < 3; i++) {for (int j = 0; j < 5; j++) { fscanf_s(fp, "%f,", &val);printf("read value is %f \n", val); }fscanf_s(fp, "\n,", &val);printf("new line------------------------ \n");} fclose(fp);system("pause");return 0; } 더보기 Hidden Markov Model Explain You have three observable states {sleep, eat, poop} of your dog. From the past observations, you want to know the current state of your dog, {sick, healthy} Since you don't know the current state, its hidden, therefore, hidden state. To infer the hidden state, we need to know the following parameters 1) Initial probability for the hidden2) Transition probability for the hidden3) Emission.. 더보기 이전 1 다음