WO2022249253A1 - 力推定装置、力推定方法およびプログラム - Google Patents

力推定装置、力推定方法およびプログラム Download PDF

Info

Publication number
WO2022249253A1
WO2022249253A1 PCT/JP2021/019658 JP2021019658W WO2022249253A1 WO 2022249253 A1 WO2022249253 A1 WO 2022249253A1 JP 2021019658 W JP2021019658 W JP 2021019658W WO 2022249253 A1 WO2022249253 A1 WO 2022249253A1
Authority
WO
WIPO (PCT)
Prior art keywords
force
value
estimated
sound wave
unit
Prior art date
Application number
PCT/JP2021/019658
Other languages
English (en)
French (fr)
Inventor
有信 新島
Original Assignee
日本電信電話株式会社
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 日本電信電話株式会社 filed Critical 日本電信電話株式会社
Priority to PCT/JP2021/019658 priority Critical patent/WO2022249253A1/ja
Priority to JP2023523734A priority patent/JPWO2022249253A1/ja
Publication of WO2022249253A1 publication Critical patent/WO2022249253A1/ja

Links

Images

Classifications

    • AHUMAN NECESSITIES
    • A61MEDICAL OR VETERINARY SCIENCE; HYGIENE
    • A61BDIAGNOSIS; SURGERY; IDENTIFICATION
    • A61B5/00Measuring for diagnostic purposes; Identification of persons
    • A61B5/22Ergometry; Measuring muscular strength or the force of a muscular blow

