본문 바로가기

Programming

(138)
Perfecting OO's Small Classes and Short Methods. 완벽한 객체지향의 작은 클래스와 짧은 메소드, Book:ThoughtWorks Anthology, Java,cpp,자바,oop,좋은코드,객체지향프로그래밍 (1) Perfecting OO's Small Classes and Short Methods. 완벽한 객체지향의 작은 클래스와 짧은 메소드, Book:ThoughtWorks Anthology, Java,cpp,자바,oop,좋은코드,객체지향프로그래밍 (1) Origin ( Here )원문 ( 여기 ) 난해한 내용 (8, 9번) 추가 포스팅 링크함Stuff difficult to understand, (#8, 9), added more info posting 2018/12/28 - [Programming/Software Architecture] - Perfecting OO's Small Classes and Short Methods. 완벽한 객체지향의 작은 클래스와 짧은 메소드, Book:ThoughtWorks A..
JavaFx, how to show actual size image bigger than pane using scroll, 실제 크기 이미지를 스크롤바 사용하여 보여주는 방법, Java/cpp/kotlin/gui JavaFx, how to show actual size image bigger than pane using scroll, 실제 크기 이미지를 스크롤바 사용하여 보여주는 방법, Java/cpp/kotlin/gui -기본틀 / imageview-image / translate -> tomorrow 기본적으로 JavaFx를 SceneBuilder 를 사용해서 최초 레이아웃을 만들어두고 열었다고 가정..안되어 있다면 ( 여기 ) 내일 포스팅 예정 JavaFx ui 쌓이는 순서가 Stage 위에 Scene 위에 각종 Component(Pane, Button etc..) 이 올라가는데, 위의 기본 틀은 Stage -> Scene -> Pane 이 올라가서 최초 바탕을 띄운 것 까지이다. 이제 ImageView 위..
Scala Advantages & Disadvantages 스칼라 장단점, 객체지향, 함수적, 절차지향적, 프로그래밍언어 Scala Advantages & Disadvantages 스칼라 장단점, 객체지향, 함수적, 절차지향적, 프로그래밍언어 원글 보기 ( 여기 )Origin article ( Here ) 그냥 슥슥 읽고 지나가면 될듯..독해하다 말았음별 도움 안되는 글을 휘황찬란하게.. 1. Objective 목적 In this Scala Tutorial, we will learn Scala Advantages & Disadvantages. A great power comes with knowledge of what you can or can’t do with what you have. So, let’s discuss the places where Scala wins and fails. But remember, overa..
How to convert file to byte array (byte[]) example, 파일 객체 바이트로 변환하기 예제코드, java/cpp/c++/scalar How to convert file to byte array (byte[]) example, 파일 객체 바이트로 변환하기 예제코드, java/cpp/c++/scalar 파일 객체를 만들어주고, 파일객체의 path를 java.nio.file.Files 의 readAllBytes 함수에 넣어 사용한다. Make file object first, and use that file path in readAllBytes method in java.nio.file.Files Example code...예제코드 byte[] array = Files.readAllBytes(new File("file/path.txt").toPath()); Something else you might like..? 2018/12/18 - ..
How to access controller from existing Pane in JavaFX, pane에서 해당 controller로 접근하기, java/cpp/c++/fx/gui How to access controller from existing Pane in JavaFX, pane에서 해당 controller로 접근하기, java/cpp/c++/fx/gui Q. Pane에서 직접 해당 Controller를 뽑아낼 수 없다.Pane 에서 Scene을 통해 FxmlLoader를 뽑아내는 방법이 있고, 그 후 loader를 통해서Controller를 가져올 수 있다. 예제 코드를 보자 We cannot get Controller from Pane directly, so i struggled some. After bringing Scene, then we could get FxmlLoader from Scene. So it can get Controller. e.g. FXMLLoad..
How to change color theme in JavaFx example, 자바Fx 전체적인 색 테마 바꾸기 예제, ui, 디자인 How to change color theme in JavaFx example, 자바Fx 전체적인 색 테마 바꾸기 예제, ui, 디자인 JavaFx UI 구조는 -> Stage 1 - Scene 1 - Components (0..*) 로 이루어져 있는데, 아래 예제와 같이 Pane 종류의 Component 에 setStype을 해준다.베이스가 되는 rgba 색 값을 바꿔준다. 참고로 BaseStageView.fxml 파일은 borderPane 하나 있는 fxml 파일 Do setStyle to the sort of Pane components like the example below.Change base rgba color Notice : BaseStageView.fxml file has just one..
OpenCV Java, How to read image to mat, 이미지파일에서 매트릭스로 읽어오기, vision 영상처리 imageprocessing OpenCV Java, How to read image to mat, 이미지파일에서 매트릭스로 읽어오기 sample code -> Read image-> Normalize image (Contrast streching) - or do something any other work-> Save modified matrix to image 예제 코드에서는 -> 이미지를 읽어온다-> contrast streching 을 해서 정규화 시켜준다 (아니면 다른 작업)-> 바뀐 매트릭스 값을 다시 저장한다. code.. lemme see code!!코드.. 코드를 보자!!! Mat tempMat = null;int loadFormat = Imgcodecs.CV_LOAD_IMAGE_GRAYSCALE;//int loadF..
Constructor Chaining in Java, 자바 생성자 연결/연속/체인 코드, example 예제 보호되어 있는 글입니다.