본문 바로가기

분류 전체보기

(426)
OpenCV How to handle single channel image matrix each pixel, add/subtract/multiply/division (1), 이미지 매트릭스 각 픽셀단위 값 조정하기 (영상처리, image processing) (1) OpenCV How to handle single channel image matrix each pixel, add/subtract/multiply/division (1) 이미지 매트릭스 각 픽셀단위 값 조정하기 (영상처리, image processing) (1) Handling each pixel in matrix using put/get in OpenCV 1) / 2) both worked well, but second one did better performance. I changed to 3) using Core in OpenCV, and i'll post later. You can use any operator, but example code is about append. 1/2 둘다 동작하고,..
OpenCV Java complexNumber mat conjugation, 자바 켤레복소수 example code 예제코드 OpenCV Java complexNumber mat conjugation, 자바 켤레복소수 example code 예제코드 Description Method to conjugate complex number matrix (2c) 1 / 2 codes both work well, but 2nd one is faster than 1st one. It's only for 2channel matrix ( real(1c) + imaginary(1c) ) I'mma make new one ( 3 ) using Core for performance, and post later. Java에서 OpenCV 를 이용한 복소수 연산 중에서, 켤레복소수를 구하는 함수이다. 1 / 2 모두 동작은 잘하고 ( 1보다 2가 성능..
Aracade Intro #34 extractEachKth. Algorithm, 알고리즘, Codefights, CodeSignal, 코드파이트, 코드시그널, 예제, example, c++ java c# scalar Aracade Intro #34 extractEachKth. Algorithm, 알고리즘, Codefights, CodeSignal, 코드파이트, 코드시그널, 예제, example, c++ java c# scalar Q. Given array of integers, remove each kth element from it. 주어진 정수 배열에서, e.g. Input -> inputArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] and k = 3 Output -> extractEachKth(inputArray, k) = [1, 2, 4, 5, 7, 8, 10]. // Process// 1. Input vector// 2. Iterate from begin to end// 2.1. c..
Arithmetic of complex number(2) division example code, 복소수 사칙연산(2) 나눗셈 코드, real/imaginary, java, opencv, matrix (2) Arithmetic of complex number(2) division example code, 복소수 사칙연산(2) 나눗셈 코드, real/imaginary, java, opencv, matrix (2) 공식은..Formula.. i^2 = -1, c+di != 0. (a + bi) / (c + di) -> ( (ac + bd) / (c^2 + d^2) ) + ( (bc - ad) / (c^2 + d^2) ) 곱셈은 아래에Division formula is below 2018/11/22 - [Programming/Java] - Arithmetic of complex number(1) multiply example code, 복소수 사칙연산(1) 곱셈 코드, real/imaginary, java, op..
Aracade Intro #33 stringsRearrangement. Algorithm, 알고리즘, Codefights, CodeSignal, 코드파이트, 코드시그널, 예제, example, c++ java c# scalar Aracade Intro #33 stringsRearrangement. Algorithm, 알고리즘, Codefights, CodeSignal, 코드파이트, 코드시그널, 예제, example, c++ java c# scalar Q. Given an array of equal-length strings, check if it is possible to rearrange the strings in such a way that after the rearrangement the strings at consecutive positions would differ by exactly one character. 주어진 같은 길이의 string 배열들에서, 한개의 char 씩만 교체 가능해서 연속적으로 이어지는 자리로 ..
Arithmetic of complex number(1) multiply example code, 복소수 사칙연산(1) 곱셈 코드, real/imaginary, java, opencv, matrix (1) Arithmetic of complex number(1) multiply example code, 복소수 사칙연산(1) 곱셈 코드, real/imaginary, java, opencv, matrix (1) 공식은..Formula.. i^2 = -1, (a + bi) * (c + di) -> (ac - bd) + (ad + bc)i 나눗셈은 아래에Division formula is below 2018/11/26 - [Programming/Java] - Arithmetic of complex number(2) division example code, 복소수 사칙연산(2) 나눗셈 코드, real/imaginary, java, opencv, matrix (2) Lemme see code.. 코드를 보자.. 예제..
Java foreach statement (advanced for iteration statement) 자바 향상된 for문 문법 Java foreach statement (advanced for iteration statement) 자바 향상된 for문 문법 Main function process //Process//1. Make new integer list for sample//2. Iterate using normal for statement (printout)//3. Iterate using foreach statement (printout)//4. Finish //처리과정//1. 확인할 샘플 정수리스트를 만든다.//2. 일반 for문을 사용하여 출력해본다.//3. foreach문을 사용하여 출력해본다.//4. 끝낸다. Example code below public class TestForeach { public stati..
OpenCv, How to create/initialize mat in CV for Java, 매트릭스 생성/초기화, 자바, c++, JavaCv OpenCv, How to create/initialize mat in CV for Java, 매트릭스 생성/초기화, 자바, c++, JavaCv Imma post basic 3 way to initialize Mat in javaCv openCv 자바에서 자주 쓰이는 3가지 생성자 겸 초기화 함수 Example code예제코드 public static void main(String[] args){// load the OpenCV native librarySystem.loadLibrary(Core.NATIVE_LIBRARY_NAME);// create and print on screen a 3x3 identity matrixSystem.out.println("Create a 3x3 identity mat..