Definitions

  • the present invention relates to a force estimation device, a force estimation method and a program.
  • Non-Patent Document 1 A technology that uses sound waves to estimate muscle force is known.
  • two piezoelectric elements are attached to the back of the user's hand, one is used as a speaker and the other is used as a microphone, ultrasonic waves are transmitted and received, and feature amount extraction by frequency analysis and a machine learning algorithm based on it are performed.
  • Apparatus for estimating a user's force is disclosed.
  • the disclosed technology aims to improve the accuracy of force estimation.
  • the disclosed technique is a force estimating device for estimating a force related to an estimation target muscle, comprising a sound wave transmitting unit that transmits a sound wave, a sound wave receiving unit that receives the sound wave, and an analysis of the received sound wave.
  • a force estimating device comprising: a force estimating unit that calculates an estimated value of the force to be estimated; and an offset correcting unit that calculates a value obtained by subtracting a set offset correction value from the estimated value as a corrected estimated value. be.
  • 4 is a flowchart showing an example of the flow of force estimation processing
  • 7 is a flowchart showing an example of the flow of correction value setting processing
  • It is a figure which shows the hardware structural example of a force estimation apparatus. It is a figure which shows an example of the measurement result of a sound wave. It is a figure which shows an example of the experimental result of force estimation. It is a figure which shows the hardware configuration example of a computer.
  • the force estimation device is a device that uses sound waves to estimate the force related to the muscle strength of the estimation target, such as grip strength, leg muscle strength, back muscle strength, and instantaneous strength.
  • the estimation target is assumed to be the user or a human other than the user, but it does not have to be a human as long as it has muscles, and it may be an animal other than the human family, such as a dog or a monkey. The following description is based on the premise that the estimation target is a human.
  • FIG. 1 is a functional configuration diagram of a force estimation device.
  • the force estimation device 10 includes a sound wave transmission unit 11 , a sound wave reception unit 12 , a force estimation unit 13 , a weakness determination unit 14 , an offset correction value setting unit 15 and an offset correction unit 16 .
  • the sound wave transmission unit 11 transmits sound waves.
  • the transmitted sound waves include ultrasonic waves and sound waves in the audible range, and are transmitted from a position close to the skin surface of the estimation target.
  • the sound wave receiving unit 12 receives sound waves. Specifically, the sound wave receiving unit 12 receives ultrasonic waves and sound waves in the audible range, and extracts the ultrasonic waves or the sound waves in the audible range from the received sound waves.
  • the force estimation unit 13 estimates the force to be estimated. Specifically, the force estimating unit 13 calculates a frequency feature amount from the received sound wave, and inputs the calculated frequency feature amount into a regression model to obtain an estimated force value.
  • the weakness determination unit 14 determines whether the estimation target is in a state of weakness. Specifically, the weakness determining unit 14 calculates the absolute value of the amplitude of the sound wave in the audible range extracted by the sound wave receiving unit 12, and integrates the calculated absolute value over a certain window width (integral muscle sound) Calculate Here, in order to increase the SN ratio of the integrated muscle sound, the weakness determination unit 14 may calculate the integrated muscle sound after applying a low-pass filter with a cutoff frequency of about 100 Hz. When the integrated myoson is equal to or less than a predetermined threshold, the weakness determination unit 14 determines the section corresponding to the calculated fixed window width as the section in which the estimation target is in a state of weakness (weakness section).
  • the offset correction value setting unit 15 sets the offset correction value based on the estimated value of the force in the weak period. Specifically, the offset correction value setting unit 15 calculates the average value of the estimated force values in the weakened period, and sets the calculated average value as the offset correction value.
  • the offset correction unit 16 performs offset correction based on the force estimation value calculated by the force estimation unit 13 and the offset setting value. Specifically, the offset correction unit 16 uses a value obtained by subtracting the offset setting value from the force estimated value as the corrected estimated value.
  • the force estimating device 10 starts force estimating processing in response to a user's operation or the like.
  • the offset correction value is set by the offset correction value setting process described later or based on the results of experiments or the like.
  • FIG. 2 is a flowchart showing an example of the flow of force estimation processing.
  • the sound wave transmission unit 11 transmits sound waves (step S11).
  • the sound waves transmitted here include ultrasonic waves.
  • the sound wave transmitting unit 11 uses a piezoelectric element to transmit sweep waves in an ultrasonic band (eg, 20-40 kHz) at regular intervals (eg, 20 ms intervals).
  • the sound wave receiving unit 12 receives sound waves (step S12).
  • the sound wave receiving unit 12 receives ultrasonic waves using a piezo element different from the piezo element used for transmission.
  • the force estimation unit 13 estimates force using a regression model based on the frequency feature amount of the sound wave (step S13). Specifically, the force estimating unit 13 applies a fast Fourier transform (FFT) to the sound wave received in step S12 every predetermined number of samples (for example, 4,096 samples) to calculate the power spectrum, Let the calculated power spectrum be a vector (feature vector) indicating the frequency feature.
  • FFT fast Fourier transform
  • a regression model is a learned model by machine learning such as SupportVectorRegression. This utilizes the fact that when ultrasonic waves propagate through the skin, if the skin is deformed according to the amount of force applied by the object being measured, the acoustic characteristics change.
  • the offset correction unit 16 subtracts the offset correction value from the estimated force value, It is output as an estimated value after correction (step S14).
  • the correction value setting process is executed before starting the force estimation process.
  • FIG. 3 is a flowchart showing an example of the flow of correction value setting processing.
  • the sound wave transmission unit 11 transmits sound waves (step S21).
  • the sound waves transmitted here include ultrasonic waves and sound waves in the audible range.
  • the sound wave receiving unit 12 receives sound waves and extracts sound waves in the audible range from the received sound waves (step S22).
  • the force estimating unit 13 calculates the absolute value of the amplitude of the extracted sound wave in the audible range, and calculates a value (integrated muscle sound) obtained by integrating the calculated absolute value over a certain window width (step S23).
  • a constant window width is a temporal interval of a preset time (for example, 1 second).
  • the weakness determination unit 14 determines whether or not the integrated muscle tone is equal to or less than the threshold (step S24).
  • the threshold is set in advance according to the results of experiments and the like.
  • the force estimation device 10 returns to the process of step S21 and executes the process for the next section.
  • step S24 When the weakness determination unit 14 determines that the integrated muscle sound is equal to or less than the threshold (step S24: Yes), the force estimation unit 13 uses a regression model based on the frequency feature amount of the sound wave in the section (weakness section). force is estimated (step S25).
  • the process of step S25 is the same as step S13 of the force estimation process shown in FIG.
  • force estimation unit 13 may perform the processing of step S24 in advance before the determination by the weakness determination unit 14 and store the execution result.
  • the offset correction value setting unit 15 sets the average value of the estimated force value in the interval (weakness interval) as the offset correction value (step S26).
  • FIG. 4 is a diagram illustrating a hardware configuration example of a force estimation device.
  • a force estimation device 10 includes a computer 101 , a speaker 102 and a microphone 103 .
  • the computer 101 is a PC (Personal Computer), a smart phone, a server device, or the like.
  • the speaker 102 is a device that transmits sound waves.
  • the sound wave transmitter 11 is implemented by the computer 101 controlling the speaker 102 .
  • the microphone 103 is a device that receives sound waves.
  • the sound wave receiving section 12 is implemented by the computer 101 controlling the microphone 103 .
  • the force estimating device 10 estimates grip strength by attaching a piezo element that functions as a speaker 102 and a microphone 103 to the back of the hand, as in Non-Patent Document 1.
  • a piezo element corresponding to the microphone 103 has sufficient gain in both the low frequency band of 100 Hz and below and the high frequency band of 20 to 40 kHz, one piezo element can be used for both.
  • the piezo element has a frequency characteristic that greatly attenuates in one of the frequency bands on either side, an acoustic receiver with a different frequency characteristic that compensates for that is installed separately, and the piezo element and the acoustic receiver are combined. function as the microphone 103 .
  • FIG. 5 is a diagram showing an example of a measurement result of sound waves.
  • FIG. 5 shows an example of measuring muscle sound on the back of the hand with a microphone attached to the back of the hand.
  • the “weak state” in FIG. 5 is a state in which force is applied, and the section “with grip strength” is a state in which force is applied. When no force is applied, the amplitude of the sound wave is small, but when force is applied, the amplitude of the sound wave increases due to the effect of muscle sound.
  • FIG. 6 is a diagram showing an example of force estimation experimental results.
  • a dashed line 901 indicates the estimated value before correction.
  • a solid line 902 indicates the correct value.
  • a dotted line 903 indicates the estimated value after correction.
  • the correct value is the grip strength value measured by the force sensor.
  • the grip strength in the section where the correct value was 0 N was estimated to be about 5 N
  • the grip strength in the section where the correct value was 5 N was estimated to be about 10 N.
  • the estimated value after the offset correction was obtained by subtracting the offset correction value of 5N from the force estimated value and estimating a value close to the correct value.
  • the force estimating device 10 determined that the section where the correct value was 0N was a weakened section, and set the offset correction value to 5N.
  • Each functional unit of force estimation apparatus 10 described above can be realized by causing computer 101 to execute a program describing the processing details described in the present embodiment.
  • this "computer” may be a physical machine or a virtual machine on the cloud.
  • the "hardware” described here is virtual hardware.
  • the above program can be recorded on a computer-readable recording medium (portable memory, etc.), saved, or distributed. It is also possible to provide the above program through a network such as the Internet or e-mail.
  • FIG. 7 is a diagram showing a hardware configuration example of the computer.
  • the computer of FIG. 7 has a drive device 1000, an auxiliary storage device 1002, a memory device 1003, a CPU 1004, an interface device 1005, a display device 1006, an input device 1007, an output device 1008, etc., which are connected to each other via a bus B, respectively.
  • a program that implements the processing in the computer is provided by a recording medium 1001 such as a CD-ROM or memory card, for example.
  • a recording medium 1001 such as a CD-ROM or memory card
  • the program is installed from the recording medium 1001 to the auxiliary storage device 1002 via the drive device 1000 .
  • the program does not necessarily have to be installed from the recording medium 1001, and may be downloaded from another computer via the network.
  • the auxiliary storage device 1002 stores installed programs, as well as necessary files and data.
  • the memory device 1003 reads and stores the program from the auxiliary storage device 1002 when a program activation instruction is received.
  • the CPU 1004 implements functions related to the device according to programs stored in the memory device 1003 .
  • the interface device 1005 is used as an interface for connecting to the network.
  • a display device 1006 displays a program-based GUI (Graphical User Interface) or the like.
  • An input device 1007 is composed of a keyboard, a mouse, buttons, a touch panel, or the like, and is used to input various operational instructions.
  • the output device 1008 outputs the calculation result.
  • the computer may include a GPU (Graphics Processing Unit) or TPU (Tensor Processing Unit) instead of the CPU 1004, or may include a GPU or TPU in addition to the CPU 1004. In that case, the processing may be divided and executed, for example, the GPU or TPU executes processing that requires special computation, and the CPU 1004 executes other processing.
  • the offset correction value is subtracted from the force estimated value to obtain the corrected estimated value. This can improve the accuracy of the force estimate.
  • the force estimation device 10 determines whether or not the estimation target is in a state of weakness, and sets an offset correction value based on the estimated value of the force in the time interval determined to be in a state of weakness. As a result, the error occurring in the estimated force value can be set as an offset correction value to further improve the estimated force value.
  • a force estimating device for estimating a force related to an estimation target muscle a sound wave transmitter that transmits sound waves; a sound wave receiving unit that receives the sound wave; a force estimation unit that analyzes the received sound wave and calculates an estimated value of the force of the estimation target; an offset correction unit that calculates, as a corrected estimated value, a value obtained by subtracting the set offset correction value from the estimated value; Force estimator.
  • (Section 2) a weakness determination unit that determines whether the estimation target is in a state of weakness; An offset correction value setting unit that sets the offset correction value based on the estimated force value in the time interval determined to be in the weak state,
  • the force estimating device 1.
  • (Section 3) The sound wave receiving unit extracts sound waves in an audible range from the received sound waves, The weakness determination unit calculates the absolute value of the amplitude of the extracted sound wave in the audible range, and if the value obtained by integrating the calculated absolute value with a constant window width is equal to or less than a predetermined threshold, Determine that the section with a constant window width was a weak state section, 3.
  • the force estimating unit calculates an estimated value of the force to be estimated in the section determined to be in the weak state
  • the offset correction value setting unit calculates an average value of the estimated force values in the section, and sets the calculated average value as the offset correction value.
  • the force estimating device according to item 2 or 3.
  • the force estimator calculates a power spectrum by applying a fast Fourier transform to the received sound wave for each predetermined number of samples, and inputs the calculated power spectrum to a regression model as a vector representing a frequency feature amount. , to obtain an estimate of said force,
  • the force estimation device according to any one of items 1 to 4.
  • (Section 6) A computer implemented force estimation method comprising: transmitting sound waves; receiving the sound wave; analyzing the received sound wave to calculate an estimated value of the force to be estimated; calculating a value obtained by subtracting the set offset correction value from the estimated value as a corrected estimated value; force estimation method. (Section 7) A program for causing a computer to function as each unit in the force estimation device according to any one of items 1 to 5.

