본문 바로가기

분류 전체보기

(426)
OpenCV (Java) How to change Mat to Image, and save 2 (OpenCV Mat 에서 Image 변환, 저장) 2 OpenCV (Java) How to change Mat to Image, and save 2 (OpenCV Mat 에서 Image 변환, 저장) 2 Fourier transter 이후에 shift 까지 마쳤던 것들을 다시 inverse transfer 한 후에돌아온 Mat을 저장해서 확인해보려고 하니 계속 오류가 났다.돌아온 Mat은 데이터 타입이 CV_16F (double) 형이었고,오류나는 메시지로는 CV_8UC 등 밖에 안맞는다고.. 아무튼 8비트 까지만 된다고.. 해답은 돌아온 Mat을 Core의 split 을 이용하여 잘라내주고,잘라낸 값을 정규화해서 해당 mat을 image로 만들면 잘 된다. I got some errors when I need to make and save image fi..
OpenCV (Java) How to change Mat to Image, and save (OpenCV Mat 에서 Image 변환, 저장) OpenCV (Java) How to change Mat to Image, and save (OpenCV Mat 에서 Image 변환, 저장) 일반적인 Mat 타입을 Image (JavaFx)로 변환하는 순서를 보면.. 2가지 종류가 있는데 1. Mat Byte 버퍼를 만든다. 2. PNG 포맷으로 mat을 encoding 하면서 버퍼에 넣는다. 3. 버퍼를 배열로 만들면서 inputstream을 붙여서 읽은 값을 Image로 만든다 or 1. Mat 을 BufferedImage로 변환한다. 2. BufferedImage 를 Image (fx) 로 변환한다. It's the general order of converting Mat type to Image (javaFx), there are two way..
Java enum class 자바 이넘 클래스 (Singleton design pattern 처럼 사용방법) 앞에서 자바 싱글턴 디자인패턴을 썼는데.. ( 여 기 ) 이어서 자바 enum 자료형 클래스에 대한 내용을 쓴다.. enum 자료형을 잘 써서 이런저런 경우에 대입하는 경우가 많은데, 일단은 이펙티브 자바에서 나온 싱글턴을 대체하는 enum 클래스 예제만 보자? I posted Java singleton pattern ( here ) Continue to post this enum class in Java.. There are many usage to use enum datatype in Java, for the first, Imma write enum class for singleton in effective java book. Let's get started? 특이사항으로는.. 클래스 입구에 TEST..
티스토리 (구글/네이버 검색 노출) 사이트맵 생성 - How to make sitemap xml file 티스토리 (구글/네이버 노출) 사이트맵 생성 - How to make sitemap xml file Online XML Sitemap Generator접속한다. http://www.web-site-map.com/ 오른쪽 상단에 url 입력하는 부분에 본인 블로그 주소를 입력하고 -> Get free XML Sitemap 버튼을 누른다. -> 내용 입력 ->-> 1. url 은 입력되어서 들어온다. ->-> 2. 보안코드를 보고 똑같이 입력한다. ->-> 3. 다른 곳은 건드리지 않아도 되고, 맨 아래에 체크박스에 체크를 해준다. (아래) Include sub-domains (all subdomains must be added in Google Webmaster Tools as well) ->-> 4. C..
Design pattern - Singleton (디자인패턴 - 싱글턴) Design pattern - Singleton (디자인패턴 - 싱글턴) It's used alot because it's easy to use. Example would be written in Java or C++, maybe in Java. And it's simple if you understand the whole context. If you wonder the classdiagram, then just search. Important things.. 1. It's the only instance using specific class, in heap memory 2. This class has a self instance as a attribute(static) 3. Private constru..
Java parse double dataType after dot, 자바 소수점 이하 출력개수 조절 자바 소수점 이하 출력개수 조절 Java parse double dataType after dot 자바의 기본 자료형 doubleDouble class 의 parseDouble 메소드와 String class 의 format 메소드를 사용한다. primitive data type "double" in java.Use Double class to use parseDouble method, and String class to use format method. - 문자로 나오는 소수점을 원하는 만큼 잘라내고 파싱해서 double 값을 얻어낸다. - Get double value after parsing from string format double which you wanna get e.g. public st..
Windows 10에서 부팅시 계정 암호를 입력하지 않는 방법(How to Skip the Windows 10 Login Screen and Login) Windows 10에서 부팅시 계정 암호를 입력하지 않는 방법(How to Skip the Windows 10 Login Screen and Login) 1. Windows 키 + R을 눌러서 실행 창에 netplwiz를 입력합니다.2. 사용중인 계정의 이름을 확인한 후 [사용자 이름과 암호를 입력해야 이 컴퓨터를 사용할 수 있음]을 체크 해제합니다. 1. Windows Key + R, and execute "netplwiz"2. uncheck the box labeled “Users must enter a user name and password to use this computer.” Something else... 2018/10/10 - [Computer general/Windows] - GPU G..
GPU Graphic card performance benchmark 그래픽카드 퍼포먼스 벤치마크 (NVidia etc..) GPU Graphic card performance benchmark 그래픽카드 퍼포먼스 벤치마크 (NVidia etc..) 무려 400만원짜리 (299 US dallar) NVidia titan V 를 회사에서 사서..장착 후 드라이버 설치를 하고.. 구매완료를 하기 전에 성능 테스트를 잠깐 해보았다. 3DMark -> benchmark sitehttps://benchmarks.ul.com/3dmark?redirected=true# 위의 사이트에 접속해서 Window edition 에서 다운을 받아서 설치한다. 유료로 쓰면 더 여러가지 기능을 쓸 수 있는데, Basic edition 으로 다운받아서 설치한다.(이후에 업그레이드 가능하나, 무료버전 2가지만 테스트 할 것임) 설치 후 3DMark 를 실행..