# IEEE

12개의 포스트

[Review] Image denoising + light network(2021~2023)

2021 Single-Image Dehazing via Compositional Adversarial Network >Single-image dehazing has been an important topic given the commonly occurred image degradation caused by adverse atmosphere aerosols. The key to haze removal relies on an accurate estimation of global air-light and the transmission map. Most existing methods estimate these two parameters using separate pipelines which reduces the efficiency and accumulates errors, thus leading to a suboptimal approximation, hurting the mode

2023년 2월 20일
·
0개의 댓글
·

Extended Isolation Forest

Extended Isolation Forest 2021 IEEE Transactions on Knowledge and Data Engineering Isolation Forest의 수직/수평 방향의 split 방법을 보완하는 split 방법을 사용 Isolation Forest가 잘 분할하지 못하는 영역에 존재하는 anomaly도 분할하려는 목표 Introduction 전체적인 흐름은 Isolation Forest(IF)와 비슷 IF에서 tree를 만들기 위해 사용한 random split의 method를 확장 Isolation Forest iTree ensemble model axis-parallel split ↳ 축에 수직/수평 방향으로 split random choice feature and random choice value(in feature) Extended Isolation Forest IF의 split rule 변경 ↳ 구분이 어려운

2023년 1월 9일
·
0개의 댓글
·

Isolation Forest

Isolation Forest 2008 IEEE International Conference on Data Mining Introduction Isolation Forest(IF)는 anomaly의 정량적 특성을 사용하여 nomal과 anomaly를 구분 1) Anomalies are the minority consisting of fewer instances 2) Anomalies have attribute-values that are very differnt from those of normal instance ➡ few and different : more susceptible to isolation than normal points abnormal points : isolated closer to the root of the tree normal points : isolated at the deeper end of the tree IF는 tre

2023년 1월 5일
·
0개의 댓글
·
post-thumbnail

IEEE 754 부동소수점(floating Point)

IEEE 754의 부동소수점 표현은 크게 세 부분으로 구성되는데, 최상위 비트는 부호를 표시하는 데 사용되며, 지수 부분(exponent)과 가수 부분(fraction/mantissa)이 있다. 예시 −118.625(십진법)를 IEEE 754(32비트 단정밀도)로 표현해 보자. 음수이므로, 부호부는 1이 된다. 그 다음, 절댓값을 이진법으로 나타내면 1110110.101(2)이 된다. 소수점을 왼쪽으로 이동시켜, 왼쪽에는 1만 남게 만든다. 예를 들면 1110110.101(2)=1.110110101(2)×2⁶ 과 같다. 이것을 정규화된 부동소수점 수라고 한다. 가수부는 소수점의 오른쪽 부분으로, 부족한 비트 수 부분만큼 0으로 채워 23비트로 만든다. 결과는 110110101000000

2022년 8월 21일
·
0개의 댓글
·
post-thumbnail

🪢유선유죄 무선무죄📡

이더넷Ethernet "이더넷에는 한 가지 중대한 결점이 있다. 바로 통신선이 필요하다는 점이다." 컴퓨터 네트워크 기술의 하나. 일반적으로 LAN, MAN 및 WAN에서 가장 많이 활용되는 기술 규격. reference) 트위스티드 페어 케이블 (이더넷 케이블Ethernet Cable, 일명 랜 케이블, 랜 선)& 이더넷이 사용된 CAT 5E 노트북 연결 > ## 무선 통신 "다행히도 이더넷의 결점을 해결할 방법, 그것은 무선 통신을 이용하는 것이다." 👉 무선 전자기파를 사용하여 데이터를

2022년 8월 4일
·
0개의 댓글
·
post-thumbnail

실수의 표현방식 - 부동소수점(IEEE 754)

부동소수점 정의 부동(떠다니는) 소수점이라는 의미입니다. 컴퓨터는 IEEE 754 표준을 따라 실수를 표현합니다. float은 32비트, double은 64비트로 구성됩니다. 구성 부호비트 1비트의 크기를 가집니다. 실수의 부호를 결정합니다. 0을 양수비트, 1을 음수비트로 합니다. 지수부 float에서는 8비트, double에서는 11비트를 가집니다. 가수부 float에서는 23비트, double에서는 52비트를 가집니다. 부동소수점 방식으로 실수 표현하기 실수 13.8을 부동소수점으로 표현합니다. 정수부 십진수 : 13 이진수 : 00001101 소수부 십진수 : 0.8 이진수 : 110011001100....(1100 무한 반복) 2로 곱해서 발생한 carry를 모웁니다. 2로 곱해서 소수점 부분이 0으로 딱 떨어질 때까지 해당 계산을 반복합니다. 0.8 *