Landscapes

  • Health & Medical Sciences (AREA)
  • Life Sciences & Earth Sciences (AREA)
  • Heart & Thoracic Surgery (AREA)
  • Medical Informatics (AREA)
  • Biophysics (AREA)
  • Pathology (AREA)
  • Engineering & Computer Science (AREA)
  • Biomedical Technology (AREA)
  • Physical Education & Sports Medicine (AREA)
  • Physics & Mathematics (AREA)
  • Molecular Biology (AREA)
  • Surgery (AREA)
  • Animal Behavior & Ethology (AREA)
  • General Health & Medical Sciences (AREA)
  • Public Health (AREA)
  • Veterinary Medicine (AREA)
  • Force Measurement Appropriate To Specific Purposes (AREA)

Abstract

推定対象の筋肉に関する力を推定するための力推定装置であって、音波を送信する音波送信部と、前記音波を受信する音波受信部と、受信した前記音波を解析して前記推定対象の力の推定値を算出する力推定部と、設定されたオフセット補正値を前記推定値から減算した値を補正後の推定値として算出するオフセット補正部と、を備える力推定装置である。

Description

力推定装置、力推定方法およびプログラム
 本発明は、力推定装置、力推定方法およびプログラムに関する。
 音波を利用して筋肉の力を推定する技術が知られている。例えば、非特許文献1には、ユーザの手の甲に2つのピエゾ素子を装着し、一方をスピーカ、他方をマイクとし、超音波を送受信して、周波数解析による特徴量抽出とそれに基づく機械学習アルゴリズムを適用することで、ユーザの力を推定する装置が開示されている。
