분류 전체보기 10

원격접속(window, remote desktop)에서 한글 LoadLibrary failed with error87 수정

LoadLibrary failed with error87 이 오류는 원격접속했을때 그래픽라이브러리가 원격접속용 라이브러리로 잡히지 않고 원격컴퓨터의 하드웨어가 설치된 그래픽카드가 잡히면서 오류가 발생하는것으로 보임. 원격접속을 하는 경우 2번째것이 드라이브로 설정되어야 하는데. 한글은 첫번째것을 사용하려고 시도해서 안되는것으로 보임. 드라이브를 첫번째 것을 unable해주면 되나 복잡하고 번거로움. (여러번 하니 오류도 발생..) 해결 : 원인중 한가지는 한컴이 그림출력 속도를 높이기 위해 3d 가속을 가속을 사용하는게 원인임. 이를 3d가속을 사용하지 않도록 바꾸어주면 됨 한컴기본설정 > 사용자설정 > 고급탭 > 3D랜더링 -> 2.5D 랜더링(하위버전)으로 변경 이렇게 하고 한글을 다시 실행하면 되네..

카테고리 없음 2022.04.25

Deep Leaning CNN - CNN의 채널과 filter그리고 kernel

CNN의 channel, filter그리고 kernel CNN에 용어가 channel, filter, kernel이 중요한 개념인데 때로는 혼란스러워 정리를 해봤다. (참고 : https://tykimos.github.io/2017/01/27/CNN_Layer_Talk/) 참고에 나와 있는 내용을 잘 읽어 보면 알 수 있지만 익숙해지기 전까지는 시간일 걸린다. channel: color사진에서 각 색 혹은 명도를 나타내는 data. RGB를 가장 많이 이야기 하는데 색을 3가지 다른 값으로 저장한것( R-붉은색, G-초록색, B- 파란색). RGB에외도 channel이 더 있다. 흑백은 1개의 channel. filter : CNN에서 convolution을 수행하기 위한 template같은 것이다. 보..

카테고리 없음 2021.08.10

referernce and pointer (c, c++)

참조자와 포인터 참 헷갈립니다. #include /* int *p; 포인터선언 int &r; 참조자(reference)선언 *p=10; 값 &r=p; 주소 *r=10; 오류 */ int main(void) { int num_1 = 111; int *p = &num_1; int &ref0 = num_1; //reference! (another name) int &ref1 = *p; int *(&ref2) = p; printf("%d\n", ref0); //num_1의 값 printf("%d\n", &ref0); //ref0의 주소 값(참조자) printf("%d\n", &ref1); //ref1의 주소 값(참조자) printf("%d\n", ref1); //ref1의 값(참조자) == num_1 print..

카테고리 없음 2021.07.26

pmm and mass fraction

질량분율(mass fraction)에서 pmm을 구하는 부분에서 혼란스러운 부분이 있어 정리해 보았다. 공기의 오염이나 성분의 비율을 나타낼 때 많이 사용하는 단위로ppm을 사용한다. ppm은 몰수비로 나타내며 공기의 경우 부피비와 같은 값이 된다. 정의는 다음과 같다. 다음은 공기와 임의의 기체 2개의 기체로 구성된 경우를 생각한다 정의의 의미를 확인하기 위하여 단위 부피당 질량으로 변경하여 보자. 또한 그 반대 변환을 통해 계산하는 방법과 의미를 파악해 보자. 먼저 오염물의 몰수를 구한다. 단위 체적당의 질량은 위와 같이 변환이 가능하다. 예제1) note ppm에 대한 혼란스러운 부분은 분모로 사용되는 양이다. 이 대부분 공기의 양으로 표시하는데 실제로는 공기와 오염물의 합을 나타낸다. 분모는 보통..

jetson Nano swap 변경하기(가상메모리변경)

HW : jetson nano OS : ubuntu 18.04 jetson은 ubuntu에서 사용하는 swapfile을 사용하지 않고 zram이라는 것을 이용하여 관리한다. 많은 사람들이 swap을 늘리기 위해 ubuntu의 swapfile을 만들어 사용하는데 jetson의 booting시 사용하는 "/etc/systemd/nvzramconfig.sh"을 반경하고 rebooting하는것으로 간단하게 변경할 수 있다. 1. /etc/systemd/nvzramconfig.sh이용 - step01 : sudo vi /etc/systemd/nvzramconfig.sh - step02 : .... 중간에 "/ 2 /"가 보이는데 "/ 1 /" 로 변경하고 저장하고 나옴 (다음 재부팅) - step 03 : fre..

카테고리 없음 2021.06.01

CFD modeling to evaluate the thermal performances of window frames in accordance with the ISO 10077

abstract The main goal of the EPBD (Energy Performance Buildings Directive) is the improvement of the energy performance of the European buildings. The internal comfort is critically dependent on the envelope that plays a key role in the thermal balance of the entire building. In particular, the windows are one of the most critical elements in terms of solar gains, heat losses..

Papers on the disk 2018.06.16

CFD modeling to evaluate the thermal performances of window frames in accordance with the ISO 10077

abstract The main goal of the EPBD (Energy Performance Buildings Directive) is the improvement of the energy performance of the European buildings. The internal comfort is critically dependent on the envelope that plays a key role in the thermal balance of the entire building. In particular, the windows are one of the most critical elements in terms of solar gains, heat losses..

Papers on the disk 2018.06.16