WO2025248604A1 - 情報処理装置 - Google Patents
情報処理装置Info
- Publication number
- WO2025248604A1 WO2025248604A1 PCT/JP2024/019439 JP2024019439W WO2025248604A1 WO 2025248604 A1 WO2025248604 A1 WO 2025248604A1 JP 2024019439 W JP2024019439 W JP 2024019439W WO 2025248604 A1 WO2025248604 A1 WO 2025248604A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- information
- feature
- unit
- view
- person
- Prior art date
- Legal status (The legal status 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 status listed.)
- Pending
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T7/00—Image analysis
Definitions
- This invention relates to image-based recognition technology.
- Non-Patent Document 1 convolutional neural networks (CNN)
- Non-Patent Document 2 Transformer
- CNN convolutional neural networks
- Non-Patent Document 7 because most of these action recognition technologies recognize actions from footage from a single camera, their accuracy is known to decrease in scenes where occlusion occurs due to obstacles or crowds.
- multi-view action recognition which simultaneously uses multiple views taken from different angles by multiple cameras to recognize actions.
- the occlusion area can be significantly reduced by placing cameras at multiple angles, such as cameras installed in the four corners of a room, and good accuracy can be expected even in scenes where occlusion occurs due to obstacles or crowds.
- Non-Patent Document 3 uses a feature extractor called a Video Encoder, which extracts features from the video of one view, to obtain embedding vectors for each view separately, and then integrates information between views using weighting from the embedding vectors of multiple views using a Conditional Random Field.
- a Video Encoder which extracts features from the video of one view, to obtain embedding vectors for each view separately, and then integrates information between views using weighting from the embedding vectors of multiple views using a Conditional Random Field.
- Non-Patent Document 4 information between views is similarly integrated using a Transformer consisting of a mechanism called Self-Attention (Non-Patent Document 2) from the embedding vectors of multiple views obtained by a Video Encoder.
- Self-Attention is a mechanism that extracts features by calculating a weighted sum of features based on the similarity between input sequences.
- Multi-view action recognition demonstrates superior recognition accuracy compared to techniques that use only a single view in scenes where occlusion occurs.
- conventional multi-view action recognition integrates information between views using a single embedding vector that represents the entire video for each view, so it can only recognize one action per person or per scene as a whole, and cannot simultaneously recognize the actions of multiple people. Note that this issue can arise not only when the recognition target is a person.
- the present invention was made in consideration of the above points, and aims to provide technology that enables recognition processing of multiple recognition targets based on images obtained from multiple viewpoints.
- a feature generation unit that generates feature amounts from each of a plurality of recognition target images obtained from a plurality of viewpoints; and an information integration unit that performs integration processing on the plurality of feature quantities generated by the feature generation unit.
- the disclosed technology provides a technology that enables recognition processing of multiple recognition targets based on images obtained from multiple viewpoints.
- FIG. 1 is a diagram illustrating a configuration of an information processing device.
- FIG. 1 is a configuration diagram of an information processing device 100 according to a first embodiment.
- 1 is a flowchart showing the overall processing flow of the information processing device 100.
- 10 is a flowchart showing the flow of processing by a video feature generation unit 1.
- 10 is a flowchart showing the flow of processing by a person feature generation unit 2.
- 10 is a flowchart showing the flow of processing by an information integration unit 3.
- 10 is a flowchart showing the flow of processing by a prediction generating unit 4.
- FIG. 2 is a configuration diagram of an information integration unit 3 in the first embodiment.
- 4 is a flowchart showing the flow of processing by an information integration unit 3 in the first embodiment.
- FIG. 10 is a configuration diagram of an information integration unit 3 in the second embodiment. 10 is a flowchart showing the flow of processing by an information integration unit 3 in the second embodiment.
- FIG. 1 illustrates an example of a hardware configuration of an information processing device 100.
- the recognition target is a person, but the recognition target is not limited to a person.
- the technology according to the present invention can be applied to any recognition target.
- Recognition according to the present invention can be any classification task, such as behavior recognition, age determination, gender determination, or belongings recognition.
- the direction of travel of the object to be recognized can also be estimated if this is used as a classification task.
- video in this embodiment is a collection of images
- video may also be called “images.”
- the information processing device 100 recognizes the actions of multiple people from multi-view video. That is, while conventional technology was only able to recognize one action from multi-view video, the information processing device 100 according to this embodiment can recognize the actions of multiple people.
- the information processing device 100 recognizes the actions of multiple people using multi-view video and bounding boxes that represent the positions of people within the video.
- the bounding boxes are assumed to be linked to the same person across multiple views by an ID.
- the image (or feature map) of the portion surrounded by the bounding box may also be called the recognition target image.
- FIG. 1 shows an example configuration of an information processing device 100 according to an embodiment of the present invention.
- the information processing device 100 has a video feature generation unit 1, a person feature generation unit 2, an information integration unit 3, and a prediction generation unit 4. An overview of the operation of the information processing device 100 having this configuration is described below.
- the video feature generation unit 1 extracts a feature map representing the entire video for each view.
- a feature map is a feature quantity with spatial resolution (spatial information), and information about a specific location in the video is contained in the corresponding location in the feature map.
- the hand position in the feature map contains hand information
- the foot position contains foot information.
- person feature generation unit 2 extracts a feature map for each person from the feature map of the entire video for each view.
- RoIAlign an example of a mechanism used as person feature generation unit 2
- person feature generation unit 2 is a mechanism that performs processing to cut out a bounding box area of a fixed size that represents the position of a person in the video from the feature map.
- person feature generation unit 2 may also be called the feature generation unit.
- video feature generation unit 1 and person feature generation unit 2 may also be called the feature generation unit.
- the processing of the person feature generation unit 2 is not limited to processing using RoIAlign, and any means can be used as long as it can extract a bounding box area from a feature map.
- the information integration unit 3 (e.g., Transformer) integrates information between views based on feature maps of the same person in each view.
- the information integration unit 3 e.g., Transformer
- Any means can be used as long as it can integrate information from multiple views.
- Non-Patent Document 5 In multi-view recognition tasks where there are multiple targets to recognize, such as multi-view object detection (Non-Patent Document 5), it is important to utilize spatial information when integrating information between views.
- the conventional multi-view action recognition technologies described in Non-Patent Documents 1 and 2 integrate information from embedding vectors that have lost spatial information, and therefore do not make effective use of spatial information.
- information is integrated using a feature map with spatial information rather than an embedding vector, which is expected to enable highly accurate recognition.
- the Transformer which is an example of a mechanism used as the information integration unit 3 in this embodiment, differs from a normal Transformer that consists of Self-Attention, which calculates similarities between feature maps of all views and extracts features, in that it consists of Same View Attention (SVA), which extracts features from similarities only between feature maps of the same view, and Different View Attention (DVA), which extracts features from similarities only between feature maps of different views.
- SVA Same View Attention
- DVA Different View Attention
- the information integration unit 3 (Transformer) integrates information between multiple views, and the resulting feature values are input into the prediction generation unit 4 (classifier), which then produces a behavioral prediction.
- the information processing device 100 may be a device that has one or more of the "video feature generation unit 1, person feature generation unit 2, information integration unit 3, and prediction generation unit 4."
- the video feature generation unit 1, person feature generation unit 2, information integration unit 3, and prediction generation unit 4 may each be separate information processing devices 100 (i.e., computers), or the information processing device 100 may be a device that has more than one of these four functional units.
- Fig. 2 is a configuration diagram of an information processing device 100 in the first embodiment.
- the information processing device 100 in the first embodiment has a video feature generation unit 1, a person feature generation unit 2, an information integration unit 3, a prediction generation unit 4, a video storage unit 5, a video feature generation parameter storage unit 6, a person position storage unit 7, an information integration parameter storage unit 8, and a prediction generation parameter storage unit 9.
- any one, any plurality, or all of the "video storage unit 5, video feature generation parameter storage unit 6, person position storage unit 7, information integration parameter storage unit 8, and prediction generation parameter storage unit 9" may be provided outside the information processing device 100.
- FIG. 2 to clearly show that operations are performed for each view, multiple video feature generation units 1 and multiple person feature generation units 2 are shown, but there is only one video feature generation unit 1 and one person feature generation unit 2 each, and they process multiple views. Note that a video feature generation unit 1 and a person feature generation unit 2 may be provided for each view. In other words, the same number of video feature generation units 1 and person feature generation units 2 as there are views may be provided.
- the video feature generation unit 1 acquires video feature generation parameters from the video feature generation parameter storage unit 6, performs video feature generation based on the parameters for multiple views of input video input from the video storage unit 5, and generates a feature map representing the entire video for each view.
- These video feature generation parameters are parameters of a neural network model, and are obtained by supervised learning of a general neural network using training data for the target task.
- the person feature generation unit 2 (e.g., RoIAlign) generates a person feature map by cutting out the feature map generated by the video feature generation unit 1 based on the bounding box representing the position of a person in each view and the ID representing the same person, which are input from the person position storage unit 7.
- the information integration unit 3 (e.g., Transformer) obtains information integration parameters from the information integration parameter storage unit 8, performs information integration based on the parameters on the person feature maps of each view of the same person obtained by the person feature generation unit 2, and generates a feature map that integrates information from multiple views.
- These information integration parameters are parameters of a neural network model, and are obtained by supervised learning of a general neural network using training data for the target task.
- the prediction generation unit 4 obtains prediction generation parameters from the prediction generation parameter storage unit 9 and performs parameter-based predictions on the features output by the information integration unit 3. These prediction generation parameters are parameters of a neural network model and are obtained by supervised learning of a general neural network using training data for the target task.
- ⁇ Overall processing flow> 3 is a flowchart showing the overall processing flow of the information processing device 100 according to this embodiment. The overall processing flow will be described with reference to FIG.
- step 1 the video feature generation unit 1 acquires parameters for video feature generation stored in the video feature generation parameter storage unit 6 from the video feature generation parameter storage unit 6.
- the video feature generation unit 1 acquires input video of multiple views from the video storage unit 5.
- the video feature generation unit 1 generates video features for the input video of each view using the video feature generation parameters.
- the person feature generation unit 2 obtains the bounding box and ID stored in the person position storage unit 7 from the person position storage unit 7.
- the video feature generation unit 1 transmits the generated video feature map to the person feature generation unit 2.
- the person feature generation unit 2 generates person features by performing a cutout process based on the bounding box and ID for the video features of each view.
- the information integration unit 3 acquires the parameters for information integration stored in the information integration parameter storage unit 8 from the information integration parameter storage unit 8.
- the person feature generation unit 2 transmits the generated person feature map to the information integration unit 3.
- the information integration unit 3 generates a feature map by performing information integration between views using the information integration parameters on the person feature map.
- the prediction generation unit 4 acquires parameters for prediction generation stored in the prediction generation parameter storage unit 9 from the prediction generation parameter storage unit 9.
- the information integration unit 3 transmits the generated feature quantities to the prediction generation unit 4.
- the prediction generation unit 4 generates a prediction using the prediction generation parameters for the feature quantities received from the information integration unit 3.
- the prediction generation unit 4 outputs the generated prediction result.
- parameters are acquired each time processing is performed in the video feature generation unit 1, person feature generation unit 2, information integration unit 3, and prediction generation unit 4, but instead, parameters for each unit may be acquired together in advance.
- Video Feature Generation Unit 1 The operation of the video feature generation unit 1 will be described with reference to the flowchart of FIG.
- the video feature generation unit 1 acquires video feature generation parameters from the video feature generation parameter storage unit 6. When processing multiple videos, it is only necessary to acquire these parameters once, at the beginning.
- the video feature generation unit 1 acquires input video of multiple views from the video storage unit 5.
- the video of each view is acquired as a four-dimensional vector of "number of frames x height x width x RGB".
- the video feature generation unit 1 individually applies video feature generation based on the model parameters to the multiple videos acquired in S102.
- the video feature generation unit 1 transmits the video feature map of the multiple views generated in S103 to the person feature generation unit 2.
- the person feature generation unit 2 obtains, from the person position storage unit 7, the coordinates of the bounding box representing the position of a person in the video of each view, and an ID representing the same person as that person.
- the person feature generation unit 2 acquires video feature maps of multiple views from the video feature generation unit 1.
- the person feature generation unit 2 extracts the bounding box area acquired in S201 from the video feature map acquired in S202, and generates a person feature map for each person by linking the same person by ID.
- the person feature map for one person in each view is acquired as a three-dimensional vector of "height x width x channel.”
- the person feature generation unit 2 outputs the person feature map generated in S203 to the information integration unit 3.
- the information integration unit 3 acquires information integration parameters from the information integration parameter storage unit 8. When processing multiple videos, it is only necessary to acquire these parameters once, at the beginning.
- the information integration unit 3 acquires a person feature map from the person feature generation unit 2.
- the information integration unit 3 performs information integration between views based on model parameters for feature maps of the same ID (same person) out of the multiple person feature maps acquired in S302, and generates features that integrate the information from the multiple views.
- the information integration unit 3 outputs the feature quantities generated in S303 to the prediction generation unit 4.
- the prediction generation unit 4 acquires prediction generation parameters from the prediction generation parameter storage unit 9. When processing multiple videos, it is only necessary to acquire these parameters the first time.
- the prediction generation unit 4 acquires features from the information integration unit 3.
- the prediction generation unit 4 predicts the desired task based on the model parameters for the features acquired in S402. In S404, the prediction generation unit 4 outputs the prediction of S403.
- the information integration unit 3 has a position information addition unit 31 (equivalent to Positional Embedding), a view information addition unit 32 (equivalent to View Embedding), a same view relationship extraction unit 33 (equivalent to Same View Attention), and a different view relationship extraction unit 34 (equivalent to Different View Attention).
- the position information adding unit 31 adds position information parameters to the feature map of each view, thereby adding information about the positional relationship of each pixel in the feature map.
- the view information adding unit 32 adds view information parameters to the feature map of each view, thereby adding information about which view the feature map belongs to.
- the same-view relation extraction unit 33 extracts relations based on similarity only between pixels in the feature maps of each view, for pixels in the feature maps of that view.
- the different-view relation extraction unit 34 extracts relations based on similarity only between pixels in the feature maps of different views, for pixels in the feature maps of each view.
- the information integration unit 3 acquires information integration parameters from the information integration parameter storage unit 8. When processing multiple videos, it is only necessary to acquire these parameters the first time.
- the information integration parameters include position information parameters, view information parameters, same-view relationship extraction parameters, and different-view relationship extraction parameters.
- the information integration unit 3 obtains a person feature map for each view from the person feature generation unit 2.
- the location information addition unit 31 adds the location information parameters to the person feature map for each view acquired in S502, and updates the person feature map for each view.
- the view information addition unit 32 adds the view information parameters to the person feature map for each view acquired in S503, and updates the person feature map for each view.
- the first-layer same-view relationship extraction unit 33 updates the person feature map for each view acquired in S504 based on the model parameters and the relationships between pixels in the feature maps of the same view.
- the first-layer different view relationship extraction unit 34 updates the person feature map for each view acquired in S505 based on the model parameters and the relationships between pixels in the feature maps of different views.
- the information integration unit 3 outputs the Lth layer person feature map to the prediction generation unit 4 as a feature that integrates information from multiple views.
- the second embodiment differs from the first embodiment in the configuration and operation of the information integration unit 3.
- the information integration unit 3 updates the feature map through processing by the same-view relation extraction unit 33, and then further updates the feature map through processing by the different-view relation extraction unit 34.
- the feature map input to the first-layer different-view relation extraction unit 34 does not include information on multiple views. Therefore, the processing by the first-layer same-view relation extraction unit 33 can be considered to be similar to the processing by the video feature generation unit 1 to generate features from video of a single view. Therefore, in the second embodiment, the information integration unit 3 is configured as follows:
- FIG. 10 shows the configuration of the information integration unit 3 in the second embodiment.
- the information integration unit 3 updates the feature map through processing by the different view relationship extraction unit 34, and then further updates the feature map through processing by the same view relationship extraction unit 33.
- the information integration unit 3 acquires information integration parameters from the information integration parameter storage unit 8. When processing multiple videos, these parameters only need to be acquired the first time.
- the information integration parameters include position information parameters, view information parameters, parameters for extracting relationships between different views, and parameters for extracting relationships between identical views.
- the information integration unit 3 obtains a person feature map for each view from the person feature generation unit 2.
- the location information addition unit 31 adds the location information parameters to the person feature map for each view acquired in S602, and updates the person feature map.
- the view information addition unit 32 adds the view information parameters to the person feature map for each view acquired in S603, and updates the person feature map.
- the first-layer different view relationship extraction unit 34 updates the person feature map for each view acquired in S604 based on the model parameters and the relationships between pixels in the feature maps of different views.
- the first-layer same-view relationship extraction unit 33 updates the person feature map for each view acquired in S605 based on the model parameters and the relationships between pixels in the feature maps of the same view.
- the information integration unit 3 outputs the Lth layer person feature map to the prediction generation unit 4 as a feature that integrates information from multiple views.
- the third embodiment differs from the first and second embodiments in the configuration and operation of the information integration unit 3.
- the information integration unit 3 arranges the same view relation extraction unit 33 and the different view relation extraction unit 34 in series, and updates the feature map by alternately repeating the process.
- FIG. 12 shows the configuration of the information integration unit 3 in the third embodiment.
- the information integration unit 3 has a different view relationship extraction unit 33 and an identical view relationship extraction unit 34 arranged in parallel to branch processing.
- the information integration unit 3 acquires information integration parameters from the information integration parameter storage unit 8. When processing multiple videos, these parameters only need to be acquired the first time.
- the information integration parameters include position information parameters, view information parameters, parameters for extracting relationships between different views, and parameters for extracting relationships between identical views.
- the information integration unit 3 obtains a person feature map for each view from the person feature generation unit 2.
- the location information addition unit 31 adds the location information parameters to the person feature map for each view acquired in S702, and updates the person feature map.
- the view information addition unit 32 adds the view information parameters to the person feature map for each view acquired in S703, and updates the person feature map.
- the first-layer different view relationship extraction unit 34 updates the person feature maps for each view acquired in S704 based on the model parameters and the relationships between pixels in the feature maps of different views.
- the first-layer same-view relationship extraction unit 33 updates the person feature map for each view acquired in S704 based on the model parameters and the relationships between pixels in the feature maps of the same view. Note that the processes of S705 and S706 can be performed in parallel.
- the information integration unit 3 combines the person feature maps acquired in S705 and S706 and updates the person feature map. In other words, the information integration unit 3 combines the person feature map updated by the first-layer different view relationship extraction unit 34 with the person feature map updated by the same view relationship extraction unit 33, and updates the person feature map.
- the information integration unit 3 outputs the Lth layer person feature map to the prediction generation unit 4 as a feature amount that integrates information from multiple views.
- the information processing device 100 described in this embodiment can be realized, for example, by causing a computer to execute a program.
- This computer may be a physical computer or a virtual machine on the cloud.
- the information processing device 100 can be realized by using hardware resources such as a CPU and memory built into the computer to execute a program corresponding to the processing performed by the information processing device 100.
- the program can be recorded on a computer-readable recording medium (such as portable memory) and saved or distributed.
- the program can also be provided via a network such as the Internet or email.
- FIG. 14 is a diagram showing an example of the hardware configuration of the computer.
- the computer in FIG. 14 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., all of which are interconnected via a bus B.
- the computer may also be equipped with a GPU.
- the program that realizes processing on the computer is provided by a recording medium 1001, such as a CD-ROM or memory card.
- 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; it can also be downloaded from another computer via a network.
- the auxiliary storage device 1002 stores the installed program as well as necessary files, data, etc.
- the memory device 1003 When an instruction to start a program is received, the memory device 1003 reads and stores the program from the auxiliary storage device 1002.
- the CPU 1004 implements functions related to the information processing device 100 in accordance with the program stored in the memory device 1003.
- the interface device 1005 is used as an interface for connecting to a network, etc.
- the display device 1006 displays a GUI (Graphical User Interface) based on the program, etc.
- the input device 1007 is composed of a keyboard, mouse, buttons, touch panel, etc., and is used to input various operational instructions.
- the output device 1008 outputs the results of calculations.
- the technology described in this embodiment makes it possible to perform recognition processing on a plurality of recognition targets based on images obtained from a plurality of viewpoints.
- Additional Notes> a feature generation unit that generates feature quantities from each of a plurality of recognition target images obtained from a plurality of viewpoints; an information integration unit that performs integration processing on the plurality of feature amounts generated by the feature generation unit.
- the feature generation unit generates a feature map having spatial information as the feature amount.
- the information integration unit in the integration process for the plurality of feature amounts, extracts a relationship between feature amounts from the same viewpoint and a relationship between feature amounts from different viewpoints.
- an information integration unit that performs integration processing on a plurality of feature amounts corresponding to a plurality of viewpoints; The information processing device, wherein the information integration unit performs integration processing on the plurality of feature amounts by distinguishing between extraction of relationships between feature amounts from the same viewpoint and extraction of relationships between feature amounts from different viewpoints.
- An information processing method executed by an information processing device a feature generation step of generating feature quantities from each of a plurality of recognition target images obtained from a plurality of viewpoints; an information integration step of performing integration processing on the plurality of feature quantities generated in the feature generation step.
- the information processing method performs integration processing on the plurality of feature amounts by distinguishing between extraction of relationships between feature amounts from the same viewpoint and extraction of relationships between feature amounts from different viewpoints.
- (Supplementary Note 8) A program for causing a computer to function as the information processing device according to any one of claims 1 to 4.
Landscapes
- Engineering & Computer Science (AREA)
- Computer Vision & Pattern Recognition (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- Image Analysis (AREA)
Abstract
情報処理装置において、複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成部と、前記特徴生成部により生成された複数の特徴量に対して統合処理を行う情報統合部とを備える。
Description
本発明は、映像を用いた認識技術に関連するものである。
近年、畳み込みニューラルネットワーク(Convolutional Neural Network、CNN)(非特許文献1)やTransformer(非特許文献2)などの深層学習技術の発展によって、映像に映っている人間の行動を認識する行動認識タスクの精度が向上している。しかしながら、これらの行動認識技術の多くは一台のカメラの映像のみから行動を認識しているため、障害物や群衆によってオクルージョンが生じるシーンでは精度が低下することが知られている(非特許文献7)。
このオクルージョンの影響を軽減するために、複数のカメラで異なる角度から撮影した複数のビューを同時に用いて行動を認識するマルチビュー行動認識が知られている。マルチビュー行動認識では、部屋の四隅に設置されたカメラのように複数の角度にカメラを設置することでオクルージョンの領域を大きく減らすことができるため、障害物や群衆によってオクルージョンが生じるシーンでも良い精度が得られることが期待できる。
マルチビュー行動認識では、行動の認識に必要な情報が各ビューに点在するため、ビュー間の情報統合が重要である。非特許文献3に開示された技術では、Video Encoderと呼ばれる、一つのビューの映像から特徴を抽出する特徴抽出器を用いて、各ビューに対して別々に埋め込みベクトルを得たのち、複数のビューの埋め込みベクトルからConditional Random Fieldによる重みづけを用いてビュー間の情報統合を行う。
非特許文献4に開示された技術では、同様にしてVideo Encoderによって得られた複数のビューの埋め込みベクトルからSelf-Attention(非特許文献2)と呼ばれる機構からなるTransformerによってビュー間の情報統合を行う。ここでSelf-Attentionは入力系列間の類似度に基づいて特徴量の重みづけ和を算出することで特徴抽出を行う機構である。
J. Carreira, et al., "Quo vadis, action recognition? A new model and the kinetics dataset," in CVPR, 2017.
A. Vaswani, et al., " Attention is all you need," NIPS, 2017.
D. Wang, et al., "Dividing and aggregating network for multi-view action recognition," in ECCV, 2018.
M. Yasuda, et al., "Multi-view and multi-modal event detection utilizing transformer-based multi-sensor fusion," in ICASSP, 2022.
Y. Hou, et al., "Multiview detection with feature perspective transformation," in ECCV, 2020.
S. Ren, et al., "Faster r-cnn: Towards real-time object detection with region proposal networks," in NIPS, 2015.
Q. Kong, et al., "Mmact: A large-scale dataset for cross modal human action understanding," in ICCV, 2019.
マルチビュー行動認識は、オクルージョンが生じるシーンにおいて一つのビューのみを用いる技術に比べて優れた認識精度を示す。しかし、従来のマルチビュー行動認識では、各ビューに対して映像全体を表す一つの埋め込みベクトルを用いてビュー間の情報統合を行っているため、一人の行動又はシーン全体として一つの行動しか認識できず、複数人の行動を同時に認識することができない。なお、このような課題は、認識対象が人物である場合に限らずに生じ得る課題である。
本発明は上記の点に鑑みてなされたものであり、複数の視点から得られた映像に基づいて、複数の認識対象に対する認識処理を行うことを可能とする技術を提供することを目的とする。
開示の技術によれば、複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成部と、
前記特徴生成部により生成された複数の特徴量に対して統合処理を行う情報統合部と
を備える情報処理装置が提供される。
前記特徴生成部により生成された複数の特徴量に対して統合処理を行う情報統合部と
を備える情報処理装置が提供される。
開示の技術によれば、複数の視点から得られた映像に基づいて、複数の認識対象に対する認識処理を行うことを可能とする技術が提供される。
以下、図面を参照して本発明の実施の形態(本実施の形態)を説明する。以下で説明する実施の形態は一例に過ぎず、本発明が適用される実施の形態は、以下の実施の形態に限られるわけではない。
なお、以下の説明では、認識対象を人物としているが、認識対象は人物に限定されない。本発明に係る技術はどのような認識対象にも適用可能である。
また、どのような認識を行うかについても特定のものに限定はない。本発明に係る認識は、行動認識、年齢判定、性別判定、持ち物認識等、分類タスクであればどのようなものでもよい。例えば認識対象の進行方向も、これを分類タスクとすれば推定可能である。
また、本実施の形態における「映像」は画像の集合であるから、「映像」を「画像」と呼んでもよい。
(実施の形態の概要)
本実施の形態における情報処理装置100の構成と動作の概要を説明する。本実施の形態に係る情報処理装置100は、マルチビュー映像から複数人の行動を認識する。すなわち、従来技術では、マルチビューの映像から一つの行動しか認識できなかったが、本実施の形態に係る情報処理装置100は、複数人の行動を認識することが可能である。
本実施の形態における情報処理装置100の構成と動作の概要を説明する。本実施の形態に係る情報処理装置100は、マルチビュー映像から複数人の行動を認識する。すなわち、従来技術では、マルチビューの映像から一つの行動しか認識できなかったが、本実施の形態に係る情報処理装置100は、複数人の行動を認識することが可能である。
より具体的には、情報処理装置100は、マルチビューの映像と映像内の人間の位置を表すバウンディングボックスを用いて複数人の行動を認識することとしている。ここでバウンディングボックスはIDによって同一人物が複数のビューにわたって紐づけられているとする。なお、バウンディングボックスに囲まれる部分の画像(又は特徴マップ)を認識対象画像と呼んでもよい。
図1に、本発明の実施の形態における情報処理装置100の構成例を示す。図1に示すように、情報処理装置100は、映像特徴生成部1、人物特徴生成部2、情報統合部3、及び予測生成部4を有する。本構成を有する情報処理装置100の動作概要を以下で説明する。
まず、映像特徴生成部1(例:Video Encoder)が、各ビューについて、映像全体を表す特徴マップを抽出する。ここで特徴マップとは空間解像度(空間情報)を持つ特徴量であり、映像内の特定の場所の情報が特徴マップ内の対応する場所に含まれている。例えば、特徴マップ内の手の位置には手の情報、足の位置には足の情報が含まれている。
次に、人物特徴生成部2(例:RoIAlign(非特許文献6))が、各ビューについて、映像全体の特徴マップから一人一人の人間の特徴マップを抽出する。人物特徴生成部2として使用する機構の一例であるRoIAlignは、映像内の人間の位置を表すバウンディングボックスの領域を固定サイズで特徴マップから切り出す処理を行う機構である。なお、人物特徴生成部2を特徴生成部と呼んでもよい。また、「映像特徴生成部1と人物特徴生成部2」を特徴生成部と呼んでもよい。
また、人物特徴生成部2の処理はRoIAlignを使用する処理に限定されるわけではなく、特徴マップからバウンディングボックスの領域を切り出せる手段であればどのような手段を使用してもよい。
そして、情報統合部3(例:Transformer)が、各ビューにおける同一人物の特徴マップをもとにビュー間の情報統合を行う。なお、情報統合部3としてTransformerを使用することは一例である。複数ビューの情報を統合できる手段であればどのような手段を使用してもよい。
マルチビュー物体検出(非特許文献5)などの認識対象が複数存在するようなマルチビューの認識タスクにおけるビュー間の情報統合では、空間情報の活用が重要であるが、非特許文献1や非特許文献2のマルチビュー行動認識における従来技術では、空間情報を失った埋め込みベクトルから情報統合を行っているため空間情報の有効活用には至っていない。
そこで、本実施の形態では、従来技術とは異なり、埋め込みベクトルではなく空間情報を持つ特徴マップを用いて情報統合を行うことで、高い精度で認識をすることが期待できる。
また、本実施の形態において情報統合部3として使用する機構の一例であるTransformerは、全てのビューの特徴マップ間で類似度を算出して特徴抽出を行うSelf-Attentionからなる通常のTransformerとは異なり、同一ビューの特徴マップ間でのみ類似度から特徴抽出を行うSame View Attention (SVA)と、異なるビューの特徴マップ間でのみ類似度から特徴抽出を行うDifferent View Attention (DVA)とからなる。
上記の2つの機構(SVA、DVA)によってSelf-Attentionよりも強力なビュー間の情報統合が可能になる。なお、情報統合部3としてSelf-Attentionからなる通常のTransformerを使用することも可能である。
最後に、情報統合部3(Transformer)によって複数のビュー間の情報統合を行って得られた特徴量を予測生成部4(分類器)に入力し、予測生成部4から行動の予測を得る。
なお、情報処理装置100は、「映像特徴生成部1、人物特徴生成部2、情報統合部3、予測生成部4」のうちのいずれか1つ又はいずれか複数を有する装置であってもよい。例えば、映像特徴生成部1、人物特徴生成部2、情報統合部3、予測生成部4がそれぞれ別々の情報処理装置100(つまりコンピュータ)であってもよいし、これら4つの機能部のうちのいずれか複数の機能部を有する装置が情報処理装置100であってもよい。
以下、情報処理装置100のより具体的な実施形態として、第1実施形態~第3実施形態を説明する。
(第1実施形態)
<装置構成、動作>
まず、第1実施形態を説明する。図2は、第1実施形態における情報処理装置100の構成図である。図2に示すように、第1実施形態における情報処理装置100は、映像特徴生成部1、人物特徴生成部2、情報統合部3、予測生成部4、映像格納部5、映像特徴生成用パラメータ格納部6、人物位置格納部7、情報統合用パラメータ格納部8、予測生成用パラメータ格納部9を有する。
<装置構成、動作>
まず、第1実施形態を説明する。図2は、第1実施形態における情報処理装置100の構成図である。図2に示すように、第1実施形態における情報処理装置100は、映像特徴生成部1、人物特徴生成部2、情報統合部3、予測生成部4、映像格納部5、映像特徴生成用パラメータ格納部6、人物位置格納部7、情報統合用パラメータ格納部8、予測生成用パラメータ格納部9を有する。
なお、「映像格納部5、映像特徴生成用パラメータ格納部6、人物位置格納部7、情報統合用パラメータ格納部8、予測生成用パラメータ格納部9」のうちのいずれか1つ、いずれか複数、又は全部が、情報処理装置100の外部に備えられてもよい。
また、図2では、ビューごとに動作を行うことを分かり易く示すために、映像特徴生成部1及び人物特徴生成部2はそれぞれ複数個が示されているが、映像特徴生成部1及び人物特徴生成部2はそれぞれ1個で、複数ビューの処理を行う。なお、映像特徴生成部1及び人物特徴生成部2をそれぞれ、ビューごとに備えてもよい。つまり、映像特徴生成部1及び人物特徴生成部2をそれぞれ、ビューの個数だけ備えてもよい。
図2を参照して情報処理装置100全体の動作を説明する。
映像特徴生成部1(例:Video Encoder)は、映像特徴生成用パラメータ格納部6から映像特徴生成パラメータを取得し、映像格納部5から入力される複数のビューの入力映像に対してパラメータに基づく映像特徴生成を行い、ビューごとに、映像全体を表す特徴マップを生成する。この映像特徴生成用パラメータはニューラルネットワークモデルのパラメータであり、対象とするタスクの学習データを用いた一般的なニューラルネットワークの教師あり学習によって得られる。
人物特徴生成部2(例:RoIAlign)は、人物位置格納部7から入力される、各ビューにおける人間の位置を表すバウンディングボックスと、同一人物を表すIDとに基づいて、映像特徴生成部1が生成した特徴マップから人物特徴マップを切り出し処理によって生成する。
情報統合部3(例:Transoformer)は、情報統合用パラメータ格納部8から情報統合パラメータを取得し、人物特徴生成部2によって得られた同一人物の各ビューの人物特徴マップに対してパラメータに基づく情報統合を行い、複数のビューの情報を統合した特徴マップを生成する。この情報統合用パラメータはニューラルネットワークモデルのパラメータであり、対象とするタスクの学習データを用いた一般的なニューラルネットワークの教師あり学習によって得られる。
予測生成部4は、予測生成用パラメータ格納部9から予測生成パラメータを取得し、情報統合部3が出力した特徴量に対してパラメータに基づく予測を行う。この予測生成用パラメータはニューラルネットワークモデルのパラメータであり、対象とするタスクの学習データを用いた一般的なニューラルネットワークの教師あり学習によって得られる。
<全体処理フロー>
図3は、本実施の形態における情報処理装置100の全体の処理の流れを示すフローチャートである。図3を参照して全体の処理の流れを説明する。
図3は、本実施の形態における情報処理装置100の全体の処理の流れを示すフローチャートである。図3を参照して全体の処理の流れを説明する。
S1(ステップ1)において、映像特徴生成部1が、映像特徴生成用パラメータ格納部6から、映像特徴生成用パラメータ格納部6に格納されている映像特徴生成に対するパラメータを取得する。
S2において、映像特徴生成部1が、映像格納部5から複数のビューの入力映像を取得する。
S3において、映像特徴生成部1は、各ビューの入力映像に対して映像特徴生成パラメータを用いた映像特徴生成を行う。
S4において、人物特徴生成部2は、人物位置格納部7から、人物位置格納部7に格納されているバウンディングボックスとIDとを取得する。
S5において、映像特徴生成部1は、生成した映像特徴マップを人物特徴生成部2に送信する。
S6において、人物特徴生成部2は、各ビューの映像特徴量に対してバウンディングボックスとIDにもとづいた切り出し処理を行うことによって人物特徴生成を行う。
S7において、情報統合部3は、情報統合用パラメータ格納部8に格納されている情報統合に対するパラメータを情報統合用パラメータ格納部8から取得する。
S8において、人物特徴生成部2は、生成した人物特徴マップを情報統合部3に送信する。
S9において、情報統合部3は、人物特徴マップに対して情報統合パラメータを用いたビュー間の情報統合を行うことにより特徴マップを生成する
S10において、予測生成部4は、予測生成用パラメータ格納部9に格納されている予測生成に対するパラメータを予測生成用パラメータ格納部9から取得する。
S10において、予測生成部4は、予測生成用パラメータ格納部9に格納されている予測生成に対するパラメータを予測生成用パラメータ格納部9から取得する。
S11において、情報統合部3は、生成した特徴量を予測生成部4へ送信する。S12において、予測生成部4は、情報統合部3から受信した特徴量に対して予測生成パラメータを用いた予測生成を行う。S13において、予測生成部4は、生成した予測結果を出力する。
なお、上記の処理では、映像特徴生成部1、人物特徴生成部2、情報統合部3、及び予測生成部4における各処理の都度、パラメータを取得しているが、これに代えて、事前に各部のパラメータをまとめて取得しておいてもよい。
以下、情報処理装置100を構成する各部の動作を、フローチャートを参照して詳細に説明する。
<映像特徴生成部1>
図4のフローチャートを参照して映像特徴生成部1の動作を説明する。
図4のフローチャートを参照して映像特徴生成部1の動作を説明する。
S101において、映像特徴生成部1は、映像特徴生成用パラメータ格納部6から映像特徴生成用パラメータを取得する。複数の映像を処理する場合、このパラメータの取得は最初の一回だけ行えばよい。
S102において、映像特徴生成部1は、映像格納部5から複数のビューの入力映像を取得する。ここで各ビューの映像は「フレーム数×高さ×幅×RGB」の4次元ベクトルとして取得される。
S103において、映像特徴生成部1は、S102で取得した複数の映像に対して、モデルパラメータに基づく映像特徴生成を個別に適用する。
S104において、映像特徴生成部1は、S103で生成した複数のビューの映像特徴マップを人物特徴生成部2へ送信する。
<人物特徴生成部2>
続いて、人物特徴生成部2の動作を図5のフローチャートを参照して説明する。
続いて、人物特徴生成部2の動作を図5のフローチャートを参照して説明する。
S201において、人物特徴生成部2は、人物位置格納部7から、各ビューの映像内の人間の位置を表すバウンディングボックスの座標と、当該人物と同一の人物を表すIDとを取得する。
S202において、人物特徴生成部2は、映像特徴生成部1から複数のビューの映像特徴マップを取得する。
S203において、人物特徴生成部2は、S202で取得した映像特徴マップから、S201で取得したバウンディングボックスの領域を切り出し、IDで同一人物を紐づけることで各人物の人物特徴マップを生成する。ここで各ビューにおける一人の人物の人物特徴マップは「高さ×幅×チャネル」の3次元ベクトルとして取得される。
S204において、人物特徴生成部2は、S203で生成した人物特徴マップを情報統合部3へ出力する。
<情報統合部3>
次に、情報統合部3の動作を図6のフローチャートを参照して説明する。
次に、情報統合部3の動作を図6のフローチャートを参照して説明する。
S301において、情報統合部3は、情報統合用パラメータ格納部8から情報統合用パラメータを取得する。複数の映像を処理する場合、このパラメータの取得は最初の一回だけ行えばよい。
S302において、情報統合部3は、人物特徴生成部2から人物特徴マップを取得する。
S303において、情報統合部3は、S302で取得した複数の人物特徴マップのうち、同じID(同一人物)の特徴マップに対して、モデルパラメータに基づくビュー間の情報統合を行い、複数のビューの情報を統合した特徴量を生成する。
S304において、情報統合部3は、S303で生成した特徴量を予測生成部4へ出力する。
<予測生成部4>
次に、予測生成部4の動作を図7のフローチャートを参照して説明する。
次に、予測生成部4の動作を図7のフローチャートを参照して説明する。
S401において、予測生成部4は、予測生成用パラメータ格納部9から予測生成用パラメータを取得する。複数の映像を処理する場合、このパラメータの取得は最初の一回だけ行えばよい。
S402において、予測生成部4は、情報統合部3から特徴量を取得する。
S404において、予測生成部4は、S402で取得した特徴量に対してモデルパラメータに基づく所望のタスクの予測を行う。S404において、予測生成部4は、S403の予測を出力する。
<情報統合部3の詳細>
次に、情報統合部3の詳細について説明する。図8は、情報統合部3の詳細構成図である。
次に、情報統合部3の詳細について説明する。図8は、情報統合部3の詳細構成図である。
図8に示すとおり、情報統合部3は、位置情報付加部31(Positional Embeddingに相当)、ビュー情報付加部32(View Embeddingに相当)、同一ビュー間関係抽出部33(Same View Attentionに相当)、相違ビュー間関係抽出部34(Different View Attentionに相当)を有する。
位置情報付加部31は、位置情報パラメータを各ビューの特徴マップに加算することで、特徴マップ内の各ピクセルの位置関係に関する情報を付加する。ビュー情報付加部32は、ビュー情報パラメータを各ビューの特徴マップに加算することで、特徴マップが、どのビューの特徴マップであるかという情報を付加する。
同一ビュー間関係抽出部33は、各ビューの特徴マップのピクセルに対して、その特徴マップ内のピクセル間でのみ類似度に基づく関係性の抽出を行う。相違ビュー間関係抽出部34は、各ビューの特徴マップのピクセルに対して、異なるビューの特徴マップのピクセル間でのみ類似度に基づく関係性の抽出を行う。
また、情報統合部3は、同一ビュー間関係抽出部33一つと相違ビュー間関係抽出部34一つからなるペアを1層と見なすと、L層(例えばL=4)からなる。また、ここでは、Attentionのような類似度に基づく関係性抽出をもとに説明しているが、ニューラルネットワークを用いた非線形処理であれば他の処理でも構わない。
情報統合部3の詳細動作を図9のフローチャートを参照して説明する。
S501において、情報統合部3は、情報統合用パラメータ格納部8から情報統合用パラメータを取得する。複数の映像を処理する場合、このパラメータの取得は最初の一回だけ行えばよい。情報統合用パラメータには、位置情報パラメータ、ビュー情報パラメータ、同一ビュー間関係抽出パラメータ、相違ビュー間関係抽出パラメータを含む。
S502において、情報統合部3は、人物特徴生成部2から各ビューにおける人物特徴マップを取得する。
S503において、位置情報付加部31は、S502で取得した各ビューの人物特徴マップに対して、位置情報パラメータを加算し、各ビューの人物特徴マップを更新する。
S504において、ビュー情報付加部32は、S503で取得した各ビューの人物特徴マップに対して、ビュー情報パラメータを加算し、各ビューの人物特徴マップを更新する。
S505において、1層目の同一ビュー間関係抽出部33が、S504で取得した各ビューの人物特徴マップに対して、モデルパラメータに基づいて、同じビューの特徴マップのピクセル間の関係性から人物特徴マップを更新する。
S506において、1層目の相違ビュー間関係抽出部34は、S505で取得した各ビューの人物特徴マップに対して、モデルパラメータに基づいて異なるビューの特徴マップのピクセル間の関係性から人物特徴マップを更新する。
S507において、S505、S506の処理を層の数だけ繰り返し、人物特徴マップを更新する。
S508において、情報統合部3は、L層目の人物特徴マップを、複数のビューの情報を統合した特徴量として予測生成部4へ出力する。
(第2実施形態)
続いて第2実施形態を説明する。第2実施形態は、第1実施形態と比べて、情報統合部3の構成・動作が異なる。
続いて第2実施形態を説明する。第2実施形態は、第1実施形態と比べて、情報統合部3の構成・動作が異なる。
第1実施形態では、情報統合部3において、同一ビュー間関係抽出部33の処理によって特徴マップを更新し、次に相違ビュー間関係抽出部34の処理によってさらに特徴マップを更新していた。この場合、一層目の相違ビュー間関係抽出部34に入力される特徴マップには複数のビューの情報が含まれていない。そのため、一層目の同一ビュー間関係抽出部33の処理は、映像特徴生成部1が一つのビューの映像から特徴生成を行う処理と同じようなことを行っているともみなせる。そこで、第2実施形態では、情報統合部3を下記のように構成する。
図10に、第2実施形態における情報統合部3の構成を示す。図10に示すように、第2実施形態では、情報統合部3において、相違ビュー間関係抽出部34の処理によって特徴マップを更新し、次に同一ビュー間関係抽出部33の処理によってさらに特徴マップを更新する。
第2実施形態における情報統合部3の詳細動作を図11のフローチャートを参照して説明する。
S601において、情報統合部3は、情報統合用パラメータ格納部8から情報統合用パラメータを取得する。複数の映像を処理する場合、このパラメータの取得は最初の一回だけ行えばよい。情報統合用パラメータは、位置情報パラメータ、ビュー情報パラメータ、相違ビュー間関係抽出パラメータ、同一ビュー間関係抽出パラメータを含む。
S602において、情報統合部3は、人物特徴生成部2から各ビューにおける人物特徴マップを取得する。
S603において、位置情報付加部31は、S602で取得した各ビューの人物特徴マップに対して、位置情報パラメータを加算し、人物特徴マップを更新する。
S604において、ビュー情報付加部32は、S603で取得した各ビューの人物特徴マップに対して、ビュー情報パラメータを加算し、人物特徴マップを更新する。
S605において、1層目の相違ビュー間関係抽出部34は、S604で取得した各ビューの人物特徴マップに対して、モデルパラメータに基づいて、異なるビューの特徴マップのピクセル間の関係性から人物特徴マップを更新する。
S606において、1層目の同一ビュー間関係抽出部33は、S605で取得した各ビューの人物特徴マップに対して、モデルパラメータに基づいて、同じビューの特徴マップのピクセル間の関係性から人物特徴マップを更新する。
S607において、S605、S606の処理を層の数だけ繰り返し、人物特徴マップを更新する。
S608において、情報統合部3は、L層目の人物特徴マップを、複数のビューの情報を統合した特徴量として予測生成部4へ出力する。
(第3実施形態)
続いて第3実施形態を説明する。第3実施形態は、第1実施形態及び第2実施形態と比べて、情報統合部3の構成・動作が異なる。
続いて第3実施形態を説明する。第3実施形態は、第1実施形態及び第2実施形態と比べて、情報統合部3の構成・動作が異なる。
第1実施形態と第2実施形態では、図8あるいは図10に示したように、情報統合部3で同一ビュー間関係抽出部33と相違ビュー間関係抽出部34を直列に並べ処理を交互に繰り返すことで特徴マップを更新していた。
図12に、第3実施形態における情報統合部3の構成を示す。図12に示すように、第3実施形態では、情報統合部3において、相違ビュー間関係抽出部33と同一ビュー間関係抽出部34を並列に並べ処理を分岐する。
第3実施形態における情報統合部3の詳細動作を図13のフローチャートを参照して説明する。
S701において、情報統合部3は、情報統合用パラメータ格納部8から情報統合用パラメータを取得する。複数の映像を処理する場合、このパラメータの取得は最初の一回だけ行えばよい。情報統合用パラメータは、位置情報パラメータ、ビュー情報パラメータ、相違ビュー間関係抽出パラメータ、同一ビュー間関係抽出パラメータを含む。
S702において、情報統合部3は、人物特徴生成部2から各ビューにおける人物特徴マップを取得する。
S703において、位置情報付加部31は、S702で取得した各ビューの人物特徴マップに対して、位置情報パラメータを加算し、人物特徴マップを更新する。
S704において、ビュー情報付加部32は、S703で取得した各ビューの人物特徴マップに対して、ビュー情報パラメータを加算し、人物特徴マップを更新する。
S705において、1層目の相違ビュー間関係抽出部34は、S704で取得した各ビューの人物特徴マップに対して、モデルパラメータに基づいて、異なるビューの特徴マップのピクセル間の関係性から人物特徴マップを更新する。
S706において、1層目の同一ビュー間関係抽出部33は、S704で取得した各ビューの人物特徴マップに対して、モデルパラメータに基づいて、同じビューの特徴マップのピクセル間の関係性から人物特徴マップを更新する。なお、S705とS706の処理は並行して行うことができる。
S707において、情報統合部3は、S705、S706で取得した人物特徴マップを結合し、人物特徴マップを更新する。すなわち情報統合部3は、1層目の相違ビュー間関係抽出部34で更新した人物特徴マップと同一ビュー間関係抽出部33で更新した人物特徴マップとを結合し人物特徴マップを更新する。
S708において、S705、S706、S707の処理を層の数だけ繰り返し、人物特徴マップを更新する。
S709において、情報統合部3は、L層目の人物特徴マップを複数のビューの情報を統合した特徴量として予測生成部4へ出力する。
(ハードウェア構成例)
本実施の形態で説明した情報処理装置100は、例えば、コンピュータにプログラムを実行させることにより実現できる。このコンピュータは、物理的なコンピュータであってもよいし、クラウド上の仮想マシンであってもよい。
本実施の形態で説明した情報処理装置100は、例えば、コンピュータにプログラムを実行させることにより実現できる。このコンピュータは、物理的なコンピュータであってもよいし、クラウド上の仮想マシンであってもよい。
すなわち、情報処理装置100は、コンピュータに内蔵されるCPUやメモリ等のハードウェア資源を用いて、情報処理装置100で実施される処理に対応するプログラムを実行することによって実現することが可能である。上記プログラムは、コンピュータが読み取り可能な記録媒体(可搬メモリ等)に記録して、保存したり、配布したりすることが可能である。また、上記プログラムをインターネットや電子メール等、ネットワークを通して提供することも可能である。
図14は、上記コンピュータのハードウェア構成例を示す図である。図14のコンピュータは、それぞれバスBで相互に接続されているドライブ装置1000、補助記憶装置1002、メモリ装置1003、CPU1004、インタフェース装置1005、表示装置1006、入力装置1007、出力装置1008等を有する。なお、当該コンピュータは、更にGPUを備えてもよい。
当該コンピュータでの処理を実現するプログラムは、例えば、CD-ROM又はメモリカード等の記録媒体1001によって提供される。プログラムを記憶した記録媒体1001がドライブ装置1000にセットされると、プログラムが記録媒体1001からドライブ装置1000を介して補助記憶装置1002にインストールされる。但し、プログラムのインストールは必ずしも記録媒体1001より行う必要はなく、ネットワークを介して他のコンピュータよりダウンロードするようにしてもよい。補助記憶装置1002は、インストールされたプログラムを格納すると共に、必要なファイルやデータ等を格納する。
メモリ装置1003は、プログラムの起動指示があった場合に、補助記憶装置1002からプログラムを読み出して格納する。CPU1004は、メモリ装置1003に格納されたプログラムに従って、情報処理装置100に係る機能を実現する。インタフェース装置1005は、ネットワーク等に接続するためのインタフェースとして用いられる。表示装置1006はプログラムによるGUI(Graphical User Interface)等を表示する。入力装置1007はキーボード及びマウス、ボタン、又はタッチパネル等で構成され、様々な操作指示を入力させるために用いられる。出力装置1008は演算結果を出力する。
(実施の形態のまとめ、効果等)
以上説明したとおり、本実施の形態で説明した技術により、複数の視点から得られた映像に基づいて、複数の認識対象に対する認識処理を行うことが可能となる。
以上説明したとおり、本実施の形態で説明した技術により、複数の視点から得られた映像に基づいて、複数の認識対象に対する認識処理を行うことが可能となる。
以上の実施形態に関し、更に以下の付記を開示する。
<付記>
(付記項1)
複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成部と、
前記特徴生成部により生成された複数の特徴量に対して統合処理を行う情報統合部と
を備える情報処理装置。
(付記項2)
前記特徴生成部は、前記特徴量として、空間情報を持つ特徴マップを生成する
付記項1に記載の情報処理装置。
(付記項3)
前記情報統合部は、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
付記項1に記載の情報処理装置。
(付記項4)
複数の視点に対応する複数の特徴量に対して統合処理を行う情報統合部を備え、
前記情報統合部は、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
情報処理装置。
(付記項5)
情報処理装置が実行する情報処理方法であって、
複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成ステップと、
前記特徴生成ステップにより生成された複数の特徴量に対して統合処理を行う情報統合ステップと
を備える情報処理方法。
(付記項6)
情報処理装置が実行する情報処理方法であって、
複数の視点に対応する複数の特徴量に対して統合処理を行う情報統合ステップを備え、
前記情報統合ステップは、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
情報処理方法。
(付記項7)
コンピュータを、付記項1ないし4のうちいずれか1項に記載の情報処理装置として機能させるためのプログラム。
(付記項8)
コンピュータを、付記項1ないし4のうちいずれか1項に記載の情報処理装置として機能させるためのプログラムを記憶した非一時的記憶媒体。
(付記項1)
複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成部と、
前記特徴生成部により生成された複数の特徴量に対して統合処理を行う情報統合部と
を備える情報処理装置。
(付記項2)
前記特徴生成部は、前記特徴量として、空間情報を持つ特徴マップを生成する
付記項1に記載の情報処理装置。
(付記項3)
前記情報統合部は、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
付記項1に記載の情報処理装置。
(付記項4)
複数の視点に対応する複数の特徴量に対して統合処理を行う情報統合部を備え、
前記情報統合部は、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
情報処理装置。
(付記項5)
情報処理装置が実行する情報処理方法であって、
複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成ステップと、
前記特徴生成ステップにより生成された複数の特徴量に対して統合処理を行う情報統合ステップと
を備える情報処理方法。
(付記項6)
情報処理装置が実行する情報処理方法であって、
複数の視点に対応する複数の特徴量に対して統合処理を行う情報統合ステップを備え、
前記情報統合ステップは、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
情報処理方法。
(付記項7)
コンピュータを、付記項1ないし4のうちいずれか1項に記載の情報処理装置として機能させるためのプログラム。
(付記項8)
コンピュータを、付記項1ないし4のうちいずれか1項に記載の情報処理装置として機能させるためのプログラムを記憶した非一時的記憶媒体。
以上、本実施の形態について説明したが、本発明はかかる特定の実施形態に限定されるものではなく、特許請求の範囲に記載された本発明の要旨の範囲内において、種々の変形・変更が可能である。
1 映像特徴生成部
2 人物特徴生成部
3 情報統合部
4 予測生成部
5 映像格納部
6 映像特徴生成用パラメータ格納部
7 人物位置格納部
8 情報統合用パラメータ格納部
9 予測生成用パラメータ格納部
31 位置情報付加部
32 ビュー情報付加部
33 同一ビュー間関係抽出部
34 相違ビュー間関係抽出部
100 情報処理装置
1000 ドライブ装置
1001 記録媒体
1002 補助記憶装置
1003 メモリ装置
1004 CPU
1005 インタフェース装置
1006 表示装置
1007 入力装置
1008 出力装置
2 人物特徴生成部
3 情報統合部
4 予測生成部
5 映像格納部
6 映像特徴生成用パラメータ格納部
7 人物位置格納部
8 情報統合用パラメータ格納部
9 予測生成用パラメータ格納部
31 位置情報付加部
32 ビュー情報付加部
33 同一ビュー間関係抽出部
34 相違ビュー間関係抽出部
100 情報処理装置
1000 ドライブ装置
1001 記録媒体
1002 補助記憶装置
1003 メモリ装置
1004 CPU
1005 インタフェース装置
1006 表示装置
1007 入力装置
1008 出力装置
Claims (4)
- 複数の視点から得られた複数の認識対象画像のそれぞれから特徴量を生成する特徴生成部と、
前記特徴生成部により生成された複数の特徴量に対して統合処理を行う情報統合部と
を備える情報処理装置。 - 前記特徴生成部は、前記特徴量として、空間情報を持つ特徴マップを生成する
請求項1に記載の情報処理装置。 - 前記情報統合部は、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
請求項1に記載の情報処理装置。 - 複数の視点に対応する複数の特徴量に対して統合処理を行う情報統合部を備え、
前記情報統合部は、前記複数の特徴量に対する統合処理において、同一視点の特徴量における関係性抽出と、異なる視点の特徴量における関係性抽出とを区別して行う
情報処理装置。
Priority Applications (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| PCT/JP2024/019439 WO2025248604A1 (ja) | 2024-05-27 | 2024-05-27 | 情報処理装置 |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| PCT/JP2024/019439 WO2025248604A1 (ja) | 2024-05-27 | 2024-05-27 | 情報処理装置 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2025248604A1 true WO2025248604A1 (ja) | 2025-12-04 |
Family
ID=97869788
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/JP2024/019439 Pending WO2025248604A1 (ja) | 2024-05-27 | 2024-05-27 | 情報処理装置 |
Country Status (1)
| Country | Link |
|---|---|
| WO (1) | WO2025248604A1 (ja) |
Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JP2018181273A (ja) * | 2017-04-21 | 2018-11-15 | キヤノン株式会社 | 画像処理装置及びその方法、プログラム |
| CN113066165A (zh) * | 2021-03-19 | 2021-07-02 | 北京邮电大学 | 多阶段无监督学习的三维重建方法、装置和电子设备 |
| JP2024010528A (ja) * | 2022-07-12 | 2024-01-24 | Toppanホールディングス株式会社 | 特徴マップ生成装置、画像マッチングシステム、特徴マップ生成方法、及びプログラム |
-
2024
- 2024-05-27 WO PCT/JP2024/019439 patent/WO2025248604A1/ja active Pending
Patent Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JP2018181273A (ja) * | 2017-04-21 | 2018-11-15 | キヤノン株式会社 | 画像処理装置及びその方法、プログラム |
| CN113066165A (zh) * | 2021-03-19 | 2021-07-02 | 北京邮电大学 | 多阶段无监督学习的三维重建方法、装置和电子设备 |
| JP2024010528A (ja) * | 2022-07-12 | 2024-01-24 | Toppanホールディングス株式会社 | 特徴マップ生成装置、画像マッチングシステム、特徴マップ生成方法、及びプログラム |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| Mahmoudi et al. | Multi-target tracking using CNN-based features: CNNMTT | |
| Zeng et al. | Joint 3d layout and depth prediction from a single indoor panorama image | |
| EP3510561B1 (en) | Predicting depth from image data using a statistical model | |
| Tokmakov et al. | Learning motion patterns in videos | |
| WO2021249114A1 (zh) | 目标跟踪方法和目标跟踪装置 | |
| Petrović et al. | Stereo vision-based human tracking for robotic follower | |
| CN110472531A (zh) | 视频处理方法、装置、电子设备及存储介质 | |
| Luvizon et al. | Consensus-based optimization for 3D human pose estimation in camera coordinates | |
| EP3204888A1 (en) | Spatial pyramid pooling networks for image processing | |
| Zhao et al. | 3d room layout estimation from a cubemap of panorama image via deep manhattan hough transform | |
| Berral-Soler et al. | RealHePoNet: A robust single-stage ConvNet for head pose estimation in the wild | |
| CN118552826A (zh) | 基于双流注意力的可见光和红外图像目标检测方法及装置 | |
| CN112085842A (zh) | 深度值确定方法及装置、电子设备和存储介质 | |
| WO2023168957A1 (zh) | 姿态确定方法、装置、电子设备、存储介质及程序 | |
| CN116399360A (zh) | 车辆路径规划方法 | |
| CN117677973A (zh) | 旁观者和附着对象移除 | |
| Peng et al. | Rgb-d salient object detection based on cross-modal and cross-level feature fusion | |
| Cai et al. | Disparity and optical flow partitioning using extended Potts priors | |
| Priyadharshini et al. | Identification and Reconstruction of Human Faces into 3D Models Using SSD-Based and Attention Mesh Models in Real-Time | |
| Chen et al. | Scalable indoor novel-view synthesis using drone-captured 360 imagery with 3D gaussian splatting | |
| Chowdhury et al. | Extracting depth information from stereo images using a fast correlation matching algorithm | |
| Feng et al. | Exploring crowd counting methodology by integrating CNN and transformer: performance optimization under weak supervision | |
| Panek et al. | Combining Absolute and Semi-generalized Relative Poses for Visual Localization | |
| Duan et al. | Wide area registration on camera phones for mobile augmented reality applications | |
| Luo et al. | Combining fractal hourglass network and skeleton joints pairwise affinity for multi-person pose estimation |
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: 24941849 Country of ref document: EP Kind code of ref document: A1 |