Kubo, Yuki, et al. "AudioTouch: Minimally Invasive Sensing of Micro-Gestures via Active Bio-Acoustic Sensing." Proceedings of the 21st International Conference on Human-Computer Interaction with Mobile Devices and Services. 2019.
 従来、装置を長時間利用し、発熱や体温などの影響でピエゾ素子の温度が変化することによって、音響特性が変化し、力の推定値にドリフト(基線動揺)誤差が生じるという問題がある。
 開示の技術は、力の推定値の精度を向上させることを目的とする。
 開示の技術は、推定対象の筋肉に関する力を推定するための力推定装置であって、音波を送信する音波送信部と、前記音波を受信する音波受信部と、受信した前記音波を解析して前記推定対象の力の推定値を算出する力推定部と、設定されたオフセット補正値を前記推定値から減算した値を補正後の推定値として算出するオフセット補正部と、を備える力推定装置である。
 力の推定値の精度を向上させることができる。
力推定装置の機能構成図である。 力推定処理の流れの一例を示すフローチャートである。 補正値設定処理の流れの一例を示すフローチャートである。 力推定装置のハードウェア構成例を示す図である。 音波の測定結果の一例を示す図である。 力推定の実験結果の一例を示す図である。 コンピュータのハードウェア構成例を示す図である。
 以下、図面を参照して本発明の実施の形態(本実施の形態)について説明する。以下で説明する実施の形態は一例に過ぎず、本発明が適用される実施の形態は、以下の実施の形態に限られるわけではない。
 本実施の形態に係る力推定装置は、音波を用いて、握力、脚筋力、背筋力、瞬発力等のような推定対象の筋力に関する力を推定する装置である。推定対象は、ユーザまたはユーザ以外のヒトを想定するが、筋肉を有するものであればヒトでなくても良く、犬、猿等のようなヒト科以外の動物であっても良い。以下、推定対象がヒトである前提で説明する。
 (力推定装置の機能構成)
 図1は、力推定装置の機能構成図である。力推定装置10は、音波送信部11と、音波受信部12と、力推定部13と、脱力判定部14と、オフセット補正値設定部15と、オフセット補正部16と、を備える。
 音波送信部11は、音波を送信する。送信される音波は、超音波と可聴域の音波とを含み、推定対象の皮膚の表面に近い位置から送信される。
 音波受信部12は、音波を受信する。具体的には、音波受信部12は、超音波と可聴域の音波とを受信し、受信した音波から超音波または可聴域の音波を抽出する。
 力推定部13は、推定対象の力を推定する。具体的には、力推定部13は、受信した音波から周波数特徴量を算出し、算出した周波数特徴量を回帰モデルに入力させることによって、力の推定値を得る。
 脱力判定部14は、音波受信部12が受信した音波に基づいて、推定対象が脱力状態であるか否かを判定する。具体的には、脱力判定部14は、音波受信部12によって抽出された可聴域の音波の振幅の絶対値を算出し、算出された絶対値を一定窓幅で積分した値(積分筋音)を算出する。ここで、脱力判定部14は、積分筋音のSN比を上げるために、カットオフ周波数が100Hz程度のローパスフィルタを適用してから積分筋音を計算しても良い。脱力判定部14は、積分筋音があらかじめ定められた閾値以下の場合は、算出された一定窓幅に相当する区間を、推定対象が脱力状態の区間(脱力区間)と判定する。
 オフセット補正値設定部15は、脱力区間における力の推定値に基づいて、オフセット補正値を設定する。具体的には、オフセット補正値設定部15は、脱力区間における力の推定値の平均値を算出し、算出された平均値をオフセット補正値として設定する。
 オフセット補正部16は、力推定部13が算出した力の推定値と、オフセット設定値と、に基づいて、オフセット補正を実行する。具体的には、オフセット補正部16は、力の推定値からオフセット設定値を減算した値を、補正後の推定値とする。
 (力推定装置の動作)
 次に、力推定装置10の動作について、図面を参照して説明する。力推定装置10は、ユーザの操作等を受けて、力推定処理を開始する。なお、力推定処理の開始時には、後述するオフセット補正値設定処理によって、または実験等の結果に基づいてオフセット補正値が設定されていることを前提とする。
 図2は、力推定処理の流れの一例を示すフローチャートである。音波送信部11は、音波を送信する(ステップS11)。ここで送信される音波は、超音波を含む。例えば、音波送信部11は、ピエゾ素子を使って超音波帯域(例えば20-40kHz)のスイープ波を一定間隔(例えば20ms間隔)で送信する。
 次に、音波受信部12は、音波を受信する(ステップS12)。例えば、音波受信部12は、送信に使用されたピエゾ素子とは異なるピエゾ素子を使って超音波を受信する。
 次に、力推定部13は、音波の周波数特徴量に基づいて、回帰モデルを用いて力を推定する(ステップS13)。具体的には、力推定部13は、ステップS12において受信された音波を一定サンプル数(例えば4,096サンプル)ごとに高速フーリエ変換(FFT;fast Fourier transform)をかけてパワースペクトラムを算出し、算出されたパワースペクトラムを、周波数特徴量を示すベクトル(特徴量ベクトル)とする。
 そして、力推定部13は、特徴量ベクトルを回帰モデルに入力して、力の推定値を得る。回帰モデルは、例えばSupportVectorRegressionなどの機械学習による学習済みモデルである。これは、超音波が皮膚を伝搬する際、測定対象による力の入れ具合に応じた皮膚の変形などがあると、音響特性が変化することを利用している。
 続いて、オフセット補正部16は、力の推定値からオフセット補正値を減算した値を、
