[iOS] Pupil Distance Meter Simple Edition: quick and simple Pupillary Distance measure

Camera Measure, iOS, Optician, Optometry, Order Glasses, pd measure, Pupil Distance Meter, Pupillary Distance
Pupil Distance Meter is a tool for quick PD measurements using a rear or front camera on your mobile device and any standard card (e.g. gift card, id card, credit card, etc)Simple Edition of the app has simple measurement procedure that allows you to achieve more accurate and consistent measurement results. Pupil Distance Meter Simple Edition.How to use:Take a face picture with a reference card (see picture below how to hold the card properly)Mark eye pupils with the white ruler Mark a reference card length with the blue rulerSee PD result  at the topFor accurate and repeatable measurements you would need to hold a reference card next to your eye corner on the left or right side of your face. The card  has to be on the same vertical plane with your eye pupils and…
Read More

[Android] Pupillary distance measurements in your app using Pupil Distance Meter.

Eye Glasses, Optometry, Order Glasses, pd measure, Pupil Distance Meter, Pupillary Distance
Pupil Distance Meter (PDM) can be called now from your app to get PD measurements. See code example below for details how to use it.How to call from your application:Intent intent = new Intent("com.vistechprojects.pupildistancemeter.action.MEASURE_PD");intent.setDataAndType(IMAGE_SOURCE_URI, "image/*"); // comment this line if you don't pass image uristartActivityForResult(intent, REQUEST_CODE); // replace REQUEST_CODE with your constantExample how to get results:protected void onActivityResult(int requestCode, int resultCode, Intent data) {...if (resultCode == RESULT_OK && requestCode == REQUEST_CODE){ JSONObject json = new JSONObject(data.getStringExtra("PDM_OUTPUT_JSON")); ...}...}JSON returned from Pupil Distance Meter: {"APP_RESULTS":{"pd":"67", "right eye":"33.5", "left eye":"33.5", "units":"mm"}}
Read More

[Android] How to measure face shape from your app using Face Shape Meter.

Android, Face Shape, Face Shape Meter, Fashion
Face Shape Meter updated with new ability to export face shape result . If you have the app installed on your device, you can check face shape on a picture by calling Face Shape Meter from you application and get result back to your app after measurements. The result is returned as JSON string (see code example below).How to call from your application:Intent intent = new Intent("com.vistechprojects.faceshapemeterpro.action.MEASURE_FACE");intent.setDataAndType(IMAGE_SOURCE_URI, "image/*"); // comment this line if you don't pass image uristartActivityForResult(intent, REQUEST_CODE); // replace REQUEST_CODE with your constantExample how to get results:protected void onActivityResult(int requestCode, int resultCode, Intent data) {...if (resultCode == RESULT_OK && requestCode == REQUEST_CODE){ JSONObject json = new JSONObject(data.getStringExtra("FSM_OUTPUT_JSON")); ...}...}JSON returned from Face Shape Meter: {"APP_RESULTS":{"face shape":"Heart"}}
Read More

How to measure colors from your app using ColorMeter

Android, Color, Color Palette, ColorMeter, RGB
ColorMeter updated (v3.1.0) with new ability to export measurement results. If you have the app installed on a device, you can measure color  from your application by calling ColorMeter. Currently you will get RGB and HEX color result as JSON string (see code example below).How to call from your application:Intent intent = new Intent("com.vistechprojects.colormeter.action.MEASURE_COLOR");intent.setDataAndType(IMAGE_SOURCE_URI, "image/*"); // comment this line if you don't pass image uristartActivityForResult(intent, REQUEST_CODE); // replace REQUEST_CODE with your constantExample how to get results:protected void onActivityResult(int requestCode, int resultCode, Intent data) {...if (resultCode == RESULT_OK && requestCode == REQUEST_CODE){ JSONObject json = new JSONObject(data.getStringExtra("CM_OUTPUT_JSON")); ...}...}JSON returned from ColorMeter: {"APP_RESULTS":{"RGB":"112,63,30","HEX":"#703F1E"}}Update v3.1.1:This update allows you to set default size of averaging window by passing index parameter.The index must be an integer value from 0 to 10 and it corresponds to default window sizes…
Read More

[Android] Pupil Distance Meter v2: improved design, performance and accuracy.

Android, Camera Measure, Order Glasses, Pupil Distance Meter, Pupillary Distance
Pupil Distance Meter is a tool for quick PD measurements using a rear or front camera on your mobile device and any standard card (e.g. gift card, id card, credit card, etc)Version 2.0 of the app has new design, improved performance and slightly simplified measurement procedure that allows you to achieve more accurate and consistent measurement results.Pupil Distance Meter 2.0. New design.How to use:Take or load a face picture with a reference card (see picture below how to hold the card properly)Mark eye pupils with the white ruler Mark a reference card length with the card template (green)See PD result For accurate and repeatable measurements you would need to hold a reference card next to your eye corner on the left or right side of your face. The card  has to be on the same…
Read More

[Android] Free “Millimeter – screen ruler”: performance and design improved, options to buy new modes and features.

Android, Android Apps, Millimeter, Millimeter Pro, ring size measure, Ruler, Screen Ruler, TPI
Free "Millimeter - screen ruler" app has been updated with performance improvements, design changes and fixes.  Now app works faster on all devices and offers customization options right from the free version of the app. You can download version 2.0.4 from Google Play now.Free functionality has been extended with full screen mode and standard view rulers on top edge of the device and on left vertical ruler in the full screen  mode.Full screen mode in MillimeterAlso in the free version of the app you can:Calibrate Millimeter with custom or standard objects (credit or ID card, coins, etc) Use Ruler Mode for length measurements in metric and imperial units: mm and inchUse fractions for inch unitsRead interactive Help / Guide about all available features in a modeUse app as a standard rulerUse…
Read More

What is my face shape? Face Shape Meter app released for Android.

Android, Android Apps, Face Shape Meter, Measure Face Shape, What Is My Face Shape
Face Shape Meter, a simple and easy tool for detecting your face shape from a picture, has been released on Android OS and available on Google Play. This app will help you to find out your face shape quickly, without using any additional measurement tools and techniques. In the app you have options to take picture with front/rear camera or upload face picture from a gallery. For accurate contour adjustment you can zoom in picture as shown on the screenshot above. Zooming and dragging of the face contour, and also Undo/Redo and Reset actions make face outlining easy and quick. Also you have an option to share a screenshot with your face shape result.The app released as  free app with ability to upgrade to full version. In the free version you will…
Read More