'Programming > openCV' 카테고리의 다른 글
| opencv face detect (0) | 2019.05.10 |
|---|---|
| vscode python3 opencv lint (0) | 2019.05.10 |
| opencv 원 추정 (0) | 2019.01.16 |
| OpenCV 분산처리 (0) | 2018.04.25 |
| openCV release mode와 debug mode 속도 차이 (0) | 2018.03.19 |
| opencv face detect (0) | 2019.05.10 |
|---|---|
| vscode python3 opencv lint (0) | 2019.05.10 |
| opencv 원 추정 (0) | 2019.01.16 |
| OpenCV 분산처리 (0) | 2018.04.25 |
| openCV release mode와 debug mode 속도 차이 (0) | 2018.03.19 |
[링크 : https://docs.opencv.org/2.4/doc/tutorials/imgproc/imgtrans/hough_circle/hough_circle.html]
[링크 : https://kr.mathworks.com/help/images/ref/imfindcircles.html]
[링크 : https://code.i-harness.com/ko-kr/q/96763b]
[링크 : http://k-imagineer.tistory.com/7]
[링크 : https://dreamaz.tistory.com/431]
[링크 : https://docs.opencv.org/3.4.1/.../group__imgproc__feature.html#ga47849c3be0d0406ad3ca45db65a25d2d]
| vscode python3 opencv lint (0) | 2019.05.10 |
|---|---|
| opencv cannyedge (0) | 2019.01.16 |
| OpenCV 분산처리 (0) | 2018.04.25 |
| openCV release mode와 debug mode 속도 차이 (0) | 2018.03.19 |
| openCV multicore support (0) | 2018.03.19 |
eclipse에서 그냥 export jar 해서 하니
위의 방법으로는 안되고, 아래 방법으로 하니 되긴 하는데
실행가능한 jar 만드는 법을 좀 찾아 봐야겠다.
javaw -jar 파일명 java -jar 파일명 |
[링크 : https://zetawiki.com/wiki/윈도우_jar_파일_실행]
java -cp app.jar com.somepackage.SomeClass |
[링크 : https://code.i-harness.com/ko-kr/q/93dac1]
java -cp filename.jar packagename.classname
으로 실행하면 끝
(실행 오류 나는건 알아서 잡아야지 머.. ㅠㅠ)
+
[링크 : https://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-37.htm]
| java cipher (0) | 2019.11.25 |
|---|---|
| jaxb - Java Architecture for XML Binding (0) | 2019.06.25 |
| Object.clone() (2) | 2019.01.09 |
| javax print (0) | 2019.01.03 |
| jar 만들기 export (0) | 2019.01.03 |
회사에서 다른 팀이 react 쓴대서 한번 조사.
그나저나.. typescript 이후로 무언가 변환을 해서 쓰는게 유행인건가..
[링크 : https://velopert.com/3613]
[링크 : https://blog.coderifleman.com/2015/06/23/learning-react-1/]
[링크 : https://www.inflearn.com/course/reactjs-web/]
[링크 : https://www.w3schools.com/whatis/whatis_react.as]
[링크 : https://reactjs.org/]
[링크 : https://devhints.io/react]
| react import {} (0) | 2019.01.31 |
|---|---|
| react html to jsx (0) | 2019.01.29 |
| webpack react (0) | 2019.01.28 |
| react.js tutorial (0) | 2019.01.28 |
| react.js + spring (2) | 2019.01.28 |
자바 스크립트 문법이 아니라 자바 문법인줄 알았는데
js에도 import나 class나 extend가 있을 줄이야..
아무튼 찾아보니 ES5랑 ES6 에서 지원하는게 다르다 보니
ES5에 ES6을 지원하기 위해서라도 Typescript 등과 같은 변환용 무언가가 필요한 듯?
[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/import]
[링크 : https://jeong-pro.tistory.com/122]
소스를 다른 소스로 변경하는 녀석들을 이렇게 표현하는 듯
A source-to-source compiler, transcompiler or transpiler |
[링크 : https://en.wikipedia.org/wiki/Source-to-source_compiler]
| HTML video 태그 loop 와 webalizer hit (0) | 2019.02.28 |
|---|---|
| 자바 스크립트 다시 공부 - 이벤트 관련 (0) | 2019.02.28 |
| js class extend (0) | 2019.01.10 |
| img vertical-align (0) | 2018.12.28 |
| css text-indent (0) | 2018.12.28 |
자바 스크립트에도 class와 상속이 지원되는구나..
babel을 통한 변환용 문법인줄 알았네..
[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Classes/constructor]
[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Classes/extends]
[링크 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Classes/static]
| 자바 스크립트 다시 공부 - 이벤트 관련 (0) | 2019.02.28 |
|---|---|
| js import babel transpiler (0) | 2019.01.10 |
| img vertical-align (0) | 2018.12.28 |
| css text-indent (0) | 2018.12.28 |
| localstorage sessionStorage (0) | 2018.12.18 |
크.. 망할 자바 ㅠㅠ
아무생각 없이 Point 객체를 = 으로 넣어서 복사될 줄 알았는데
(아니 이렇게 관대한 녀석 아니었어?)
계속 값이 초기화 되서 지인에게 물어봤더니 clone()을 쓰라고..
일단은.. call by reference인지 call by value 인지 조금 더 공부해봐야겠다.. -_ㅠ
protected Object clone() throws CloneNotSupportedException Creates and returns a copy of this object. The precise meaning of "copy" may depend on the class of the object. The general intent is that, for any object x, the expression: |
[링크 : https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html#clone()]
| jaxb - Java Architecture for XML Binding (0) | 2019.06.25 |
|---|---|
| jar 실행하기 (0) | 2019.01.15 |
| javax print (0) | 2019.01.03 |
| jar 만들기 export (0) | 2019.01.03 |
| Java SE 8 설치해보려고 했더니.. (2) | 2019.01.03 |
싱글톤 패턴인데 의도한거랑 다르게 작동하는것 같아서
생명주기가 다른가 하고 찾는 중.. 근데 읽어도 먼 소리인지 모르겠다 ㅠㅠ
| gradle 에 jar 추가하여 빌드하기 (0) | 2019.03.08 |
|---|---|
| maven 빌드하기 (0) | 2019.03.08 |
| gradle buildship (0) | 2019.01.02 |
| spring for android (0) | 2018.12.28 |
| sts gradule spring boot howto (0) | 2018.12.28 |
연동하는 업체가 flask로 하는거 같은데(python 이니)
json 타입으로 값을 주려는데 안되서 이것저것 해보니
결국에 jquery로 아래와 같이 JSON.stringify() 해주어야 정상적으로 에러없이 인식을 한다.
data: JSON.stringify(data), |
[링크 : https://stackoverflow.com/questions/17426199/jquery-ajax-and-json-format]
| jquery-cookie 라이브러리 (0) | 2022.09.05 |
|---|---|
| jquery 우클릭 가로채기 (0) | 2019.06.04 |
| jquery this 버튼 checked (0) | 2019.01.07 |
| ajax / promise / jquery (0) | 2019.01.04 |
| ajax async와 jquery (0) | 2019.01.04 |
최적화 문제는 일단 배제 하더라도
5천개의 node를 그리는 테스트에서는 일단은 webGL이 압도적이긴 한데
webGL이라고 해서 아주 뛰어난 성능은 아니라는게 한계..
| webpack (0) | 2019.02.20 |
|---|---|
| ajax bearer token header (0) | 2019.02.07 |
| w3c validator (0) | 2018.12.10 |
| 미세먼지 크롤러 (다음, 네이버) (0) | 2018.12.07 |
| edge browser mobile (0) | 2018.11.30 |