補正後の推定値として出力する(ステップS14)。
 次に、オフセット補正値を設定するための補正値設定処理について説明する。補正値設定処理は、力推定処理の開始前に実行される。
 図3は、補正値設定処理の流れの一例を示すフローチャートである。音波送信部11は、音波を送信する(ステップS21)。ここで送信される音波は、超音波と可聴域の音波とを含む。次に、音波受信部12は、音波を受信し、受信した音波から可聴域の音波を抽出する(ステップS22)。
 続いて、力推定部13は、抽出された可聴域の音波の振幅の絶対値を算出し、算出された絶対値を一定窓幅で積分した値(積分筋音)を算出する(ステップS23)。一定窓幅とは、あらかじめ設定された時間(例えば1秒間等)の時間的な区間である。
 次に、脱力判定部14は、積分筋音が閾値以下であるか否かを判定する(ステップS24)。閾値は実験等の結果に応じてあらかじめ設定されている。脱力判定部14が、積分筋音が閾値以下でないと判定すると(ステップS24:No)、力推定装置10は、ステップS21の処理に戻り、次の区間について処理を実行する。
 脱力判定部14が、積分筋音が閾値以下であると判定すると(ステップS24:Yes)、力推定部13は、当該区間(脱力区間)の音波の周波数特徴量に基づいて、回帰モデルを用いて力を推定する(ステップS25)。このステップS25の処理は、図2に示した力推定処理のステップS13と同様である。
 なお、力推定部13は、脱力判定部14による判定の前にあらかじめこのステップS24の処理を実行し、実行結果を記憶しておいても良い。
 次に、オフセット補正値設定部15は、力の推定値の当該区間(脱力区間)の平均値を、オフセット補正値として設定する(ステップS26)。
 (力推定装置のハードウェア構成)
 図4は、力推定装置のハードウェア構成例を示す図である。力推定装置10は、コンピュータ101と、スピーカ102と、マイク103と、を備える。
 コンピュータ101は、PC(Personal Computer)、スマートフォン、サーバ装置等である。スピーカ102は、音波を送信する装置である。音波送信部11は、コンピュータ101がスピーカ102を制御することによって実現される。
 マイク103は、音波を受信する装置である。音波受信部12は、コンピュータ101がマイク103を制御することによって実現される。
 例えば、力推定装置10は、非特許文献1と同様に、手の甲にスピーカ102とマイク103の役割を担うピエゾ素子を装着することによって、握力を推定する。例えば、マイク103に相当するピエゾ素子の周波数特性が100Hz以下の低周波数帯域でも20-40kHzの高周波数帯域でも十分なゲインがある場合は、一つのピエゾ素子で兼用することができる。また、ピエゾ素子がどちらか片側の周波数帯域で大きく減衰するような周波数特性の場合は、それを補完するような異なる周波数特性の音響受信装置を別途装着し、ピエゾ素子と音響受信装置とを併せてマイク103として機能させれば良い。
 (音波の測定結果)
 図5は、音波の測定結果の一例を示す図である。図5は、手の甲に装着したマイクで手の甲の筋音を測定した例を示す。図5の「脱力状態」とは力を込めかった状態であって、「握力あり」の区間が力を込めた状態である。力を込めなかった場合は、音波の振幅が小さいが、力を込めた場合は、筋音の影響で音波の振幅が大きくなっている。
 この測定結果から、音波の振幅の大きさによって脱力状態であるか否かを判定する方法が有効であると言える。
 (力推定の実験結果)
 図6は、力推定の実験結果の一例を示す図である。実験では、オフセット補正処理の前後の握力の推定値を算出した。破線901は、補正前の推定値を示す。実線902は、正解値を示す。点線903は、補正後の推定値を示す。
 正解値は、フォースセンサで測定した握力の値である。補正前の推定値は、正解値では0Nとなっている区間の握力を約5Nと推定し、正解値では5Nとなっている区間の握力を約10Nと推定した。
 これに対して、オフセット補正後の推定値は、力の推定値からオフセット補正値の5Nを減算し、正解値に近い値を推定した。なお、力推定装置10は、オフセット補正値設定処理の結果、正解値では0Nとなっている区間を脱力区間と判定し、オフセット補正値を5Nと設定した。
 本実験の結果、補正後の推定値が、補正前の推定値よりも正解値に近い結果となった。
 (コンピュータのハードウェア構成例)
 上述した力推定装置10の各機能部は、コンピュータ101に、本実施の形態で説明する処理内容を記述したプログラムを実行させることにより実現可能である。なお、この「コンピュータ」は、物理マシンであってもよいし、クラウド上の仮想マシンであってもよい。仮想マシンを使用する場合、ここで説明する「ハードウェア」は仮想的なハードウェアである。
 上記プログラムは、コンピュータが読み取り可能な記録媒体(可搬メモリ等)に記録して、保存したり、配布したりすることが可能である。また、上記プログラムをインターネットや電子メール等、ネットワークを通して提供することも可能である。
 図7は、上記コンピュータのハードウェア構成例を示す図である。図7のコンピュータは、それぞれバスBで相互に接続されているドライブ装置1000、補助記憶装置1002、メモリ装置1003、CPU1004、インタフェース装置1005、表示装置1006、入力装置1007、出力装置1008等を有する。
 当該コンピュータでの処理を実現するプログラムは、例えば、CD-ROM又はメモリカード等の記録媒体1001によって提供される。プログラムを記憶した記録媒体1001がドライブ装置1000にセットされると、プログラムが記録媒体1001からドライブ装置1000を介して補助記憶装置1002にインストールされる。但し、プログラムのインストールは必ずしも記録媒体1001より行う必要はなく、ネットワークを介して他のコンピュータよりダウンロードするようにしてもよい。補助記憶装置1002は、インストールされたプログラムを格納すると共に、必要なファイルやデータ等を格納する。
 メモリ装置1003は、プログラムの起動指示があった場合に、補助記憶装置1002からプログラムを読み出して格納する。CPU1004は、メモリ装置1003に格納されたプログラムに従って、当該装置に係る機能を実現する。インタフェース装置1005は、ネットワークに接続するためのインタフェースとして用いられる。表示装置1006はプログラムによるGUI(Graphical User Interface)等を表示する。入力装置1007はキーボード及びマウス、ボタン、又はタッチパネル等で構成され、様々な操作指示を入力させるために用いられる。出力装置1008は演算結果を出力する。なお、上記コンピュータは、CPU1004の代わりにGPU(Graphics Processing Unit)またはTPU(Tensor processing unit)を備えていても良く、CPU1004に加えて、GPUまたはTPUを備えていても良い。その場合、例えば特殊な演算が必要な処理をGPUまたはTPUが実行し、その他の処理をCPU1004が実行する、というように処理を分担して実行しても良い。
 (本実施の形態の効果)
 本実施の形態に係る力推定装置10によれば、力の推定値からオフセット補正値を減算し、補正後の推定値とする。これによって、力の推定値の精度を向上させることができる。
 また、力推定装置10は、推定対象が脱力状態であったか否かを判定し、脱力状態と判定された時間的な区間における力の推定値に基づいて、オフセット補正値を設定する。これによって、力の推定値に生じている誤差をオフセット補正値として設定し、力の推定値をさらに向上させることができる。
 (実施の形態のまとめ)
 本明細書には、少なくとも下記の各項に記載した力推定装置、力推定方法およびプログラムが記載されている。
