[CA] Chapter 3-2: Logical Operations-EXERCISE
⚙ Computer Architecture 공부 앞에서 공부한 Decision-Making Instruction, Comparsion Instruction을 가지고 예시 코드를 해석해 보자 Switch Statement 구현 C/C++ 예시: switch (value) { case 1: // value가 1일 때 실행할 코드 ...
⚙ Computer Architecture 공부 앞에서 공부한 Decision-Making Instruction, Comparsion Instruction을 가지고 예시 코드를 해석해 보자 Switch Statement 구현 C/C++ 예시: switch (value) { case 1: // value가 1일 때 실행할 코드 ...
📚컴퓨터 네트워크 전공 수업 정리 ⭐ Transfer layer에서 가장 중요한 T.C.P에 대해 알아보자 TCP TCP(Transmission Control Protocol): 데이터를 안정적으로 전송하기 위한 핵심 프로토콜 ✅TCP의 주요 구성 개념: Point-to-Point: 하나의 sender와 하나의 recevier만 연결 ...
⚙ Computer Architecture 공부 Logical Operations Shift Operations 📚 Shifting all the bits in a word to the left or right, with the emptied bits filled with 0s Shift instruction: sll(Shift Left...
👓Computer Vision 정리 Multiresolution Images(다중 해상도 이미지) Multiresolution Images: 다양한 크기와 해상도를 가진 이미지들의 집합 ✅사용하는 이유: 서로 다른 크기의 입력 및 출력 이미지를 처리할 때 이미지 분석 과정에서 다양한 scale 정보가 필요할 때 이런 경우에는 다양한 이...
👓Computer Vision 정리 Geometric Transformation Geometric 개념 정리 주의: 이 슬라이드에 나와있는 점들의 좌표들은 (x-좌표,y-좌표)로 표기되어있음 즉, computer vison에서는 (y,x)로 바꿔야함 Scalar: real number (only magnitude), (e.g.,...
👓Computer Vision 정리 Binary Image Processing Binary Image: an image only consisting of 0’s and 1’s(흑백 이미지) Binarization(이진화): binary image occurs after thresholding operation ...
📚컴퓨터 네트워크 전공 수업 정리 rdt(Reliable Data Tranfer) RDT(Reliable Data Tranfer): 네트워크를 통해 데이터를 안정적으로 전송하기 위한 규칙 및 메커니즘의 집합 application layer입장에서는 보내기만 하면 reliable이 보장 된다고 생각한다. transpo...
⚙ Computer Architecture 공부 MIPS Registers 📚 MIPS CPU는 32개의 레지스터를 가지고 있으며 각각 32bits이다. 특징: 32개의 레지스터 (번호: 0-31) 레지스터 번호를 지정하려면 5비트 필요 (2^5 = 32가지 경우의 수) 레지스터 번호는 식별자 역할을...
🍀 운영체제 전공 수업 정리 Implicit Threading 최근 스레드 개수가 증가함에 따라 프로그램의 정확성 보장이 어려워짐 이런 복잡성을 줄이기 위해 complier와 run-time library가 스레드의 생성과 관리를 담당 개발자는 병렬로 처리할 수 있는 task를 지정만 하면 됨 Thread Pools: 쓰...
🍀 운영체제 전공 수업 정리 Single and Multithreaded Processes single threaded process: 하나의 스레드만 존재 모든 자원을 단일 스레드가 사용 multithreaded process: code, data, files를 공유 ...