WO2017079529A1 - Universal correspondence network - Google Patents
Universal correspondence network Download PDFInfo
- Publication number
- WO2017079529A1 WO2017079529A1 PCT/US2016/060479 US2016060479W WO2017079529A1 WO 2017079529 A1 WO2017079529 A1 WO 2017079529A1 US 2016060479 W US2016060479 W US 2016060479W WO 2017079529 A1 WO2017079529 A1 WO 2017079529A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- locations
- points
- features
- negative
- training
- 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.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/045—Combinations of networks
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/0464—Convolutional networks [CNN, ConvNet]
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
- G06N3/09—Supervised learning
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06V—IMAGE OR VIDEO RECOGNITION OR UNDERSTANDING
- G06V10/00—Arrangements for image or video recognition or understanding
- G06V10/40—Extraction of image or video features
- G06V10/44—Local feature extraction by analysis of parts of the pattern, e.g. by detecting edges, contours, loops, corners, strokes or intersections; Connectivity analysis, e.g. of connected components
- G06V10/443—Local feature extraction by analysis of parts of the pattern, e.g. by detecting edges, contours, loops, corners, strokes or intersections; Connectivity analysis, e.g. of connected components by matching or filtering
- G06V10/449—Biologically inspired filters, e.g. difference of Gaussians [DoG] or Gabor filters
- G06V10/451—Biologically inspired filters, e.g. difference of Gaussians [DoG] or Gabor filters with interaction between the filter responses, e.g. cortical complex cells
- G06V10/454—Integrating the filters into a hierarchical structure, e.g. convolutional neural networks [CNN]
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06V—IMAGE OR VIDEO RECOGNITION OR UNDERSTANDING
- G06V20/00—Scenes; Scene-specific elements
- G06V20/60—Type of objects
- G06V20/64—Three-dimensional [3D] objects
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/20—Special algorithmic details
- G06T2207/20081—Training; Learning
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06T—IMAGE DATA PROCESSING OR GENERATION, IN GENERAL
- G06T2207/00—Indexing scheme for image analysis or image enhancement
- G06T2207/20—Special algorithmic details
- G06T2207/20084—Artificial neural networks [ANN]
Definitions
- the present invention relates to image processing and, more particularly, to end-to-end fully convolutional feature learning for geometric and semantic
- CNN convolutional neural network
- intermediate convolution layer features are used as a low dimensional feature.
- intermediate convolution features are not optimized for the visual correspondence task.
- the features are trained for a surrogate objective function (patch similarity), and intermediate features do not necessarily form a metric space conducive to performing visual correspondence.
- the patch similarity is inherently inefficient and slow. Since it is a patch-based method, features have to be extracted again even for the overlapping regions. Also, it requires 0(n 2 ) feed-forward passes to compare each of n patches with n other patches in a different image. Still, the patch-based similarity has been a preferred method for several reasons.
- a system of a convolutional neural network and a training method for visual correspondence is presented.
- the system converts an image to dense features which can be used for various correspondence tasks.
- the feature space generates a metric space wherein distance operation captures visual similarity.
- the system is fully convolutional and can generate features for an arbitrary sized input and allow for efficient feature extraction. Active hard negative mining with metric learning are used to train the network.
- a computer-implemented method for training a convolutional neural network includes extracting coordinates of corresponding points in the first and second locations, identifying positive points in the first and second locations, identifying negative points in the first and second locations, training features that correspond to positive points of the first and second locations to move closer to each other, and training features that correspond to negative points in the first and second locations to move away from each other.
- CNN convolutional neural network
- a system for training a convolutional neural network includes a memory and a processor in communication with the memory, wherein the processor is configured to extract coordinates of corresponding points in the first and second locations, identify positive points in the first and second locations, identify negative points in the first and second locations, train features that correspond to positive points of the first and second locations to move closer to each other, and train features that correspond to negative points in the first and second locations to move away from each other.
- the processor is configured to extract coordinates of corresponding points in the first and second locations, identify positive points in the first and second locations, identify negative points in the first and second locations, train features that correspond to positive points of the first and second locations to move closer to each other, and train features that correspond to negative points in the first and second locations to move away from each other.
- a non-transitory computer-readable storage medium comprising a computer- readable program for training a convolutional neural network (CNN) is presented, wherein the computer-readable program when executed on a computer causes the computer to perform the steps of extracting coordinates of corresponding points in the first and second locations, identifying positive points in the first and second locations, identifying negative points in the first and second locations, training features that correspond to positive points of the first and second locations to move closer to each other, and training features that correspond to negative points in the first and second locations to move away from each other.
- CNN convolutional neural network
- FIG. 1 is a fully convolutional neural network including a series of
- FIG. 2 is a diagram that illustrates corresponding contrastive loss, in accordance with embodiments of the present invention.
- FIG. 3 is a convolutional spatial transformer, in accordance with embodiments of the present invention.
- FIG. 4 is a block/flow diagram of a method for training a convolutional neural network (CNN), in accordance with embodiments of the present invention.
- FIG. 5 is a block diagram of a processing system, in accordance with embodiments of the present invention.
- Correspondence estimation is the workhorse that drives several fundamental problems in computer vision, such as 3D reconstruction, image retrieval or object recognition.
- Applications such as structure from motion or panorama stitching that demand sub-pixel accuracy rely on sparse key point matches using descriptors.
- dense correspondences in the form of stereo disparities, optical flow or dense trajectories are used for applications such as surface reconstruction, tracking, video analysis or stabilization.
- correspondences are sought not between projections of the same 3D point in different images, but between semantic analogs across different instances within a category, such as beaks of different birds or headlights of cars.
- the notion of visual correspondence estimation spans the range from low-level feature matching to high-level object or scene
- CNNs convolutional neural networks
- a Siamese network may take a pair of image patches and generate their similarity as the output.
- Intermediate convolution layer activations from the above CNNs are also usable as generic features.
- the exemplary embodiments present the Universal Correspondence Network (UCN), a CNN-based generic discriminative framework that learns both geometric and semantic visual correspondences. Unlike many previous CNNs for patch similarity, the exemplary embodiments use deep metric learning to directly learn the mapping, or feature, that preserves similarity (either geometric or semantic) for generic correspondences.
- the mapping is, thus, invariant to projective transformations, intra- class shape or appearance variations, or any other variations that are irrelevant to the considered similarity.
- the exemplary embodiments propose a novel correspondence contrastive loss that allows faster training by efficiently sharing computations and effectively encoding neighborhood relations in feature space. At test time,
- the UCN is fully convolutional, allowing efficient generation of dense features.
- the exemplary embodiments propose an on-the-fly active hard-negative mining strategy for faster training.
- the exemplary embodiments propose a novel adaptation of the spatial transformer, called the convolutional spatial transformer, designed to make the features invariant to particular families of transformations. By learning optimal feature spaces that compensate for affine transformations, the convolutional spatial transformer imparts the ability to mimic patch normalization of descriptors.
- the capabilities of UCN are compared to a few important prior approaches. Empirically, the correspondences obtained from the UCN are denser and more accurate than most prior approaches specialized for a particular task.
- the exemplary embodiments propose a novel end-to-end system that optimizes a general correspondence objective, independent of domain, with the following main contributions:
- the system network 100 is a fully convolutional network that consists of a series of convolutions to create feature maps 130 and rectified linear units (ReLU), and a convolutional spatial transformer followed by correspondence contrastive loss.
- the network 100 takes a pair of images 110, 120 and coordinates of corresponding points in these images.
- Features that correspond to the positive points are trained to get closer to each other, and the features that correspond to negative points are trained to move away from each other.
- the network 100 has a convolutional spatial transformer 140 that can normalize patches.
- Visual features form basic building blocks for many computer vision applications. Carefully designed features and kernel methods have influenced many fields such as structure from motion, object recognition and image classification.
- a Siamese network can be used to measure patch similarity.
- a driving dataset is used to train a CNN for patch similarity in recent works, while other works also use a Siamese network for measuring patch similarity for stereo matching.
- CNN pre-trained on ImageNet can be analyzed for visual and semantic correspondence.
- Correspondences are learned in various works across both appearance and a global shape deformation by exploiting relationships in fine-grained datasets.
- the exemplary embodiments of the present invention learn a metric space rather than optimizing for patch similarity, implement a fully convolutional architecture with a correspondence contrastive loss that allows faster training and testing and propose a convolutional spatial transformer for local patch normalization.
- Neural networks are used for learning a mapping where the Euclidean distance in the space preserves semantic distance.
- the loss function for learning similarity metric using Siamese networks can be subsequently formalized.
- a triplet loss was used for fine-grained image ranking, while the triplet loss was also used for face recognition and clustering. Mini-batches can be used for efficiently training the network.
- a CNN is invariant to some types of transformations such as translation and scale due to convolution and pooling layers.
- explicitly handling such invariances in forms of data augmentation or explicit network structure yields higher accuracy in many tasks.
- Recently, a spatial transformer network was proposed to learn how to zoom in, rotate, or apply arbitrary transformations to an object of interest.
- FIG. 2 is a diagram that illustrates corresponding contrastive loss 200, in accordance with embodiments of the present invention.
- a Universal Correspondence Network is trained to directly learn a mapping that preserves similarity instead of relying on surrogate features.
- the fully convolutional nature of the architecture, a novel correspondence contrastive loss for faster training and testing, active hard negative mining, as well as the convolutional spatial transformer that enables patch normalization are presented.
- the exemplary embodiments implement fully convolutional feature learning, which has several benefits.
- the network can reuse some of the activations computed for overlapping regions.
- several thousand correspondences can be trained for each image pair, which provides the network an accurate gradient for faster learning.
- hard negative mining is efficient and straightforward, as discussed subsequently.
- patch-based methods it can be used to extract dense features efficiently from images of arbitrary sizes.
- correspondence contrastive loss a generalization of the contrastive loss is proposed, called correspondence contrastive loss.
- the full correspondence contrastive loss is given by:
- correspondences are sampled from the training set. For instance, for a KITTI dataset, if each laser scan point is used, up to 100k points can be used in a single image pair. However in practice, 3k correspondences are used to limit memory consumption. This allows more accurate gradient computations than traditional contrastive loss, which yields one example per image pair. It is noted that the number of feed forward passes at test time is 0(n) compared to 0(n 2 ) for Siamese network variants. Table 2, reproduced below, summarizes the advantages of a fully convolutional architecture with correspondence contrastive loss.
- the correspondence contrastive loss in Eq. (1) consists of two terms.
- the first term minimizes the distance between positive pairs and the second term pushes negative pairs to be at least margin m away from each other.
- the second term is only active when the distance between the features fi( i) andyv(x ' i) are smaller than the margin m.
- Such boundary defines the metric space, so it is important to find the negatives that violate the constraint and train the network to push the negatives away.
- random negative pairs do not contribute to training since they are generally far from each other in the embedding space.
- mine negative pairs are activated that violate the constraints the most to dramatically speed up training.
- Features are extracted from the first image and find the nearest neighbor in the second image. If the location is far from the ground truth correspondence location, the exemplary embodiments use the pair as a negative.
- the nearest neighbor is computed for all ground truth points on the first image.
- Such mining process is time consuming since it requires 0(mn) comparisons for m and n feature points in the two images, respectively.
- the experiments conducted use a few thousand points for n, with m being all the features on the second image, which is as large as 22000.
- the exemplary embodiments of the present invention use a GPU implementation to speed up the K-NN search and embed it as a Caffe layer to actively mine hard negatives on-the-fly.
- FIG. 3 is a convolutional spatial transformer 300, in accordance with
- CNNs are known to handle some degree of scale and rotation invariances.
- the idea of a spatial transformer layer is used.
- each keypoint in the image can undergo an independent transformation.
- the exemplary embodiments propose a convolutional version to generate the transformed activations, called the convolutional spatial transformer. This is especially important for correspondences across large intra- class shape variations.
- the proposed transformer takes its input from a lower layer and for each feature, applies an independent spatial transformation.
- the transformation parameters are also extracted convolutionally. Since they go through an independent transformation, the transformed activations are placed inside a larger activation without overlap and then go through a successive convolution with the stride to combine the transformed activations independently.
- the stride size has to be equal to the size of the spatial transformer kernel size.
- FIG. 3 illustrates the convolutional spatial transformer module.
- FIG. 4 is a block/flow diagram of a method for training a convolutional neural network (CNN), in accordance with embodiments of the present invention.
- CNN convolutional neural network
- the advantages of the present invention include (i) higher accuracy in feature matching since features in a metric space are directly learned to optimize a visual correspondence objective, (ii) more efficient training by reuse of activations in overlapping regions, (iii) faster training since thousands of correspondences can be trained for every image pair, and (iv) hard negative mining is efficient and
- the key steps that enable advantages for of the present invention are (i) a correspondence contrastive loss layer that directly learns a metric in feature space rather than optimizing a surrogate patch similarity objective, (ii) algorithms for efficient training for the correspondence contrastive loss with hard negative mining for increased accuracy, and (iii) patch normalization that can handle rotation and scaling effects through a fully convolutional spatial transformer.
- Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vision and Learning Center (BVLC) and by community contributors. Caffe is an expressive architecture that encourages application and innovation. Models and optimization are defined by configuration without hard- coding. A user can switch between central processing unit (CPU) and graphics processing unit (GPU) by setting a single flag to train on a GPU machine then deploy to commodity clusters or mobile devices. Caffe is also an extensible code that fosters active
- Caffe can process over 60M images per day with a single NVIDIA K40 GPU (graphics processing unit).
- the exemplary embodiments implement the correspondence contrastive loss layer and the convolutional spatial transformer layer, the K-NN layer and the channel- wise L2 normalization layer.
- the exemplary embodiments did not use a flattening layer nor the fully connected layer to make the network fully convolutional, generating features at every fourth pixel.
- the exemplary embodiments extract features densely using bilinear interpolation to mitigate quantization error.
- a novel deep metric learning approach to visual correspondence estimation is shown to be advantageous over approaches that optimize a surrogate patch similarity objective.
- the exemplary embodiments propose several innovations, such as a correspondence contrastive loss in a fully convolutional architecture, on-the-fly active hard negative mining and a convolutional spatial transformer. These lend capabilities such as more efficient training, accurate gradient computations, faster testing and local patch normalization, which lead to improved speed or accuracy.
- the exemplary embodiments demonstrate in experiments that the features perform better than prior state- of-the-art on both geometric and semantic correspondence tasks, even without using any spatial priors or global optimization.
- Embodiments described herein may be entirely hardware, entirely software or including both hardware and software elements.
- the present invention is implemented in software, which includes but is not limited to firmware, resident software, microcode, etc.
- Embodiments may include a computer program product accessible from a computer-usable or computer-readable medium providing program code for use by or in connection with a computer or any instruction execution system.
- a computer-usable or computer readable medium may include any apparatus that stores, communicates, propagates, or transports the program for use by or in connection with the instruction execution system, apparatus, or device.
- the medium can be magnetic, optical, electronic, electromagnetic, infrared, or semiconductor system (or apparatus or device) or a propagation medium.
- the medium may include a computer-readable storage medium such as a semiconductor or solid state memory, magnetic tape, a removable computer diskette, a random access memory (RAM), a read-only memory (ROM), a rigid magnetic disk and an optical disk, etc.
- Each computer program may be tangibly stored in a machine-readable storage media or device (e.g., program memory or magnetic disk) readable by a general or special purpose programmable computer, for configuring and controlling operation of a computer when the storage media or device is read by the computer to perform the procedures described herein.
- the inventive system may also be considered to be embodied in a computer-readable storage medium, configured with a computer program, where the storage medium so configured causes a computer to operate in a specific and predefined manner to perform the functions described herein.
- a data processing system suitable for storing and/or executing program code may include at least one processor coupled directly or indirectly to memory elements through a system bus.
- the memory elements can include local memory employed during actual execution of the program code, bulk storage, and cache memories which provide temporary storage of at least some program code to reduce the number of times code is retrieved from bulk storage during execution.
- I/O devices including but not limited to keyboards, displays, pointing devices, etc. may be coupled to the system either directly or through intervening I/O controllers.
- Network adapters may also be coupled to the system to enable the data processing system to become coupled to other data processing systems or remote printers or storage devices through intervening private or public networks.
- Modems, cable modem and Ethernet cards are just a few of the currently available types of network adapters.
- the processing system 600 includes at least one processor (CPU) 604 operatively coupled to other components via a system bus 602.
- a display device 662 can be operatively coupled to system bus 602 by display adapter 660.
- processing system 600 may also include other elements (not shown), as readily contemplated by one of skill in the art, as well as omit certain elements.
- various other input devices and/or output devices can be included in processing system 600, depending upon the particular implementation of the same, as readily understood by one of ordinary skill in the art.
- various types of wireless and/or wired input and/or output devices can be used.
- additional processors, controllers, memories, and so forth, in various configurations can also be utilized as readily appreciated by one of ordinary skill in the art.
Landscapes
- Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- Theoretical Computer Science (AREA)
- General Physics & Mathematics (AREA)
- General Health & Medical Sciences (AREA)
- Health & Medical Sciences (AREA)
- Biomedical Technology (AREA)
- Life Sciences & Earth Sciences (AREA)
- Molecular Biology (AREA)
- Evolutionary Computation (AREA)
- Artificial Intelligence (AREA)
- Data Mining & Analysis (AREA)
- Computing Systems (AREA)
- General Engineering & Computer Science (AREA)
- Computational Linguistics (AREA)
- Mathematical Physics (AREA)
- Software Systems (AREA)
- Biophysics (AREA)
- Multimedia (AREA)
- Biodiversity & Conservation Biology (AREA)
- Computer Vision & Pattern Recognition (AREA)
- Image Analysis (AREA)
Abstract
A computer-implemented method for training a convolutional neural network (CNN) is presented. The method includes extracting coordinates of corresponding points in the first and second locations, identifying positive points in the first and second locations, identifying negative points in the first and second locations, training features that correspond to positive points of the first and second locations to move closer to each other, and training features that correspond to negative points in the first and second locations to move away from each other.
Description
UNIVERSAL CORRESPONDENCE NETWORK
RELATED APPLICATION INFORMATION
[001] This application claims priority to Provisional Application No. 62/250,877, filed on November 4, 2015, incorporated herein by reference in its entirety.
BACKGROUND
Technical Field
[002] The present invention relates to image processing and, more particularly, to end-to-end fully convolutional feature learning for geometric and semantic
correspondences, but are not limited to those.
Description of the Related Art
[003] In a visual correspondence problem, one is given a set of images that contain an overlapping 3D region and asked to find the location of the projection of 3D points in all images. This problem arises in some computer vision applications including stereo disparity, structure from motion, panorama stitching, image representation, image retrieval, as well as more complicated tasks such as classification and detection.
[004] To solve the visual correspondence problem, many hand-designed features have been proposed. Recently, with the advent of a powerful convolutional neural network (CNN), many researchers returned to the problem with this new tool. Rather than learning features, CNN can do end-to-end classification of patch similarity.
[005] Once the CNN is trained, intermediate convolution layer features are used as a low dimensional feature. However, intermediate convolution features are not optimized
for the visual correspondence task. The features are trained for a surrogate objective function (patch similarity), and intermediate features do not necessarily form a metric space conducive to performing visual correspondence. In addition, the patch similarity is inherently inefficient and slow. Since it is a patch-based method, features have to be extracted again even for the overlapping regions. Also, it requires 0(n2) feed-forward passes to compare each of n patches with n other patches in a different image. Still, the patch-based similarity has been a preferred method for several reasons. First, since all the benchmarks only require image patch similarity, optimizing the system for patch similarity (classification) would yield better results than learning a metric space (metric learning). Second, since the neural network is good at abstracting fine details, CNN is an appropriate tool for measuring global similarity.
SUMMARY
[006] A system of a convolutional neural network and a training method for visual correspondence is presented. The system converts an image to dense features which can be used for various correspondence tasks. The feature space generates a metric space wherein distance operation captures visual similarity. The system is fully convolutional and can generate features for an arbitrary sized input and allow for efficient feature extraction. Active hard negative mining with metric learning are used to train the network.
[007] A computer-implemented method for training a convolutional neural network (CNN) is presented. The method includes extracting coordinates of corresponding points in the first and second locations, identifying positive points in the first and second
locations, identifying negative points in the first and second locations, training features that correspond to positive points of the first and second locations to move closer to each other, and training features that correspond to negative points in the first and second locations to move away from each other.
[008] A system for training a convolutional neural network (CNN) is presented. The system includes a memory and a processor in communication with the memory, wherein the processor is configured to extract coordinates of corresponding points in the first and second locations, identify positive points in the first and second locations, identify negative points in the first and second locations, train features that correspond to positive points of the first and second locations to move closer to each other, and train features that correspond to negative points in the first and second locations to move away from each other.
[009] A non-transitory computer-readable storage medium comprising a computer- readable program for training a convolutional neural network (CNN) is presented, wherein the computer-readable program when executed on a computer causes the computer to perform the steps of extracting coordinates of corresponding points in the first and second locations, identifying positive points in the first and second locations, identifying negative points in the first and second locations, training features that correspond to positive points of the first and second locations to move closer to each other, and training features that correspond to negative points in the first and second locations to move away from each other.
[0010] These and other features and advantages will become apparent from the following detailed description of illustrative embodiments thereof, which is to be read in connection with the accompanying drawings.
BRIEF DESCRIPTION OF DRAWINGS
[0011] The disclosure will provide details in the following description of preferred embodiments with reference to the following figures wherein:
[0012] FIG. 1 is a fully convolutional neural network including a series of
convolutions and a convolutional spatial transformer, in accordance with embodiments of the present invention;
[0013] FIG. 2 is a diagram that illustrates corresponding contrastive loss, in accordance with embodiments of the present invention;
[0014] FIG. 3 is a convolutional spatial transformer, in accordance with embodiments of the present invention;
[0015] FIG. 4 is a block/flow diagram of a method for training a convolutional neural network (CNN), in accordance with embodiments of the present invention; and
[0016] FIG. 5 is a block diagram of a processing system, in accordance with embodiments of the present invention.
DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS
[0017] Correspondence estimation is the workhorse that drives several fundamental problems in computer vision, such as 3D reconstruction, image retrieval or object recognition. Applications such as structure from motion or panorama stitching that demand sub-pixel accuracy rely on sparse key point matches using descriptors. In other cases, dense correspondences in the form of stereo disparities, optical flow or dense trajectories are used for applications such as surface reconstruction, tracking, video analysis or stabilization. In yet other scenarios, correspondences are sought not between projections of the same 3D point in different images, but between semantic analogs across different instances within a category, such as beaks of different birds or headlights of cars. Thus, in its most general form, the notion of visual correspondence estimation spans the range from low-level feature matching to high-level object or scene
understanding.
[0018] Traditionally, correspondence estimation relies on hand-designed features or domain- specific priors. In recent years, there has been an increasing interest in leveraging the power of convolutional neural networks (CNNs) to estimate visual correspondences. For example, a Siamese network may take a pair of image patches and generate their similarity as the output. Intermediate convolution layer activations from the above CNNs are also usable as generic features.
[0019] However, such intermediate activations are not optimized for the visual correspondence task. Such features are trained for a surrogate objective function (patch similarity) and do not necessarily form a metric space for visual correspondence and thus, any metric operations such as distance does not have explicit interpretation. In addition,
patch similarity is inherently inefficient, since features have to be extracted even for overlapping regions within patches. Further, it requires 0(n2) feed-forward passes to compare each of n patches with n other patches in a different image.
[0020] In contrast, the exemplary embodiments present the Universal Correspondence Network (UCN), a CNN-based generic discriminative framework that learns both geometric and semantic visual correspondences. Unlike many previous CNNs for patch similarity, the exemplary embodiments use deep metric learning to directly learn the mapping, or feature, that preserves similarity (either geometric or semantic) for generic correspondences. The mapping is, thus, invariant to projective transformations, intra- class shape or appearance variations, or any other variations that are irrelevant to the considered similarity. The exemplary embodiments propose a novel correspondence contrastive loss that allows faster training by efficiently sharing computations and effectively encoding neighborhood relations in feature space. At test time,
correspondence reduces to a nearest neighbor search in feature space, which is more efficient than evaluating pairwise patch similarities.
[0021] The UCN is fully convolutional, allowing efficient generation of dense features. The exemplary embodiments propose an on-the-fly active hard-negative mining strategy for faster training. In addition, the exemplary embodiments propose a novel adaptation of the spatial transformer, called the convolutional spatial transformer, designed to make the features invariant to particular families of transformations. By learning optimal feature spaces that compensate for affine transformations, the convolutional spatial transformer imparts the ability to mimic patch normalization of descriptors.
[0022] The capabilities of UCN are compared to a few important prior approaches. Empirically, the correspondences obtained from the UCN are denser and more accurate than most prior approaches specialized for a particular task. This is demonstrated experimentally by showing state-of-the-art performances on sparse SFM (structure from motion) on ΚΓΤΤΙ (Karlsruhe Institute of Technology and Toyota Technological Institute at Chicago), as well as dense geometric or semantic correspondences on both rigid and non-rigid bodies in various other datasets.
[0023] To summarize, the exemplary embodiments propose a novel end-to-end system that optimizes a general correspondence objective, independent of domain, with the following main contributions:
[0024] Deep metric learning with an efficient correspondence contrastive loss for learning a feature representation that matches the correspondence task.
[0025] Fully convolutional network for dense and efficient feature extraction, along with fast active hard negative mining.
[0026] Fully convolutional spatial transformer for patch normalization.
[0027] State-of-the-art correspondences across sparse SFM, dense matching and semantic matching, encompassing rigid bodies, non-rigid bodies and intra-class shape or appearance variations.
[0028] Referring now in detail to the figures in which like numerals represent the same or similar elements and initially to FIG. 1, a fully convolutional neural network including a series of convolutions and a convolutional spatial transformer is shown, in accordance with embodiments of the present invention.
[0029] The system network 100 is a fully convolutional network that consists of a series of convolutions to create feature maps 130 and rectified linear units (ReLU), and a convolutional spatial transformer followed by correspondence contrastive loss. As inputs, the network 100 takes a pair of images 110, 120 and coordinates of corresponding points in these images. Features that correspond to the positive points (from both images 110, 120) are trained to get closer to each other, and the features that correspond to negative points are trained to move away from each other. The network 100 has a convolutional spatial transformer 140 that can normalize patches.
[0030] Visual features form basic building blocks for many computer vision applications. Carefully designed features and kernel methods have influenced many fields such as structure from motion, object recognition and image classification.
[0031] Recently, many CNN-based similarity measures have been proposed. In one example, a Siamese network can be used to measure patch similarity. A driving dataset is used to train a CNN for patch similarity in recent works, while other works also use a Siamese network for measuring patch similarity for stereo matching. CNN pre-trained on ImageNet can be analyzed for visual and semantic correspondence. Correspondences are learned in various works across both appearance and a global shape deformation by exploiting relationships in fine-grained datasets. In contrast, the exemplary embodiments of the present invention learn a metric space rather than optimizing for patch similarity, implement a fully convolutional architecture with a correspondence contrastive loss that allows faster training and testing and propose a convolutional spatial transformer for local patch normalization.
[0032] Neural networks are used for learning a mapping where the Euclidean distance in the space preserves semantic distance. The loss function for learning similarity metric using Siamese networks can be subsequently formalized. Recently, a triplet loss was used for fine-grained image ranking, while the triplet loss was also used for face recognition and clustering. Mini-batches can be used for efficiently training the network.
[0033] A CNN is invariant to some types of transformations such as translation and scale due to convolution and pooling layers. However, explicitly handling such invariances in forms of data augmentation or explicit network structure yields higher accuracy in many tasks. Recently, a spatial transformer network was proposed to learn how to zoom in, rotate, or apply arbitrary transformations to an object of interest.
[0034] Fully connected layers are converted in 1 x 1 convolutional filters to propose a fully convolutional framework for segmentation. Changing a regular CNN to a fully convolutional network for detection leads to speed and accuracy gains. Similar to these works, efficiency of a fully convolutional architecture is gained through reusing activations for overlapping regions. Further, since the number of training instances is much larger than the number of images in a batch, variance in the gradient is reduced, leading to faster training and convergence.
[0035] FIG. 2 is a diagram that illustrates corresponding contrastive loss 200, in accordance with embodiments of the present invention.
[0036] A Universal Correspondence Network (UCN) is trained to directly learn a mapping that preserves similarity instead of relying on surrogate features. The fully convolutional nature of the architecture, a novel correspondence contrastive loss for
faster training and testing, active hard negative mining, as well as the convolutional spatial transformer that enables patch normalization are presented.
[0037] To speed up training and use resources efficiently, the exemplary embodiments implement fully convolutional feature learning, which has several benefits. First, the network can reuse some of the activations computed for overlapping regions. Second, several thousand correspondences can be trained for each image pair, which provides the network an accurate gradient for faster learning. Third, hard negative mining is efficient and straightforward, as discussed subsequently. Fourth, unlike patch-based methods, it can be used to extract dense features efficiently from images of arbitrary sizes.
[0038] During testing, the fully convolutional network is faster as well. Patch similarity based networks require 0(n2) feed forward passes, where n is the number of keypoints in each image, as compared to only 0(n) for our network. It is noted that extracting intermediate layer activations as a surrogate mapping is a comparatively suboptimal choice since those activations are not directly trained on the visual correspondence task.
[0039] Learning a metric space for visual correspondence requires encoding corresponding points (in different views) to be mapped to neighboring points in the feature space. To encode the constraints, a generalization of the contrastive loss is proposed, called correspondence contrastive loss. Let /(x) denote the feature in image / at location x = x, y). The loss function takes features from images / and at coordinates x and x ', respectively (FIG. 2). If the coordinates x and x ' correspond to the same 3D point, the pair is used as a positive pair that are encouraged to be close in feature space, otherwise as a negative pair that are encouraged to be at least margin m apart. Further, s =
0 is denoted for a positive pair and s = 1 is denoted for a negative pair. The full correspondence contrastive loss is given by:
1
[0040] For each image pair, correspondences are sampled from the training set. For instance, for a KITTI dataset, if each laser scan point is used, up to 100k points can be used in a single image pair. However in practice, 3k correspondences are used to limit memory consumption. This allows more accurate gradient computations than traditional contrastive loss, which yields one example per image pair. It is noted that the number of feed forward passes at test time is 0(n) compared to 0(n2) for Siamese network variants. Table 2, reproduced below, summarizes the advantages of a fully convolutional architecture with correspondence contrastive loss.
¾¾ί
i
YrifslcS Ijm
i O(N )
€ * CmtrML Loss :> t 3 < i S )
[0041] The correspondence contrastive loss in Eq. (1) consists of two terms. The first term minimizes the distance between positive pairs and the second term pushes negative pairs to be at least margin m away from each other. Thus, the second term is only active when the distance between the features fi( i) andyv(x ' i) are smaller than the margin m. Such boundary defines the metric space, so it is important to find the negatives that violate the constraint and train the network to push the negatives away. However, random
negative pairs do not contribute to training since they are generally far from each other in the embedding space.
[0042] Instead, mine negative pairs are activated that violate the constraints the most to dramatically speed up training. Features are extracted from the first image and find the nearest neighbor in the second image. If the location is far from the ground truth correspondence location, the exemplary embodiments use the pair as a negative. The nearest neighbor is computed for all ground truth points on the first image. Such mining process is time consuming since it requires 0(mn) comparisons for m and n feature points in the two images, respectively. The experiments conducted use a few thousand points for n, with m being all the features on the second image, which is as large as 22000. The exemplary embodiments of the present invention use a GPU implementation to speed up the K-NN search and embed it as a Caffe layer to actively mine hard negatives on-the-fly.
[0043] FIG. 3 is a convolutional spatial transformer 300, in accordance with
embodiments of the present invention.
[0044] CNNs are known to handle some degree of scale and rotation invariances.
However, handling spatial transformations explicitly using data-augmentation or a special network structure have been shown to be more successful in many tasks. For visual correspondence, finding the right scale and rotation is crucial, which is traditionally achieved through patch normalization. A series of simple convolutions and poolings cannot mimic such complex spatial transformations.
[0045] To mimic patch normalization, the idea of a spatial transformer layer is used. However, instead of a global image transformation, each keypoint in the image can undergo an independent transformation. Thus, the exemplary embodiments propose a
convolutional version to generate the transformed activations, called the convolutional spatial transformer. This is especially important for correspondences across large intra- class shape variations.
[0046] The proposed transformer takes its input from a lower layer and for each feature, applies an independent spatial transformation. The transformation parameters are also extracted convolutionally. Since they go through an independent transformation, the transformed activations are placed inside a larger activation without overlap and then go through a successive convolution with the stride to combine the transformed activations independently. The stride size has to be equal to the size of the spatial transformer kernel size. FIG. 3 illustrates the convolutional spatial transformer module.
[0047] FIG. 4 is a block/flow diagram of a method for training a convolutional neural network (CNN), in accordance with embodiments of the present invention.
[0048] At block 410, coordinates of corresponding points in the first and second locations are extracted.
[0049] At block 420, positive points in the first and second locations are identified.
[0050] At block 430, negative points in the first and second locations are identified.
[0051] At block 440, features that correspond to positive points of the first and second locations are trained to move closer to each other.
[0052] At block 450, features that correspond to negative points in the first and second locations are trained to move away from each other.
[0053] The advantages of the present invention include (i) higher accuracy in feature matching since features in a metric space are directly learned to optimize a visual correspondence objective, (ii) more efficient training by reuse of activations in
overlapping regions, (iii) faster training since thousands of correspondences can be trained for every image pair, and (iv) hard negative mining is efficient and
straightforward, which leads to higher accuracy. The key steps that enable advantages for of the present invention are (i) a correspondence contrastive loss layer that directly learns a metric in feature space rather than optimizing a surrogate patch similarity objective, (ii) algorithms for efficient training for the correspondence contrastive loss with hard negative mining for increased accuracy, and (iii) patch normalization that can handle rotation and scaling effects through a fully convolutional spatial transformer.
[0054] In experiments, a Caffe package for neural network optimization was used. Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vision and Learning Center (BVLC) and by community contributors. Caffe is an expressive architecture that encourages application and innovation. Models and optimization are defined by configuration without hard- coding. A user can switch between central processing unit (CPU) and graphics processing unit (GPU) by setting a single flag to train on a GPU machine then deploy to commodity clusters or mobile devices. Caffe is also an extensible code that fosters active
development. Additionally, speed makes Caffe great for research experiments and industry deployment. Caffe can process over 60M images per day with a single NVIDIA K40 GPU (graphics processing unit).
[0055] Since Caffe does not support the new layers proposed herein, the exemplary embodiments implement the correspondence contrastive loss layer and the convolutional spatial transformer layer, the K-NN layer and the channel- wise L2 normalization layer. The exemplary embodiments did not use a flattening layer nor the fully connected layer
to make the network fully convolutional, generating features at every fourth pixel. For accurate localization, the exemplary embodiments extract features densely using bilinear interpolation to mitigate quantization error.
[0056] In conclusion, a novel deep metric learning approach to visual correspondence estimation is shown to be advantageous over approaches that optimize a surrogate patch similarity objective. The exemplary embodiments propose several innovations, such as a correspondence contrastive loss in a fully convolutional architecture, on-the-fly active hard negative mining and a convolutional spatial transformer. These lend capabilities such as more efficient training, accurate gradient computations, faster testing and local patch normalization, which lead to improved speed or accuracy. The exemplary embodiments demonstrate in experiments that the features perform better than prior state- of-the-art on both geometric and semantic correspondence tasks, even without using any spatial priors or global optimization.
[0057] Embodiments described herein may be entirely hardware, entirely software or including both hardware and software elements. In a preferred embodiment, the present invention is implemented in software, which includes but is not limited to firmware, resident software, microcode, etc.
[0058] Embodiments may include a computer program product accessible from a computer-usable or computer-readable medium providing program code for use by or in connection with a computer or any instruction execution system. A computer-usable or computer readable medium may include any apparatus that stores, communicates, propagates, or transports the program for use by or in connection with the instruction execution system, apparatus, or device. The medium can be magnetic, optical, electronic,
electromagnetic, infrared, or semiconductor system (or apparatus or device) or a propagation medium. The medium may include a computer-readable storage medium such as a semiconductor or solid state memory, magnetic tape, a removable computer diskette, a random access memory (RAM), a read-only memory (ROM), a rigid magnetic disk and an optical disk, etc.
[0059] Each computer program may be tangibly stored in a machine-readable storage media or device (e.g., program memory or magnetic disk) readable by a general or special purpose programmable computer, for configuring and controlling operation of a computer when the storage media or device is read by the computer to perform the procedures described herein. The inventive system may also be considered to be embodied in a computer-readable storage medium, configured with a computer program, where the storage medium so configured causes a computer to operate in a specific and predefined manner to perform the functions described herein.
[0060] A data processing system suitable for storing and/or executing program code may include at least one processor coupled directly or indirectly to memory elements through a system bus. The memory elements can include local memory employed during actual execution of the program code, bulk storage, and cache memories which provide temporary storage of at least some program code to reduce the number of times code is retrieved from bulk storage during execution. Input/output or I/O devices (including but not limited to keyboards, displays, pointing devices, etc.) may be coupled to the system either directly or through intervening I/O controllers.
[0061] Network adapters may also be coupled to the system to enable the data processing system to become coupled to other data processing systems or remote printers
or storage devices through intervening private or public networks. Modems, cable modem and Ethernet cards are just a few of the currently available types of network adapters.
[0062] Referring now to FIG. 5, an exemplary processing system 600 is shown. The processing system 600 includes at least one processor (CPU) 604 operatively coupled to other components via a system bus 602. A cache 606, a Read Only Memory (ROM) 608, a Random Access Memory (RAM) 610, an input/output (I/O) adapter 620, a network adapter 640, a user interface adapter 650, and a display adapter 660, are operatively coupled to the system bus 602. A display device 662 can be operatively coupled to system bus 602 by display adapter 660.
[0063] Of course, the processing system 600 may also include other elements (not shown), as readily contemplated by one of skill in the art, as well as omit certain elements. For example, various other input devices and/or output devices can be included in processing system 600, depending upon the particular implementation of the same, as readily understood by one of ordinary skill in the art. For example, various types of wireless and/or wired input and/or output devices can be used. Moreover, additional processors, controllers, memories, and so forth, in various configurations can also be utilized as readily appreciated by one of ordinary skill in the art. These and other variations of the processing system 600 are readily contemplated by one of ordinary skill in the art given the teachings of the present principles provided herein.
[0064] The foregoing is to be understood as being in every respect illustrative and exemplary, but not restrictive, and the scope of the invention disclosed herein is not to be determined from the Detailed Description, but rather from the claims as interpreted
according to the full breadth permitted by the patent laws. It is to be understood that the embodiments shown and described herein are only illustrative of the principles of the present invention and that those skilled in the art may implement various modifications without departing from the scope and spirit of the invention. Those skilled in the art could implement various other feature combinations without departing from the scope and spirit of the invention. Having thus described aspects of the invention, with the details and particularity required by the patent laws, what is claimed and desired protected by Letters Patent is set forth in the appended claims.
Claims
1. A computer-implemented method for training a convolutional neural network (CNN), the method comprising:
extracting coordinates of corresponding points in first and second locations; identifying positive points in the first and second locations;
identifying negative points in the first and second locations;
training features that correspond to positive points of the first and second locations to move closer to each other; and
training features that correspond to negative points in the first and second locations to move away from each other.
2. The method of claim 1, wherein the CNN has a fully convolutional spatial transformer for normalizing patches to handle rotation and scaling.
3. The method of claim 2, wherein the convolutional spatial transformer applies spatial transformations to lower layer activations.
4. The method of claim 1, wherein a contrastive loss layer encodes distances between the features of the first and second locations.
5. The method of claim 1, wherein a contrastive loss layer is trained with hard negative mining and by reusing activations in overlapping regions.
6. The method of claim 5, wherein hard negative pairs are mined that violate constraints.
7. A system for training a convolutional neural network (CNN), the system comprising:
a memory; and
a processor in communication with the memory, wherein the processor is configured to:
extract coordinates of corresponding points in the first and second locations;
identify positive points in the first and second locations; identify negative points in the first and second locations; train features that correspond to positive points of the first and second locations to move closer to each other; and
train features that correspond to negative points in the first and second locations to move away from each other.
8. The system of claim 7, wherein the CNN has a fully convolutional spatial transformer for normalizing patches to handle rotation and scaling.
9. The system of claim 8, wherein the convolutional spatial transformer applies spatial transformations to lower layer activations.
10. The system of claim 7, wherein a contrastive loss layer encodes distances between the features of the first and second locations.
11. The system of claim 7, wherein a contrastive loss layer is trained with hard negative mining and by reusing activations in overlapping regions.
12. The system of claim 11, wherein hard negative pairs are mined that violate constraints.
13. A non-transitory computer-readable storage medium comprising a computer- readable program for training a convolutional neural network (CNN), wherein the computer-readable program when executed on a computer causes the computer to perform the steps of:
extracting coordinates of corresponding points in the first and second locations; identifying positive points in the first and second locations;
identifying negative points in the first and second locations;
training features that correspond to positive points of the first and second locations to move closer to each other; and
training features that correspond to negative points in the first and second locations to move away from each other.
14. The non-transitory computer-readable storage medium of claim 13, wherein the CNN has a fully convolutional spatial transformer for normalizing patches to handle rotation and scaling.
15. The non-transitory computer-readable storage medium of claim 14, wherein the convolutional spatial transformer applies spatial transformations to lower layer activations.
16. The non-transitory computer-readable storage medium of claim 13, wherein a contrastive loss layer encodes distances between the features of the first and second locations.
17. The non-transitory computer-readable storage medium of claim 13, wherein a contrastive loss layer is trained with hard negative mining and by reusing activations in overlapping regions.
18. The non-transitory computer-readable storage medium of claim 17, wherein hard negative pairs are mined that violate constraints.
Priority Applications (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| DE112016004535.2T DE112016004535T5 (en) | 2015-11-04 | 2016-11-04 | Universal Compliance Network |
| JP2018522563A JP2018537766A (en) | 2015-11-04 | 2016-11-04 | Universal network |
Applications Claiming Priority (4)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US201562250877P | 2015-11-04 | 2015-11-04 | |
| US62/250,877 | 2015-11-04 | ||
| US15/342,700 | 2016-11-03 | ||
| US15/342,700 US10115032B2 (en) | 2015-11-04 | 2016-11-03 | Universal correspondence network |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2017079529A1 true WO2017079529A1 (en) | 2017-05-11 |
Family
ID=58635843
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/US2016/060479 Ceased WO2017079529A1 (en) | 2015-11-04 | 2016-11-04 | Universal correspondence network |
Country Status (4)
| Country | Link |
|---|---|
| US (1) | US10115032B2 (en) |
| JP (1) | JP2018537766A (en) |
| DE (1) | DE112016004535T5 (en) |
| WO (1) | WO2017079529A1 (en) |
Cited By (11)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN107316042A (en) * | 2017-07-18 | 2017-11-03 | 盛世贞观(北京)科技有限公司 | A kind of pictorial image search method and device |
| CN107944551A (en) * | 2017-12-15 | 2018-04-20 | 福州大学 | One kind is used for electrowetting display screen defect identification method |
| CN108734773A (en) * | 2018-05-18 | 2018-11-02 | 中国科学院光电研究院 | A kind of three-dimensional rebuilding method and system for mixing picture |
| CN108921926A (en) * | 2018-07-02 | 2018-11-30 | 广州云从信息科技有限公司 | A kind of end-to-end three-dimensional facial reconstruction method based on single image |
| CN109063139A (en) * | 2018-08-03 | 2018-12-21 | 天津大学 | Based on the classification of the threedimensional model of panorama sketch and multichannel CNN and search method |
| CN109496316A (en) * | 2018-07-28 | 2019-03-19 | 合刃科技(深圳)有限公司 | Image recognition system |
| KR20190039383A (en) * | 2017-10-03 | 2019-04-11 | 주식회사 스트라드비젼 | Learning method and device for image segmentation and image segmentation method and device using the same |
| WO2019102797A1 (en) * | 2017-11-21 | 2019-05-31 | 富士フイルム株式会社 | Neural network learning method, learning device, learned model, and program |
| CN110009679A (en) * | 2019-02-28 | 2019-07-12 | 江南大学 | A kind of object localization method based on Analysis On Multi-scale Features convolutional neural networks |
| KR20200040665A (en) * | 2018-10-09 | 2020-04-20 | 네이버 주식회사 | Systems and methods for detecting a point of interest change using a convolutional neural network |
| CN111931937A (en) * | 2020-09-30 | 2020-11-13 | 深圳云天励飞技术股份有限公司 | Gradient updating method, device and system of image processing model |
Families Citing this family (40)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US10565496B2 (en) * | 2016-02-04 | 2020-02-18 | Nec Corporation | Distance metric learning with N-pair loss |
| CN106909625A (en) * | 2017-01-20 | 2017-06-30 | 清华大学 | A kind of image search method and system based on Siamese networks |
| CN110462684B (en) * | 2017-04-10 | 2023-08-01 | 赫尔实验室有限公司 | System, computer readable medium and method for implicit prediction of object movement |
| US10261903B2 (en) | 2017-04-17 | 2019-04-16 | Intel Corporation | Extend GPU/CPU coherency to multi-GPU cores |
| US11164071B2 (en) | 2017-04-18 | 2021-11-02 | Samsung Electronics Co., Ltd. | Method and apparatus for reducing computational complexity of convolutional neural networks |
| US10089556B1 (en) * | 2017-06-12 | 2018-10-02 | Konica Minolta Laboratory U.S.A., Inc. | Self-attention deep neural network for action recognition in surveillance videos |
| US10503978B2 (en) * | 2017-07-14 | 2019-12-10 | Nec Corporation | Spatio-temporal interaction network for learning object interactions |
| CN107562805B (en) * | 2017-08-08 | 2020-04-03 | 浙江大华技术股份有限公司 | A method and device for searching for pictures by picture |
| US10072919B1 (en) | 2017-08-10 | 2018-09-11 | Datacloud International, Inc. | Efficient blast design facilitation systems and methods |
| US10101486B1 (en) | 2017-08-10 | 2018-10-16 | Datacloud International, Inc. | Seismic-while-drilling survey systems and methods |
| US10679075B2 (en) * | 2017-08-31 | 2020-06-09 | Nec Corporation | Dense correspondence estimation with multi-level metric learning and hierarchical matching |
| US10482337B2 (en) * | 2017-09-29 | 2019-11-19 | Infineon Technologies Ag | Accelerating convolutional neural network computation throughput |
| US10395147B2 (en) * | 2017-10-30 | 2019-08-27 | Rakuten, Inc. | Method and apparatus for improved segmentation and recognition of images |
| US10410350B2 (en) | 2017-10-30 | 2019-09-10 | Rakuten, Inc. | Skip architecture neural network machine and method for improved semantic segmentation |
| KR102535411B1 (en) * | 2017-11-16 | 2023-05-23 | 삼성전자주식회사 | Apparatus and method related to metric learning based data classification |
| WO2019147693A1 (en) * | 2018-01-23 | 2019-08-01 | Insurance Services Office, Inc. | Computer vision systems and methods for machine learning using image hallucinations |
| US10697294B2 (en) | 2018-02-17 | 2020-06-30 | Datacloud International, Inc | Vibration while drilling data processing methods |
| US10989828B2 (en) | 2018-02-17 | 2021-04-27 | Datacloud International, Inc. | Vibration while drilling acquisition and processing system |
| US12248877B2 (en) | 2018-05-23 | 2025-03-11 | Movidius Ltd. | Hybrid neural network pruning |
| WO2019231105A1 (en) * | 2018-05-31 | 2019-12-05 | 한국과학기술원 | Method and apparatus for learning deep learning model for ordinal classification problem by using triplet loss function |
| CN108985148B (en) * | 2018-05-31 | 2022-05-03 | 成都通甲优博科技有限责任公司 | Hand key point detection method and device |
| JP6902318B2 (en) * | 2018-08-06 | 2021-07-14 | Kddi株式会社 | A program that replaces the fully connected layer of a neural network with a convolution layer |
| CN110874632B (en) * | 2018-08-31 | 2024-05-03 | 嘉楠明芯(北京)科技有限公司 | Image recognition processing method and device |
| US10318842B1 (en) * | 2018-09-05 | 2019-06-11 | StradVision, Inc. | Learning method, learning device for optimizing parameters of CNN by using multiple video frames and testing method, testing device using the same |
| US11055866B2 (en) * | 2018-10-29 | 2021-07-06 | Samsung Electronics Co., Ltd | System and method for disparity estimation using cameras with different fields of view |
| KR102219561B1 (en) * | 2018-11-23 | 2021-02-23 | 연세대학교 산학협력단 | Unsupervised stereo matching apparatus and method using confidential correspondence consistency |
| CN109840500B (en) * | 2019-01-31 | 2021-07-02 | 深圳市商汤科技有限公司 | Three-dimensional human body posture information detection method and device |
| CN110288089B (en) * | 2019-06-28 | 2021-07-09 | 北京百度网讯科技有限公司 | Method and apparatus for sending information |
| US11003501B2 (en) * | 2019-07-03 | 2021-05-11 | Advanced New Technologies Co., Ltd. | Loading models on nodes having multiple model service frameworks |
| CN111461255B (en) * | 2020-04-20 | 2022-07-05 | 武汉大学 | Siamese network image identification method and system based on interval distribution |
| KR20220166355A (en) | 2020-04-21 | 2022-12-16 | 구글 엘엘씨 | Supervised and Controlled Learning Using Multiple Positive Examples |
| WO2021216310A1 (en) * | 2020-04-21 | 2021-10-28 | Google Llc | Supervised contrastive learning with multiple positive examples |
| CN111524166B (en) * | 2020-04-22 | 2023-06-30 | 北京百度网讯科技有限公司 | Video frame processing method and device |
| US11809988B2 (en) | 2020-06-22 | 2023-11-07 | Mitsubishi Electric Research Laboratories, Inc. | Artificial intelligence system for classification of data based on contrastive learning |
| US12468935B2 (en) | 2020-07-21 | 2025-11-11 | Samsung Electronics Co., Ltd. | Method and apparatus with image correspondence |
| CN112712460B (en) * | 2020-12-09 | 2024-05-24 | 杭州妙绘科技有限公司 | Method, device, electronic device and medium for generating portrait |
| CN116710969B (en) * | 2020-12-22 | 2025-08-05 | 华为技术有限公司 | Apparatus and method for automatic keypoint and description extraction |
| CN112668627A (en) * | 2020-12-24 | 2021-04-16 | 四川大学 | Large-scale image online clustering system and method based on contrast learning |
| US12488238B2 (en) * | 2021-05-21 | 2025-12-02 | Nec Corporation | Information-aware graph contrastive learning |
| CN114170516B (en) * | 2021-12-09 | 2022-09-13 | 清华大学 | Vehicle weight recognition method and device based on roadside perception and electronic equipment |
Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20070055153A1 (en) * | 2005-08-31 | 2007-03-08 | Constantine Simopoulos | Medical diagnostic imaging optimization based on anatomy recognition |
| US20150036920A1 (en) * | 2013-07-31 | 2015-02-05 | Fujitsu Limited | Convolutional-neural-network-based classifier and classifying method and training methods for the same |
| US20150238148A1 (en) * | 2013-10-17 | 2015-08-27 | Siemens Aktiengesellschaft | Method and system for anatomical object detection using marginal space deep neural networks |
Family Cites Families (8)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20030126622A1 (en) * | 2001-12-27 | 2003-07-03 | Koninklijke Philips Electronics N.V. | Method for efficiently storing the trajectory of tracked objects in video |
| US20080043144A1 (en) * | 2006-08-21 | 2008-02-21 | International Business Machines Corporation | Multimodal identification and tracking of speakers in video |
| JP5071900B2 (en) * | 2008-02-28 | 2012-11-14 | 学校法人金沢工業大学 | Image generating apparatus and method |
| US20140019390A1 (en) * | 2012-07-13 | 2014-01-16 | Umami, Co. | Apparatus and method for audio fingerprinting |
| US20170098161A1 (en) * | 2015-10-06 | 2017-04-06 | Evolv Technologies, Inc. | Augmented Machine Decision Making |
| US9710898B2 (en) * | 2015-11-18 | 2017-07-18 | Adobe Systems Incorporated | Image synthesis utilizing an active mask |
| US9881234B2 (en) * | 2015-11-25 | 2018-01-30 | Baidu Usa Llc. | Systems and methods for end-to-end object detection |
| US10565496B2 (en) * | 2016-02-04 | 2020-02-18 | Nec Corporation | Distance metric learning with N-pair loss |
-
2016
- 2016-11-03 US US15/342,700 patent/US10115032B2/en active Active
- 2016-11-04 JP JP2018522563A patent/JP2018537766A/en active Pending
- 2016-11-04 WO PCT/US2016/060479 patent/WO2017079529A1/en not_active Ceased
- 2016-11-04 DE DE112016004535.2T patent/DE112016004535T5/en active Pending
Patent Citations (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20070055153A1 (en) * | 2005-08-31 | 2007-03-08 | Constantine Simopoulos | Medical diagnostic imaging optimization based on anatomy recognition |
| US20150036920A1 (en) * | 2013-07-31 | 2015-02-05 | Fujitsu Limited | Convolutional-neural-network-based classifier and classifying method and training methods for the same |
| US20150238148A1 (en) * | 2013-10-17 | 2015-08-27 | Siemens Aktiengesellschaft | Method and system for anatomical object detection using marginal space deep neural networks |
Non-Patent Citations (2)
| Title |
|---|
| SEAN BELL ET AL.: "Learning visual similarity for product design with convolutional neural networks", JOURNAL OF ACM TRANSACTIONS ON GRAPHICS (TOG)- PROCEEDINGS OF ACM SIGGRAPH 2015, vol. 34, no. 4, August 2015 (2015-08-01), XP055379337, Retrieved from the Internet <URL:http://www.cs.cornell.edu/-kb/publications/SIG15ProductNet.pdf> * |
| SOREN KAAE SONDERBY ET AL.: "Recurrent Spatial Transformer Networks", COMPUTER VISION AND PATTERN RECOGNITION (CS. CV, 17 September 2015 (2015-09-17), XP055381703, Retrieved from the Internet <URL:http://www.cv-foundation.org/openaccess/content_cvpr_2016/papers/ShrivastavT-Training-Region-Based-Object-CVPR-2016-paper.pdf> * |
Cited By (19)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN107316042A (en) * | 2017-07-18 | 2017-11-03 | 盛世贞观(北京)科技有限公司 | A kind of pictorial image search method and device |
| KR102144381B1 (en) | 2017-10-03 | 2020-08-13 | 주식회사 스트라드비젼 | Learning method and device for image segmentation and image segmentation method and device using the same |
| KR20190039383A (en) * | 2017-10-03 | 2019-04-11 | 주식회사 스트라드비젼 | Learning method and device for image segmentation and image segmentation method and device using the same |
| JP2019067403A (en) * | 2017-10-03 | 2019-04-25 | 株式会社ストラドビジョン | Learning method and learning device for image segmentation, and image segmentation method and image segmentation device using the same |
| JP7008081B2 (en) | 2017-11-21 | 2022-01-25 | 富士フイルム株式会社 | Neural network learning methods, learning devices, trained models and programs |
| JPWO2019102797A1 (en) * | 2017-11-21 | 2020-11-19 | 富士フイルム株式会社 | Neural network learning methods, learning devices, trained models and programs |
| WO2019102797A1 (en) * | 2017-11-21 | 2019-05-31 | 富士フイルム株式会社 | Neural network learning method, learning device, learned model, and program |
| CN107944551A (en) * | 2017-12-15 | 2018-04-20 | 福州大学 | One kind is used for electrowetting display screen defect identification method |
| CN108734773A (en) * | 2018-05-18 | 2018-11-02 | 中国科学院光电研究院 | A kind of three-dimensional rebuilding method and system for mixing picture |
| CN108921926B (en) * | 2018-07-02 | 2020-10-09 | 云从科技集团股份有限公司 | End-to-end three-dimensional face reconstruction method based on single image |
| CN108921926A (en) * | 2018-07-02 | 2018-11-30 | 广州云从信息科技有限公司 | A kind of end-to-end three-dimensional facial reconstruction method based on single image |
| CN109496316A (en) * | 2018-07-28 | 2019-03-19 | 合刃科技(深圳)有限公司 | Image recognition system |
| CN109496316B (en) * | 2018-07-28 | 2022-04-01 | 合刃科技(深圳)有限公司 | Image recognition system |
| CN109063139A (en) * | 2018-08-03 | 2018-12-21 | 天津大学 | Based on the classification of the threedimensional model of panorama sketch and multichannel CNN and search method |
| KR20200040665A (en) * | 2018-10-09 | 2020-04-20 | 네이버 주식회사 | Systems and methods for detecting a point of interest change using a convolutional neural network |
| KR102261061B1 (en) | 2018-10-09 | 2021-06-04 | 네이버 주식회사 | Systems and methods for detecting a point of interest change using a convolutional neural network |
| CN110009679A (en) * | 2019-02-28 | 2019-07-12 | 江南大学 | A kind of object localization method based on Analysis On Multi-scale Features convolutional neural networks |
| CN110009679B (en) * | 2019-02-28 | 2022-01-04 | 江南大学 | Target positioning method based on multi-scale feature convolutional neural network |
| CN111931937A (en) * | 2020-09-30 | 2020-11-13 | 深圳云天励飞技术股份有限公司 | Gradient updating method, device and system of image processing model |
Also Published As
| Publication number | Publication date |
|---|---|
| US20170124711A1 (en) | 2017-05-04 |
| US10115032B2 (en) | 2018-10-30 |
| DE112016004535T5 (en) | 2018-06-21 |
| JP2018537766A (en) | 2018-12-20 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US10115032B2 (en) | Universal correspondence network | |
| Hausler et al. | Patch-netvlad: Multi-scale fusion of locally-global descriptors for place recognition | |
| Piccinelli et al. | idisc: Internal discretization for monocular depth estimation | |
| AU2019268184B2 (en) | Precise and robust camera calibration | |
| Choy et al. | Universal correspondence network | |
| US11682166B2 (en) | Fitting 3D primitives to a high-resolution point cloud | |
| Tesema et al. | Point cloud completion: A survey | |
| CN108734210B (en) | An object detection method based on cross-modal multi-scale feature fusion | |
| JP2023533907A (en) | Image processing using self-attention-based neural networks | |
| Laga | A survey on deep learning architectures for image-based depth reconstruction | |
| Khan et al. | A survey of the self supervised learning mechanisms for vision transformers | |
| Yang et al. | Advances and future prospects in building extraction from high-resolution remote sensing images | |
| JP2021510823A (en) | Vehicle position identification | |
| Liao et al. | Multi-scale saliency features fusion model for person re-identification | |
| Zhou et al. | Retrieval and localization with observation constraints | |
| Li et al. | Multi‐scale homography estimation based on dual feature aggregation transformer | |
| CN117523355A (en) | A point cloud generation network method based on adversarial learning framework | |
| CN116244447A (en) | Multimodal map construction, information processing method, device, electronic equipment and medium | |
| Li et al. | SRHEN: stepwise-refining homography estimation network via parsing geometric correspondences in deep latent space | |
| Tan et al. | 3D detection transformer: Set prediction of objects using point clouds | |
| Tang et al. | Efficient multi-scale 3D point cloud registration | |
| KR102905584B1 (en) | Apparatus and method for generating missing mri | |
| Kloepfer et al. | Scenes: Subpixel correspondence estimation with epipolar supervision | |
| Dai et al. | Indoor depth recovery based on deep unfolding with non-local prior | |
| Wei et al. | Attention-enhanced re-activation CAMs for weakly supervised semantic segmentation |
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: 16863031 Country of ref document: EP Kind code of ref document: A1 |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 2018522563 Country of ref document: JP |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 112016004535 Country of ref document: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 16863031 Country of ref document: EP Kind code of ref document: A1 |