연구관련 86

Separable Gaussian Filtering

2D Gaussian filter는 Separable 하기 때문에 이를 이용하면 다음과 같이 연산량을 줄일 수 있다. n addition to being circularly symmetric, the Gaussian blur can be applied to a two-dimensional image as two independent one-dimensional calculations, and so is termed separable. That is, the effect of applying the two-dimensional matrix can also be achieved by applying a series of single-dimensional Gaussian matrices in the horiz..

연구관련 2013.04.04

컴퓨터 비젼, 영상처리 관련 좋은 학회와 저널은?

출처 : http://cafe.naver.com/opencv/1837 컴퓨터 비전, 영상처리 관련해서 여러분들이 좋다 라고 알고 계시는,또 여러분의 연구실에서 여기가 좋다라고 흔히들 하는 좋은 학회와 저널에 대한 연구원들의 지식을 공유하려고 합니다. Impact Factor 까지 알고 계시면 함께 적어주시면 더 좋고요~꼭 CV 여기만 아니더라도 특정 분야에 관련된 Workshop 라도 좋습니다. 제가 최고라고 생각하는 곳은 바로 아래 CV 학회 리스트를 모아 놓은 사이트입니다.최근까지도 업데이트도 되고요. 이 곳 하나만 알고 있으면 든든합니다. Computer Vision Conferences List http://iris.usc.edu/Information/Iris-Conferences.html CV ..

연구관련 2013.02.13

[MATLAB] copyfile 파일복사하기

input.txt를 output.txt 로 통채로 카피하고 싶을때 (파일의 종류는 무엇이 되든 상관없음. 사진이든 뭐든 상관없음)) copyfile('input.txt','output.txt'); 주의, copyfile의 두 인자는 파일의 이름 (m파일과 같은 폴더에 있는 경우) 혹은 주소를 넣어주어야 한다. COPYFILE Copy file or directory. [SUCCESS,MESSAGE,MESSAGEID] = COPYFILE(SOURCE,DESTINATION,MODE) copies the file or directory SOURCE to the new file or directory DESTINATION. Both SOURCE and DESTINATION may be either an abso..

[MATLAB] textscan 파일에 쓰여진 문자열 읽기

img.txt 라는 파일에 아래 내용이 저장되어 있다고 하자. D:\DB\oxford\jpg\bark_img1.jpgD:\DB\oxford\jpg\bark_img2.jpgD:\DB\oxford\jpg\bark_img3.jpgD:\DB\oxford\jpg\bark_img4.jpgD:\DB\oxford\jpg\bark_img5.jpg load(img.txt) 를 사용하면 에러 발생 (숫자만 읽어들일 수 있다고 한다) fopen , fread 혹은 fscanf 해서 한라인씩 읽어들이려니 설정해줄 것도 많고 귀찮다. 조금 잘못하면 에러 난다... textscan 함수를 사용해보자. fp = fopen('img.txt','r');imFilelist = textscan(fp,'%s') 여기서 imFilelist는 ..