(第1項)
 推定対象の筋肉に関する力を推定するための力推定装置であって、
 音波を送信する音波送信部と、
 前記音波を受信する音波受信部と、
 受信した前記音波を解析して前記推定対象の力の推定値を算出する力推定部と、
 設定されたオフセット補正値を前記推定値から減算した値を補正後の推定値として算出するオフセット補正部と、を備える、
 力推定装置。
(第2項)
 前記推定対象が脱力状態であったか否かを判定する脱力判定部と、
 前記脱力状態と判定された時間的な区間における力の推定値に基づいて、前記オフセット補正値を設定するオフセット補正値設定部と、をさらに備える、
 第1項に記載の力推定装置。
(第3項)
 前記音波受信部は、受信した音波から可聴域の音波を抽出し、
 前記脱力判定部は、抽出された前記可聴域の音波の振幅の絶対値を算出し、算出された絶対値を一定窓幅で積分した値が、あらかじめ定められた閾値以下である場合に、前記一定窓幅の区間を脱力状態の区間であったと判定する、
 第2項に記載の力推定装置。
(第4項)
 前記力推定部は、前記脱力状態と判定された区間における前記推定対象の力の推定値を算出し、
 前記オフセット補正値設定部は、前記区間における力の推定値の平均値を算出し、算出された前記平均値を前記オフセット補正値として設定する、
 第2項または第3項に記載の力推定装置。