2022년 4월 19일
·
0개의 댓글
·
post-thumbnail

[Network] 여러가지 개념

IEEE 802 표준 많은 네트워크 장비 공급 업체들로부터 출시되는 관련 장비들간의 호환성 및 장비간 연동을 위하여 IEEE(전기 전자 전문가 협회)는 802 위원회를 조직하여 LAN 통신에 관한 표준화를 추친하였다. 토폴로지 네트워크에서 스테이션들을 연결하는 케이블의 구조, 방법 혹은 기하학적인 모양 다양한 방식으로 구성 가능

2022년 4월 5일
·
0개의 댓글
·
post-thumbnail

Ensemble Bootstrapped Deep Deterministic Policy Gradient for vision-based Robotic Grasping -논문 리뷰

논문 링크: https://ieeexplore.ieee.org/document/9316755 Reference W. Liu et al., "Ensemble Bootstrapped Deep Deterministic Policy Gradient for Vision-Based Robotic Grasping," in IEEE Access, vol. 9, pp. 19916-19925, 2021, doi: 10.1109/ACCESS.2021.3049860. 이 논문은 이전에 소개한 https://velog.io/@everyman123/Automtic-Inside-Point-Localization-with-Deep-Reinforcement-Learning-for-Interactive-Object-Segmentation-%EB%85%BC%EB%AC%B8-%EB%A6%AC%EB%B7%B0 과 비슷한 문제를 해결하기 위해 고민한다. DDPG는 Exploration 전략이 Noisy에

2022년 2월 22일
·
0개의 댓글
·
post-thumbnail

Active Object Detection Using Double DQN and Prioritized Experience Replay - 논문 리뷰

논문 출처: https://ieeexplore.ieee.org/document/8489296 Abstract 이 논문은 Deep Reinforcement Learning을 이용해 효율적인 Active Object Detection을 할 수 있는 알고리즘을 제시한다. >What is Active Object Detection When an object of interest apeears in its view field, and it couldn't detect it surely, it can adjust its pose by translation or rotation to get a better observation 즉 현재 캡쳐한 사진에서 Interest Object의 Class

2022년 2월 1일
·
0개의 댓글
·
post-thumbnail

IEEE 2021 RAS Winter School on SLAM in Deformable Environments

One of interesting area of mine I have explored is to develop visual localization algorithms combining the strong representation of CNNs with fundamental visual geometry-based theories. One of the introductory classes I took in the first term in graduate school, Multiple View Geometry, triggered my interest in 3D vision and visual geometry. My

2021년 11월 22일
·
5개의 댓글
·
post-thumbnail

IEEE기준 프로그래밍 언어 랭킹 (2021년 9월 기준)

IEEE(미국 전기 전자 기술자 협회, Institute of Electrical and Electronics Engineers)의 IEEE Spectrum잡지 2021년 8월 24일자에 프로그래밍 언어 연례 순위 최신 버전인 "Top Programming Languages 2021"을 공개했습니다. 이 순위에는 총 55종류의 프로그래밍 언어를 8가지 소스를 기반으로 11가지의 지표평가를 토대로 집계된 점수로 순위를 표시합니다. 각 지표에 대한 가중치에 대해서는 4가지 순위가 생성되며, 기타 가중치에 의해 정의하여 순위를 만들 수 있습니다. IEEE Spectrum : 일반적인 IEEE회원의 흥미와 관심도를 반영한 종합 순위 Trending : 빠르게 성장하고 있는 언어 순위 Jobs

2021년 9월 18일
·
0개의 댓글
·
post-thumbnail

LAN(Local Area Network)

LAN(Local Area Network) 근거리 통신망은 광대역 통신망과 달리 학교, 회사, 연구소 등 한정된 건물이나 일정 지역 내 에서 노드들이 고속 전송 회선으로 서로 연결하여 프로그램 파일 등을 공유하는 네트워크 망 LAN은 지국, 전송 매체, 연결 장치의 하드웨어로 구성 지국(station) 컴퓨터, 프린터, 모뎀과 같은 것들을 말함, 즉 노드(node)라 함 지국 내 설치된 네트워크 인터페이스 카드(NIC, Network Interface Card)형태 전송 매체(Transmission Media) 지국간의 통신하는 경로 유선LAN의 경우 꼬임쌍선케이블, 동축케이블, 광케이블 등 유도매체로 구성 무선LAN(

2020년 7월 11일
·
0개의 댓글
·