목록전체 글 (149)
The Beautiful Future
HumanPose2D TRB: A Novel Triplet Representation for Understanding 2D Human Body Single-Stage Multi-Person Pose Machines Single-Network Whole-Body Pose Estimation Imitation Learning for Human Pose Prediction Imitation Learning for Human Pose Prediction Dynamic Kernel Distillation for Efficient Pose Estimation in Videos HumanPose3D Learning to Reconstruct 3D Human Pose and Shape via Model-Fitting ..
기본적인 명령어 git --version 현재 git의 버전을 확인합니다. git init 현재 디렉토리에 git 저장소를 생성합니다. git add 파일명 git add는 2가지를 하는데 untracked files의 파일들을 git가 추적하도록 하거나 파일은 수정했지만 아직 스테이징 영역에 올라가지 않은(Changed but not updated) 파일들을 스테이징 영역에 올립니다. -i 옵션을 주면 대화형모드가 시작되며 파일의 일부분만 선택해서 스테이징하는 것이 가능합니다. -p 옵션을 사용하면 -i 대화형모드없이 바로 패치모드를 사용할 수 있습니다. git commit -m "커밋메시지" 스테이징 영역에 올라가 있는 파일들을 커밋합니다. -m 은 커밋메시지를 주는 옵션으로 여러 줄의 커밋메시지를 ..
android bottom sheet 정리 바텀 시트에는 두종류가 있다. persistendt bottom sheet 와 modal bottom sheet 가있다. - Persistendt bottom sheet 인앱 컨테스츠를 표시한다. 앱의 일부를 보여주면서 바닥에서 생성된다. - Modal bottom sheet 앱보다 우선 순위가 높다. 뒤에 있는 앱이 디스애이블 되는 형식인거 같다 xml 생성 app:layout_behavior: 에 android.support.design.widget.BottomSheetBehavior 을 지정해야 바텀시트로 동작한다. app:behavior_peekHeight: 최소화 되었을때 높이를 지정할 수 있다. app:behavior_hideable: 아래로 밀면 바..
android camera2 OnImageAvailableListener 와 Camera.PreviewCallback을 implements 한다 Camera.PreviewCallback 은 Camera1 API 이고 OnImageAvailableListener은 Camera2 API 이다. Create에서 setFragment을 한다. *Camera2API-> CameraConnectionFragment를 생성하면서 previewsize 및 회전 정보를 콜백하게 한다. 그리고 image listener를 등록, 레이아웃 아이디, 프리뷰 크기 지정을 한다. 그리고 카메라 등록을 한다. *Camera1API-> LegacyCameraConnectionFragment를 생성하면서 image listener, ..
1. Gaussian Distribution Initialization(Normal Distribution Initialization) 가우시안 분포의 평균과 분산을 지정해서 weight의 값을 지정한다. sigmoid나 hyperbolic tangent의 경우 입력 값이 커지면 gradient가 작아지기 때문에 업데이트가 적게 일어나는 문제가 있어서, weight 초기화시 gaussian 분포의 외곽을 잘라내는 truncated normal distribution을 사용한다. 잘라내는 범위는 주로 2 standard deviations을 사용한다. https://stackoverflow.com/questions/41704484/what-is-difference-between-tf-truncated-no..
android bottom sheet 정리 바텀 시트에는 두종류가 있다. persistendt bottom sheet 와 modal bottom sheet 가있다. - Persistendt bottom sheet 인앱 컨테스츠를 표시한다. 앱의 일부를 보여주면서 바닥에서 생성된다. - Modal bottom sheet 앱보다 우선 순위가 높다. 뒤에 있는 앱이 디스애이블 되는 형식인거 같다 xml 생성 app:layout_behavior: 에 android.support.design.widget.BottomSheetBehavior 을 지정해야 바텀시트로 동작한다. app:behavior_peekHeight: 최소화 되었을때 높이를 지정할 수 있다. app:behavior_hideable: 아래로 밀면 바..
windows 에서 python api로 db annotatio 열어보기 setup.py 에서 아래 줄을 제거 #extra_compile_args=['-Wno-cpp', '-Wno-unused-function', '-std=c99'], Cython을 설치 pip install Cython visual studio의 rc.exe 파일 옮겨주기 cannot run 'rc.exe' / fatal error LNK1158: cannot run 'mt.exe' http://jjlee214.blogspot.com/2017/06/visual-studio-fatal-error-lnk1158.html
https://stackoverflow.com/questions/49536856/tensorflow-how-to-merge-batchnorm-into-convolution-for-faster-inference To the best of my knowledge, there is no built-in feature in TensorFlow for folding batch normalization. That being said, it's not that hard to do it manually. One note, there is no such thing as folding dropoutas dropout is simply deactivated at inference time. To fold batch norm..
// // Created by USER on 2019-05-14. // #include #include #include #include // crf #include "libCRF/densecrf.h" #define JNI_METHOD(NAME) Java_com_example_skysegandroid_SkySegInterface_##NAME #define LOG_TAG "debug_sky" #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__) static ncnn::UnlockedPoolAllocator g_blob_pool_allocator; static ncnn::PoolAllocator g_workspace_pool_..
http://downrg.com/417S D.Blog v5.0 :: ARM Assembly 명령어 정리 ※ 용어 정의 Rd: Destination Register / Rn: Operand1 Register / Rm: Operand2 Register : Execution Condition code : S-Suffix - Status Update Suffix - SPSR의 값을 CPSR로 불러와서 Status를 Update : ! - Suffix - Writeback Suffix - [,]내의 선처리 연산 수행 후 값 downrg.com set 조건플래그를 set 한다. NE not equal 같지 않다는 의미로서 Z플래그가 set 된 상태. EQ equal 같다는 의미로서 Z플래그가 clear 된 상태. ..