기본 콘텐츠로 건너뛰기

Without recording, enjoy watching your postures incessantly.

https://play.google.com/store/apps/details?id=com.konestop.magicmirror








Without recording, enjoy watching your postures incessantly

You can never see yourself without any tool


No more complicated applications for recording your swing or poses!

Just look at yourself through Magic-Mirror from now on!

Needless to explain

Just use this app and you will see


The brand new style application You’ve never seen 


You can transfer the NASMO from Screen Golf to your cell phone

If you connect TV with MAGIC MIRROR at home, you can have your own huge NASMO


1. Open MAGIC MIRROR and just focus on your pose

   1) If you open the app without recording/playback, you can continuously

      watch your previous pose in a delayed state for a set amount of time to delay

      - All posture correction

      - Check yourself

      - Available for making brand new style of short form

   2) Available options for A set amount of time to delay : 3, 5, 7, 10, 15, 30, 30, 45, 60 seconds

      When you open the app, 5 sec is a basic setting

   3) Front and rear camera options available

      When you open the app, front camera is a basic setting

   4) Camera zoom in and out zoom function available


2. Video up to 15 seconds ago can be optionally saved

   1) All video won’t be saved without user’s save command 

   2) You can save the video up to 15 seconds before based on the video delayed playback


3. So simple to use

   1) It is simple app composed of 1 Main screen and 2 popup screen

   2) Only 6 buttons on the main screen


4. There’s no substitute for a lot of practice

   1) No AI analysis function in the app

   2) No coaching function in the app

   3) The main purpose of this app is to see your swing, poses, decide, and correct it easily

      Because You are the one who knows your problem best as often said “There are no ifs or buts in golf”

   4) A weekend self-taught golfer with more than 20 years of experience and an eternal Hacker, I was so frustrated with my golf skills that I made this app myself 


※ Notifications

   -  If you encounter any problems or errors while using the app, you have additional features suggestions or you want to request cooperation, please feel free to let us know anything of those.

   - Contact:

     Developer: ibookstory@naver.com

   - MAGIC MIRROR is free to download

※ Required access rights

   - Camera : video recording

   - Storage space : Save settings and save recorded video

 




댓글

이 블로그의 인기 게시물

화낙(FANUC) CNC 데이터 수집 프로그램

화낙 CNC에서 200개가 넘는 상태값을 뽑아오고 프로그램을 백업하거나 복구하는 프로그램입니다. 단독형, 서버형, MES(POP) with CNC 형태로 구성가능합니다 CNC 운영정보와 함께 전력량계를 통한 전압/전류/주파수 정보를 파악하여 추가적인 분석에 활용 가능합니다. ​ 수집데이터 샘플입니다. ======Statusinformation====== state run(0.reset 1.stop 2.hold 3.start) = 3 m,s,t,b status 0.other 1.Fin = 1 axis motion(0.? 1.Motion 3.Dwell = 0 state automatic mode 0: ****(Noselection)1 : MDI 2 : TAPE(Series 15),DNC(Series15i) 3 : MEMory4 : EDIT 5 : TeacHIN = 1 T/Mmode(0.T 1.M) = 0 max emergency(0.Not 1.Emergency 2.Reset) = 0 Alarm(0.other 1.alarm 2. Batterylow 3. FAN 4.PS warning 5.FSSB waring 6.Leakage waring 7.Encoder waring 8.PMC alarm= 0 ​ =====Actualfeedrate====== name(F.feedrate S.Spindlespeed: F feed rate data: 0 feed rate decimal point: 0 feed rate unit(0.mm/min 1.inch/min 2.rpm 3.mm/rev 4.inch/rev): 0 feed rate display flag: 0 select position: 0 ​ ====== Actualspindlespeed ====== name(F.feedrate S.Spindlespeed: S spindle speed data: 3467 spindle speed decimal po...

ConstraintLayout을 뷰의 오른쪽 사이드 중간에 배치해야 할때

안드로이드 스튜디오에서 자바기반의 앱을 만드는 과정에서 ConstraintLayout을 뷰의 오른쪽 사이드 중간에 배치해야할 상황이 생겼다. 아래 4개 속성으로 부모뷰의 오른쪽 사이드 중간에 배치문제 해결. //오른쪽에 배치될 수 있도록 설정 app:layout_constraintRight_toRightOf="parent" //수직으로 중앙에 위치시키도록 설정 app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" // 뷰를 수직으로 중앙에 위치시키기 위한 비율 값 설정. 0.5는 화면의 중앙에 위치하는 값 app:layout_constraintVertical_bias="0.5"

2 files found with path 'lib/x86_64/libc++_shared.so' from inputs: 오류 해결 방법

안드로이드스튜디오로 앱을 개발하는 과정에서 플러그인, 외부 라이브러리를 추가하다 보면 "2 files found with path 'lib/ x86_64 /libc++_shared.so' from inputs: "과 같은 오류를 만날 수 있다. 'lib/x86_64/libc++_shared.so' 파일이 2개의 라이브러리에서 참조되어 발생하는 문제로 컴파일 환경에 따라 플랫폼 부분은 변경되면 나타날 수 있다 app수준의 build.gradle 파일에 다음과 같이 처리하면 관련 문제를 깔끔하게 처리 가능하다. android { ... packagingOptions { pickFirst 'lib/ x86 /libc++_shared.so' pickFirst 'lib/ x86_64 /libc++_shared.so' pickFirst 'lib/ arm64-v8a /libc++_shared.so' pickFirst 'lib/armeabi-v7a/libc++_shared.so' } ... } * 실제 내 앱소스내 코드임 * 위와 같이 컴파일 환경에서 제공하는 플랫폼별 참조를 전부 한번에 처리하는게 관련 오류를 원천 차단할 수 있는 방법이다.