CNNのアルゴリズムを一通りまとめたdeepgazeについて整理する

CNNのアルゴリズムを一通りまとめたdeepgazeについて整理します.

今回はDockerで実装します.

全国630店舗以上!もみほぐし・足つぼ・ハンドリフレ・クイックヘッドのリラクゼーション店【りらくる】

# Deepgazeとは

Deepgazeは、顔検出、頭のポーズの推定、分類に畳み込みニューラルネットワーク(CNN)を使用する、人間とコンピューターの相互作用、人の検出、追跡のためのライブラリです。人の注意の焦点は、頭の向きを見つけることで概算できます。これは、目が覆われている場合、またはユーザーがカメラから離れすぎて目の領域を適切な解像度で取得できない場合に特に役立ちます。目の領域が見える場合、視線の方向を推定することができます。これは、はるかに有益であり、FOAの良い指標を与えることができます。Deepgazeには、次の便利なパッケージが含まれています。

  • 頭のポーズの推定(Perspective-n-Point、畳み込みニューラルネットワーク)
  • 顔検出(ハールカスケード)
  • 肌と色の検出(範囲検出、逆投影)
  • ヒストグラムベースの分類(ヒストグラム交差)
  • 動き検出(フレーム差分、MOG、MOG2)
  • モーショントラッキング(パーティクルフィルター)
  • 顕著性マップ(FASA)

# Deepgazeのインストール

# Dockerの整理

DockerFileは下記の通りです.

FROM jupyter/base-notebook:python-3.8.6

WORKDIR /work
USER root

RUN sudo apt-get update
RUN sudo apt-get install -y git
RUN sudo DEBIAN_FRONTEND="noninteractive" apt-get install -y libopencv-dev

RUN pip install --upgrade pip
RUN pip install jupyterlab
RUN pip install numpy
RUN pip install opencv-python
RUN pip install tensorflow

WORKDIR /home/$NB_USER/
USER $NB_USER

docker-compose.ymlは下記の通りです.

version: "3.7"

services:
  deepgaze:
    # コンテナ名を明示的に指定する
    container_name: deepgaze_50
    build: .
    stdin_open: true
    tty: true
    ports:
      - 8050:8050 # for Dash
      - 50:8888 # for Jupyterlab
    volumes:
      - ./:/home/jovyan/work
    command:  sh -c 'jupyter lab'

# gitのダウンロード

dockerを起動します.jupyterLabはhttp://127.0.0.1:50/?token=****で入ります.

docker-compose up --build

下記のコードでgitをコピーできます.

# gitのコピー
git clone https://github.com/mpatacchiola/deepgaze.git

# セットアップ
cd deepgaze
python setup.py install

# Deepgazeの実行

ここでは,お試しで/deepgaze/examples/ex_fasa_saliency_map/ex_fasa_saliency_map_images.pyを実行します.

コメントアウトしないと,Docker上で動かない箇所がありますので,下記のコードを参考にしてください.

import numpy as np
import cv2
from timeit import default_timer as timer
from deepgaze.saliency_map import FasaSaliencyMapping 

def main():

    image_1 = cv2.imread("./horse.jpg")
    image_2 = cv2.imread("./car.jpg")
    image_3 = cv2.imread("./plane.jpg")
    image_4 = cv2.imread("./pear.jpg")

    # for each image the same operations are repeated
    my_map = FasaSaliencyMapping(image_1.shape[0], image_1.shape[1])  # init the saliency object
    start = timer()
    image_salient_1 = my_map.returnMask(image_1, tot_bins=8, format='BGR2LAB')  # get the mask from the original image
    image_salient_1 = cv2.GaussianBlur(image_salient_1, (3,3), 1)  # applying gaussin blur to make it pretty
    end = timer()
    cv2.imwrite("./horse_salient.jpg", image_salient_1)
    print("--- %s Image 1 tot seconds ---" % (end - start))

    my_map = FasaSaliencyMapping(image_2.shape[0], image_2.shape[1])
    start = timer()
    image_salient_2 = my_map.returnMask(image_2, tot_bins=8, format='BGR2LAB')
    image_salient_2 = cv2.GaussianBlur(image_salient_2, (3,3), 1)
    end = timer()
    cv2.imwrite("./car_salient.jpg", image_salient_2)
    print("--- %s Image 2 tot seconds ---" % (end - start))

    my_map = FasaSaliencyMapping(image_3.shape[0], image_3.shape[1])
    start = timer()
    image_salient_3 = my_map.returnMask(image_3, tot_bins=8, format='BGR2LAB')
    #image_salient_3 = cv2.GaussianBlur(image_salient_3, (3,3), 1)
    end = timer()
    cv2.imwrite("./plane_salient.jpg", image_salient_3)
    print("--- %s Image 3 tot seconds ---" % (end - start))

    my_map = FasaSaliencyMapping(image_4.shape[0], image_4.shape[1])
    start = timer()
    image_salient_4 = my_map.returnMask(image_4, tot_bins=8, format='BGR2LAB')
    image_salient_4 = cv2.GaussianBlur(image_salient_4, (3,3), 1)
    end = timer()
    cv2.imwrite("./pear_salient.jpg", image_salient_4)
    print("--- %s Image 4 tot seconds ---" % (end - start))

    # Creating stack of images and showing them on screen
    # original_images_stack = np.hstack((image_1, image_2, image_3, image_4))
    # saliency_images_stack = np.hstack((image_salient_1, image_salient_2, image_salient_3, image_salient_4))
    # saliency_images_stack = np.dstack((saliency_images_stack,saliency_images_stack,saliency_images_stack))
    # cv2.imshow("Original-Saliency", np.vstack((original_images_stack, saliency_images_stack)))

    # while True:
    #     if cv2.waitKey(33) == ord('q'):
    #         cv2.destroyAllWindows()
    #         break


if __name__ == "__main__":
    main()

下記のコードで実行します.

cd /deepgaze/examples/ex_fasa_saliency_map
python ex_fasa_saliency_map_images.py

# Deepgazeの実装済み機能

# 頭の姿勢の推定

# 色検出

# 皮膚検出

# 顔検出

# コーナー検出

# フレーム差分による動きの検出と追跡

# アルゴリズムによる動き検出と追跡の比較

# パーティクルフィルターによるモーショントラッキング

# 逆投影によるモーショントラッキング

# カラーヒストグラムによる画像分類

# FASAアルゴリズム

# 参考サイト

brendan-rius/jupyter-c-kernel (opens new window)

全国630店舗以上!もみほぐし・足つぼ・ハンドリフレ・クイックヘッドのリラクゼーション店【りらくる】

データ可視化ライブラリ Altairを使ってみる(クロス集計編)

データ可視化ライブラリ Altairを使ってみる(クロス集計編)

クロス集計でのデータ可視化ライブラリ Altair を使ってみる.

C言語に対応したjupyter Labを実装する

C言語に対応したjupyter Labを実装する

C言語に対応したjupyter Labを実装します.

今回はDockerで実装します.