Giter VIP home page Giter VIP logo

bodypart's Introduction

#EARDENTIFICATION

We implemented an app that uses the imprint of the ear on the touchscreen as input to unlock the phone. To generate the imprint the raw capacitance values of the touchscreen are needed, therefore the kernel of the device has to be manipulated. The project is based on:

To build our own kernel, we followed this approach:

The offical but not so helpful tutorial can be found here:

If you don't want to build your own kernel and coincidentally have a Nexus 5 with kernel version 3.4.0-g6a99a02 you can jump ahead to "Booting the kernel" using the boot.img that is provided in this repo:

Manipulated Boot Image

What you need

  • Nexus 5
  • Computer running Linux (Ubuntu)
  • USB OTG Cable (for debugging)

Preparing the device

  • Installing a custom recovery and root the phone: Nexus 5 Root tutorial
  • Go to the "About phone" and write down your kernel version
  • Go to recovery and create a backup of your rooted boot.img
  • Transfer the boot.img to your computer

###Preparing the computer

  1. Install the following tools:
    • adb and fastboot (can be installed with apt-get but are also included in android studio)
    • arm-eabi gcc compiler
      1. clone this repo to usr/local/share:
       git clone https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6
      
      1. export path
       export PATH=$PATH:/usr/local/share/arm-eabi-4.6/bin
      
      1. check
       arm-eabi-gcc --version
      
    • mkbootimg
       git clone https://android.googlesource.com/platform/system/core bootimg-tools
       cd bootimg-tools/libmincrypt/
       gcc -c *.c -I../include
       ar rcs libmincrypt.a *.o
       cd ../mkbootimg
       gcc mkbootimg.c -o mkbootimg -I../include ../libmincrypt/libmincrypt.a
       cp mkbootimg /usr/local/bin/
      
    • unmkbootimg
       cd /usr/src/android/bootimg-tools/mkbootimg/
       wget https://raw.github.com/pbatard/bootimg-tools/master/mkbootimg/unmkbootimg.c
       gcc -o unmkbootimg unmkbootimg.c
       cp unmkbootimg /usr/local/bin/
      

Downloading the kernel

  1. Clone the kernel and switch to the right branch/commit:
    • The Nexus 5 dev device name is hammerhead, it's kernel is located in the msm repo: git clone https://android.googlesource.com/kernel/msm.git

Although you will download quite some data, the folder will empty, that's because you need to switch to the right branch first.

Finding the right commit

The kernel version of your phone will look something like 3.10.40-g88882d2, what you care about is the last hash of that string after g: 3.10.40-g88882d2

With that hash you can checkout the branch for your device like this: git checkout -b my_current_kernel_branch 88882d2

Manipulating the kernel

What we are interested in is the touch_synaptics_ds5.c which is located in:

drivers/input/touchscreen

You can simply replace it by the version you can find here: RainCheck touch_synaptics_ds5.c or the version that we manipulated: Our touch_synaptics_ds5.c

If you are interested what this is actually doing, you can check out this site: Getting the Phone's Capacitance Values

What impact do the different files have?

The new kernel will write the raw capacitance values into a proc file, which can be read by an app if it has super user privileges.

The problem is that the frequency rate which is needed is too high to save the event and propagate at the same time.

The RainCheck touch_synaptics_ds5.c file aborts the method call, after the touch event has been saved, early so that the touch event won't be propegiated anymore. This of course makes the touchscreen unusable.

We modified this version in such way that we decreased the frequency rate and allowed the event to be processed, which makes the touchscreen work partially.

Compiling

Now that we manipulated the kernel it's time to compile it:

  1. Set cross-compile variables:
export ARCH=arm
export SUBARCH=arm
export CROSS_COMPILE=arm-eabi-
  1. Initialize default config
make hammerhead_defconfig
make menuconfig
  1. Compile
make

Creating the boot.img

Now that we have our compile kernel zImage file, it's time to create a complete boot.img. Therefore we first need to split our backup boot.img that we saved to the computer in the beginning into it's zImage and ramdisk with unmkbootimg and zip together the ramdisk with our zImage kernel file using mkbootimg

unmkbootimg -i boot.img

Take the command that appears when running unmkbootimg and replace the name of the kernel with the name of our kernel like:

mkbootimg --base 0 --pagesize 2048 --kernel_offset 0x80208000 --ramdisk_offset 0x82200000 --second_offset 0x81100000 --tags_offset 0x80200100 --cmdline 'console=ttyHSL0,115200,n8 androidboot.hardware=flo user_debug=31 msm_rtb.filter=0x3F ehci-hcd.park=3' --kernel YOUR_KERNEL_NAME --ramdisk ramdisk.cpio.gz -o new_boot.img

Congrats, you created your own android boot.img!

Booting the kernel

Assuming your device is connected over USB, debug mode is on and permissions are given.

  1. reboot into bootloader:
	adb reboot bootloader
  1. boot with new boot.img
	fastboot boot new_boot.img
  1. get device ip in network
	adb shell ip -f inet addr show wlan0

-> inet 10.0.1.8/24 brd 10.0.1.255 scope global wlan0

  1. run adb over port
	adb tcpip 5555
  1. connect over wifi

    adb connect 10.0.1.8:5555

You can now disconnect your device from the computer, connect a mouse over the OTB cable and use the device with the mouse while debugging.

How the app works

The application's main goal is to recognize the ear of the user by:

  1. Reading the raw capacitance values from the proc files
  2. Creating a gray image from the read values
  3. Identifying the user by using pre stored samples of users' ear images

The application has two basic functionality:

  1. Adding a user with a scanned ear image to the moc database
  2. Recognizing the user given a user's ear query image

User identification

We modeled each user with only one ear image and used BRISK (Binary Robust Invariant Scalable Keypoints, OpenCV) Algorithm for extracting key feature points.

Given a user's ear query image do the following:

  1. Extract the image's key feature points's descriptors using BRISK algorithm.
  2. Calculate for each user ear image in the moc database the best matched descriptors to the query image's descriptors.
  3. Identify the query image's user as the user with smallest average similarity accross all best matched descriptors.

bodypart's People

Contributors

nadre avatar yamenajjour avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.