(第5項)
 前記力推定部は、受信された前記音波を一定サンプル数ごとに高速フーリエ変換をかけてパワースペクトラムを算出し、算出された前記パワースペクトラムを、周波数特徴量を示すベクトルとして回帰モデルに入力して、前記力の推定値を得る、
 第1項から第4項のいずれか1項に記載の力推定装置。
(第6項)
 コンピュータが実行する力推定方法であって、
 音波を送信するステップと、
 前記音波を受信するステップと、
 受信した前記音波を解析して推定対象の力の推定値を算出するステップと、
 設定されたオフセット補正値を前記推定値から減算した値を補正後の推定値として算出するステップと、を備える、
 力推定方法。
(第7項)
 コンピュータを第1項から第5項のいずれか1項に記載の力推定装置における各部として機能させるためのプログラム。
 以上、本実施の形態について説明したが、本発明はかかる特定の実施形態に限定されるものではなく、請求の範囲に記載された本発明の要旨の範囲内において、種々の変形・変更が可能である。
10 力推定装置
11 音波送信部
12 音波受信部
13 力推定部
14 脱力判定部
15 オフセット補正値設定部
16 オフセット補正部
101 コンピュータ
102 スピーカ
103 マイク
1000 ドライブ装置
1001 記録媒体
1002 補助記憶装置
1003 メモリ装置
1004 CPU
1005 インタフェース装置
1006 表示装置
1007 入力装置
1008 出力装置

Claims (7)

  1.  推定対象の筋肉に関する力を推定するための力推定装置であって、
     音波を送信する音波送信部と、
     前記音波を受信する音波受信部と、
     受信した前記音波を解析して前記推定対象の力の推定値を算出する力推定部と、
     設定されたオフセット補正値を前記推定値から減算した値を補正後の推定値として算出するオフセット補正部と、を備える、
     力推定装置。
  2.  前記推定対象が脱力状態であったか否かを判定する脱力判定部と、
     前記脱力状態と判定された時間的な区間における力の推定値に基づいて、前記オフセット補正値を設定するオフセット補正値設定部と、をさらに備える、
     請求項1に記載の力推定装置。
  3.  前記音波受信部は、受信した音波から可聴域の音波を抽出し、
     前記脱力判定部は、抽出された前記可聴域の音波の振幅の絶対値を算出し、算出された絶対値を一定窓幅で積分した値が、あらかじめ定められた閾値以下である場合に、前記一定窓幅の区間を脱力状態の区間であったと判定する、
     請求項2に記載の力推定装置。
  4.  前記力推定部は、前記脱力状態と判定された区間における前記推定対象の力の推定値を算出し、
     前記オフセット補正値設定部は、前記区間における力の推定値の平均値を算出し、算出された前記平均値を前記オフセット補正値として設定する、
     請求項2または3に記載の力推定装置。
  5.  前記力推定部は、受信された前記音波を一定サンプル数ごとに高速フーリエ変換をかけてパワースペクトラムを算出し、算出された前記パワースペクトラムを、周波数特徴量を示すベクトルとして回帰モデルに入力して、前記力の推定値を得る、
     請求項1から4のいずれか1項に記載の力推定装置。
  6.  コンピュータが実行する力推定方法であって、
     音波を送信するステップと、
     前記音波を受信するステップと、
     受信した前記音波を解析して推定対象の力の推定値を算出するステップと、
     設定されたオフセット補正値を前記推定値から減算した値を補正後の推定値として算出するステップと、を備える、
     力推定方法。
  7.  コンピュータを請求項1から5のいずれか1項に記載の力推定装置における各部として機能させるためのプログラム。
PCT/JP2021/019658 2021-05-24 2021-05-24 力推定装置、力推定方法およびプログラム WO2022249253A1 (ja)

Priority Applications (2)

Application Number Priority Date Filing Date Title
PCT/JP2021/019658 WO2022249253A1 (ja) 2021-05-24 2021-05-24 力推定装置、力推定方法およびプログラム
JP2023523734A JPWO2022249253A1 (ja) 2021-05-24 2021-05-24

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/JP2021/019658 WO2022249253A1 (ja) 2021-05-24 2021-05-24 力推定装置、力推定方法およびプログラム

Publications (1)

Publication Number Publication Date
WO2022249253A1 true WO2022249253A1 (ja) 2022-12-01

Family

ID=84229715

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/JP2021/019658 WO2022249253A1 (ja) 2021-05-24 2021-05-24 力推定装置、力推定方法およびプログラム

Country Status (2)

Country Link
JP (1) JPWO2022249253A1 (ja)
WO (1) WO2022249253A1 (ja)

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106264573A (zh) * 2016-07-26 2017-01-04 吉林大学 便携式肌肉力学参数及肌肉力在体超声检测装置及方法
JP2017035374A (ja) * 2015-08-12 2017-02-16 国立大学法人三重大学 下肢筋力測定システム
JP2017127562A (ja) * 2016-01-22 2017-07-27 セイコーエプソン株式会社 運動情報取得装置および運動情報取得方法
JP2017530443A (ja) * 2014-08-18 2017-10-12 ソニー株式会社 超音波を用いたモーダルボディタッチ
JP2018110658A (ja) * 2017-01-10 2018-07-19 有限会社ヒューマンリンク 握力測定方法、握力測定装置、方法、握力測定システム

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2017530443A (ja) * 2014-08-18 2017-10-12 ソニー株式会社 超音波を用いたモーダルボディタッチ
JP2017035374A (ja) * 2015-08-12 2017-02-16 国立大学法人三重大学 下肢筋力測定システム
JP2017127562A (ja) * 2016-01-22 2017-07-27 セイコーエプソン株式会社 運動情報取得装置および運動情報取得方法
CN106264573A (zh) * 2016-07-26 2017-01-04 吉林大学 便携式肌肉力学参数及肌肉力在体超声检测装置及方法
JP2018110658A (ja) * 2017-01-10 2018-07-19 有限会社ヒューマンリンク 握力測定方法、握力測定装置、方法、握力測定システム

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
KUBO, YUKI ET AL.: "AudioTouch: Minimally Invasive Sensing of Micro-Gestures via Active Bio-Acoustic Sensing", PROCEEDINGS OF THE 21ST INTERNATIONAL CONFERENCE ON HUMAN-COMPUTER INTERACTION WITH MOBILE DEVICES A., 2019, XP05855342 *

Also Published As

Publication number Publication date
JPWO2022249253A1 (ja) 2022-12-01

Similar Documents

Publication Publication Date Title
US20210157890A1 (en) Methods, apparatus and computer-readable mediums related to biometric authentication
US7813923B2 (en) Calibration based beamforming, non-linear adaptive filtering, and multi-sensor headset
EP2095681B1 (en) Filter entrainment avoidance with a frequency domain transform algorithm
US20170024032A1 (en) Signal processing systems
US10981053B2 (en) Vibration control apparatus
JP6177253B2 (ja) ハーモニシティベースの単一チャネルスピーチ品質評価
CN107408394B (zh) 确定在主信道与参考信道之间的噪声功率级差和声音功率级差
US20130028432A1 (en) Reverberation suppression device, reverberation suppression method, and computer-readable recording medium storing reverberation suppression program
JP5919722B2 (ja) 生体信号推定装置及びプログラム
JP6413741B2 (ja) 振動発生源推定装置、方法およびプログラム
US20240125669A1 (en) Vibration control system
WO2022249253A1 (ja) 力推定装置、力推定方法およびプログラム
US9570088B2 (en) Signal processor and method therefor
EP2144233A2 (en) Noise supression estimation device and noise supression device
CN113470610B (zh) 噪声控制方法、装置、存储介质和计算机设备
WO2023240224A1 (en) Active acoustic sensing
WO2023240233A1 (en) Respiration rate sensing
EP4312732A1 (en) Audioplethysmography calibration
CN114141224B (zh) 信号处理方法和装置、电子设备、计算机可读介质
US9779762B2 (en) Object sound period detection apparatus, noise estimating apparatus and SNR estimation apparatus
WO2022249252A1 (ja) 距離推定装置、距離推定方法およびプログラム
JP7152112B2 (ja) 信号処理装置、信号処理方法および信号処理プログラム
CN112133320A (zh) 语音处理装置及语音处理方法
EP3291229B1 (en) Sound processing program, sound processing device, and sound processing method
WO2023079694A1 (ja) 状態推定システムおよび状態推定方法

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 21942910

Country of ref document: EP

Kind code of ref document: A1

WWE Wipo information: entry into national phase

Ref document number: 2023523734

Country of ref document: JP

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 21942910

Country of ref document: EP

Kind code of ref document: A1