This invention relates generally to computer processing algorithms, and more particularly to computer processing algorithms that determine when a particular analysis may be difficult to perform, and therefore preferably spawns a sub-processing routine based upon a determination of the type of difficulty being encountered. Most particularly, the invention relates to the use of such a confusion learning method and apparatus in an environment employing computer vision recognition, one or more sub-processing routines being spawned based upon one or more determined difficult-to-interpret computer vision entities.
Background modeling when performing machine vision processing has traditionally been a difficult problem. Typical background modeling algorithms utilize pixel-based approaches. For example, in (Culibrk, D., Marques, O., Socek, O., Kalva, H., & Furht, B. (2007). Neural Network Approach to Background Modeling for Video Object Segmentation. IEEE Transactions on Neural Networks, 18 (6), 1614-1627), a subnet is used on a per-pixel basis, such that most lighting conditions associated with a particular pixel are encapsulated in that subnet and learned for any such given pixel. This approach, like so many others utilizing an AI-based approach for background, is insufficient and inefficient. Drastic lighting conditions may severely impact such approaches. More importantly, a per-pixel subnet is extremely expensive and is difficult to implement in real-time.
In (Parzen, E. (1962). On the Estimation of a Probability Density Function and the Mode. Annals of Math. Stats., 33, 1065-1076), Parzen shows that if the data is consistent, then Equation 1 is presented as follows.
E|fn(X)−f(X)2|→0 as n→∞ Equation 1
E represents the energy that is associated with a given function f, and this lends itself useful to a special class of neural networks called deep belief nets, in which pairwise layer learning becomes very valuable, and a Gibbs sampling procedure may be used in a classification phase.
When using such systems, an expected classification error for each classification step gets smaller as the datasets employed in training and processing get larger. However, the inventors of the present invention have determined that the error associated with one or more of the classification steps typically reaches a global minimum beyond which improvements are not possible. More importantly, the inventors of the present invention have determined that in practice, such errors are not nearly as negligible as Parzen's work had theorized. The existence of these errors reduces the ability to properly recognize and categorize one or more image features.
Some advanced machine vision processing may employ one or more deep belief networks, Such deep belief networks typically employ restricted Boltzmann Machines (RBMs). A Restricted Boltzmann machine (RBM) is similar to a multilayer perceptron (MLP) in that it consists of binary neurons that communicate with other neurons via synaptic connections of differing weights. These neurons exist either in the visible layer, meaning that their desired state can be set and observed, or in a hidden layer, in which case their desired state is unknown. Also, an RBM differs from a normal Boltzmann machine in that visible-to-visible and hidden-to-hidden synaptic connections are disallowed. An RBM consists of exactly one visible and one hidden layer. These two layers can be further reproduced and stacked to form a deeper network.
The binary state of a typical RBM neuron, i, is represented by si, where si ∈{0,1}. A weight of the synaptic connection between visible neuron i and hidden neuron j is represented by wij. Neurons can also have biases, represented by bi for neuron i. The following conditions are true for synaptic connections in an RBM:
In addition to being binary, the neurons in an RBM are also stochastic, with their probability of being active given by Equation 3:
Multiple layers of RBMs are often utilized, consisting of more than one hidden layer. Given initial data in the visible layer, sometimes comprised of input pixels in applications of computer vision, a greedy learning process that is similar to (Hinton, G., Osindero, S., & Teh, Y. (2006). A fast learning algorithm for deep belief nets. Neural Computation, 18, 1527-1554) may be utilized for an unsupervised learning algorithm (discussed below). Once a first hidden layer is substantially trained (by defining various synaptic connections as described above), a second hidden layer may be trained in a similar manner, treating the first hidden layer as the new visible layer for training purposes. This process can be repeated until the desired number of hidden layers has been trained. Every additional hidden layer can increase the probability that the RBM's visible layer will match the original training data, improving the RBM's generative model.
Visible layer 1110 in
Once all layer-pairs of the RBM are pretrained and fine-tuned (via supervised backpropagation), the RBM theoretically should be able to accurately reconstruct a data vector in the visible layer based on the synaptic connection weights and neuron biases. However, because of the stochastic nature of the neurons in an RBM, some thought needs to be given to data sampling. The trained data vector in an RBM can be sampled through alternating Gibbs sampling. Given a random data vector, weights are iteratively updated between the various layers until equilibrium is reached. Two steps are used for updating each layer. First, in order to update each of the hidden (feature detector) neurons, sj, based on each of the visible neurons, si, each hidden neuron is switched on with a probability as shown in Equation 4.
After the hidden neurons are updated, the visible neurons are then updated based on the new states of the hidden neurons. Each visible neuron, si, is switched on with a probability as shown in Equation 5.
Equations 4 and 5 above define probabilities. The weights and biases in an RBM only determine the likelihood of any particular neuron being activated. Alternating Gibbs sampling is also used in order to observe the RBM's trained data vector, instead of a single pass through the network like in an MLP. The two alternating steps of Gibbs processing in two or more adjacent layers may alternate until the probability of finding the RBM in any particular state stays constant, even if the states of the individual neurons in either layer are changing. An RBM that satisfies this condition is said to have reached “thermal equilibrium”, see (Hinton, Osindero, & Teh, 2006).
Many learning approaches have been suggested for training DBNs. Some approaches focus on discovering structure from input, if the intended purpose involves the classification of 2D and 3D objects. For instance, in (Hinton, Osindero, & Teh, 2006), a DBN is used to discover features and an overall structure in the input. A DBN approaches learning structure and extracting features through a series of layers, in which every two layers are trained independently, in a manner as described above. This allows for an unsupervised learning step that progressively extracts more abstract features, until the penultimate layer of a network (layer before last). A smaller set of preclassified data may then be used under undirected training conditions to assign labels to the training sets and train the network on the classification step. So, the approach is comprised of two fundamental steps (Hinton, Osindero, & Teh, 2006):
For instance, RBMs are used in Hinton's unsupervised learning algorithm digit example (Hinton, Osindero, & Teh, 2006) by taking pixel data as the visible layer and feature detectors as the hidden layer. Every feature detector neuron, j, is connected to every pixel, i, with a certain weight, wij. Each weight is initially zero but is repeatedly updated based on Equation 6.
Δwij=ε(<sisj>data−<sisj>reconstruction) Equation 6
In equation 6, ε is the learning rate constant. The <sisj>data term is how often pixel i and feature detector j are both on in a batch of 100 (for example) training images when the states of the feature detectors have been updated based on training data (pixel states) in the visible layer. Similarly, <sisj>reconstruction is how often pixel i and feature detector j are both on in such an exemplary batch of 100 training images when the pixels in the visible layer have been updated based on the states of the feature detectors in the hidden layer. A similar approach can be used to update the biases bi of visible neurons i as shown in Equation 7.
Δbi=ε(p(si,data=1)−p(si,reconstruction=1))(5) Equation 7
Note that the learning rate constant, ε, need not be the same as the corresponding constant in equation (4). The p(si,data=1) term is the probability of the pixel i being “ON”, or activated, according to the training data, while the p(si,reconstruction=1) term is the probability of the same pixel being on according to the RBM's reconstruction of the image. The biases, like the weights, are also updated every 100 training images, for example. A similar equation may be used for the biases of each hidden unit. Other sets of training images may also be employed.
There are many problems that are associated with the current RBMs. Although such a class of AI algorithms performs very well, and the deep nature of the network can, at times, outperform other implementations, they still lack in some fundamental areas:
Lack of tractability. RBMs are intractable as a solution, explaining the inability of an RBM to completely represent a dataset no matter how clean such a set is in the feature space.
Incapability of learning more complex structures. Although deep topologies have been successfully used, such topologies lack the ability to glean complex relationships that shallower topologies can already have. In the end, RBMs fundamentally lack the complex neuronal model that is associated with biological neural networks.
RBMs don't offer a means for improving the quality of recognition autonomously. RBMs are feature detectors.
No “eureka moment” for RBMs. RBMs don't hit a magical plateau, beyond which the error rate suddenly falls exponentially. Such an ability is innately useful to AI applications. The reason why such a process doesn't exist is because of the RBM's incapability of acquiring and defining new feature classes on its own
RBMs are not monitored in real-time. RBMs don't evolve. The premise of utilizing them is that first an AI is trained, and then it is used.
RBMs do not allow flexibility in training. There is only one mode of training, based on greedy learning.
It would therefore be beneficial to present a method and apparatus for overcoming the drawbacks of the prior art through modification the RBM topology and architecture to address the aforementioned and other drawbacks.
In accordance with one or more embodiments of the present invention, one or more new topologies and new combinations of topologies are presented that are capable of drastically reducing error rates in the acquisition and interpretation of data, and in particular machine vision learning based data, by improving upon the prior art model described above associated with the classical restricted Boltzmann Machines (RBM) that is currently being used in conjunction with currently-implemented deep belief networks. The results presented in accordance with one or more embodiments of the present invention as applied to machine vision preferably comprise one or more novel belief propagation artificial intelligence networks that are highly adept at learning new features and decoupling confusing scenarios. Thus, the decoupling of such confusion scenarios, dubbed confusion learning, presents one or more systems that are capable of understanding and acknowledging confusing scenarios in one or more acquired sets of data. Thus, upon determination of such a confusing scenario, which may be identified in accordance with one or more systems in which an RBM reaches a global minimum with an error rate still being unacceptably high, the system presented in accordance with one or more embodiments of the invention is preferably capable of defining and spawning one or more specialist belief propagation networks, each of whose purpose is to train on and therefore address one or more of the confusing scenarios, preferably allowing a specialized sub-system, represented by a subnetwork, to make an intelligent choice between a substantially smaller set of possible response of output classes, after such classes have effectively been pruned by the main belief propagation network. Thus, in accordance with one or more preferred embodiments of the present invention, a collaborative and competitive approach is presented that borrows very closely the notion of intelligence being a set of neuron modules that are competing with, helping, and collaborating with one another.
Because complimentarity is not violated if the above spawned specialist belief propagation networks are repeatedly used infinitely or even branched infinitely in a number of directions, the inventive Belief Propagation artificial intelligence system will eventually reach an equilibrium state. The pair-wise greedy learning algorithm can therefore be extended to associate various learning topologies, including ones that involve different modules and types of modules. Therefore, in accordance with one or more embodiments of the present invention a modular approach to error minimization may be preferably provided in which a subnet can cascade onto another subnet, and complementary priors are still maintained with respect to a subset in the feature space, while improving the prior model itself since specialist subnets target such priors and are expressly trained to handle them. Complex architectures may be created to support this concept, and thus improve error rates by improving the priors that are associated with various networks.
One or more features discovered by the feature detector neurons can be visualized by plotting the weight of every synaptic connection to all of the pixels in the visible layer. These connections are weighted in such a way that each neuron corresponds to some global or local feature of the training set.
Still other objects and advantages of the invention will in part be obvious and will in part be apparent from the specifications and drawings.
The invention accordingly comprises the several steps and the relation of one or more of such steps with respect to each of the others, and the apparatus embodying features of construction, combinations of elements and arrangement of parts that are adapted to affect such steps, all as exemplified in the following detailed disclosure, and the scope of the invention will be indicated in the claims.
For a more complete understanding of the invention, reference is made to the following description and accompanying drawings, in which:
One or more embodiments of the invention will now be described, making reference to the following drawings in which like reference numbers indicate like structure between the drawings.
Details of one or more preferred embodiments of the invention will now be provided making reference to the following drawings in which like reference numbers denote similar structure. Referring first to
The existence of complimentary priors leads to a reliable reduction in overall error prediction rates, since
where y and x represent neurons from different layers, and the factorial relationships presented are maintained in this approach. The inventive belief propagation artificial intelligence approach in accordance with one or more embodiments of the present invention adaptively improves a global minimum that may be reached with the entire dataset being processed by the main belief propagation network 110 by spawning specialist subnets that can identify and isolate problems, with error rates being orders of magnitude less than they are in the existing state of the art. Employing such a feedback system does not preclude processing to continue in an infinite manner through Gibbs sampling. For an undirected graphical model, the Hammersley-Clifford theorem, see (Hammerseley, J. M., & Clifford, P. (1971). Markov Random Fields on Finite Graphs and Lattices), continues to hold true, such that conditional independencies, given by:
yjyk|x, for j≠k Equation 9
With the model presented in accordance with one or more embodiments of the present invention, the aim is to address the degrees of freedom that are associated with a given classification problem, and in the process, improve the overall accuracy. As is noted above, such inventive processing is performed in accordance with the processing of
Reading in all output labels, and discerning patterns from portions of the output that may not have reached a local minimum (i.e. having a high error probability), one or more potentially confusing patterns may be translated into a new classification or label. Maintaining a conventional network structure allows the network to propagate through conventional, usual, results, based on what has already been trained, while identifying confusing results is sufficient to activate the specialist subnet, via the monitor subnet identifying such confusions. Once the confusing classifications have been identified by the monitor subnet, as noted above with respect to
In a way, confusion learning is therefore the equivalent of developing a new optimal minimum. The main belief propagation network is preferably responsible for finding a first global minimum associated with the entire learning set. Each specialist belief propagation network address errors associated with specialized aspects of the learning set, and hence define new, improved local minima in the feature space that is associated with a subset of the population data. The specialist belief propagation networks may not be suitable for every case, and may not be able to cover every case, but they would enhance the recognition and reconstruction accuracy that is associated with their specializations. By targeting confusion outputs, the monitor belief propagation network mitigates optimization problems, while still allowing the network degrees of freedom, a desired step to prevent the system from being too restrictive.
Learning Background Models Employing the Belief Propagation Artificial Intelligence Network
In accordance with one or more embodiments of the present invention, the above-described processing system may be employed to classify various image background models. An image of the background may be defined a priori and segmented into constituent clusters. Such clusters and their associated data may then be fed into the network. A background model is preferably learned for different lighting conditions, such as daytime, nighttime, and various different lighting sources. Once the labels that are associated with such models are defined, a further expansion is attempted in which a foreground object is evaluated through pixel-wise subtraction. Any background pixels are counted in such an operation. If the pixel-wise operation provides a pixel value below a given threshold, then the pixel is classified as a background pixel and the associated z-value is assigned. If the operation provides a pixel value above a threshold, then a disparity evaluation process, such as that described, for example, in U.S. patent application Ser. Nos. 13/025,038, 13/025,055 and 13/025,070, all to El Dokor et al., each filed Feb. 10, 2011 the entire contents of each being incorporated herein by reference, may be used to evaluate disparity.
In accordance with one or more embodiments of the invention, a volatility index is preferably learned using the modified belief propagation architecture that has been presented above. Such an index allows certain objects to be classified as stationary through a background model that has been learned over a series of frames. Features such as the size and color of the object are used in the training itself. Training may then be performed on different lighting conditions to account for such changes. As lighting changes, features associated with the changes in the color and intensity space are incorporated into the classification process.
Background modeling is very challenging in many computer vision problems. Factors such as ambient lighting changes, cast lighting, cast shadows, variable size, motion, occlusions, and other conditions can drastically change a scene's background model. This can affect algorithms, like stereo imaging, very negatively, in which a background model is necessary to mitigate effects of cast lighting and cast shadows. It can also increase the overall amount of compute power that is required for the algorithm to function properly. Properly isolating the background, while accurately and consistently maintaining it is critical for defining foreground regions of interest.
Therefore, various embodiments of the present invention focus on modeling the background as a series of segments with associated features. Such segments are then learned by the inventive belief propagation AI, where various lighting as well as distortion conditions may be introduced to improve robustness of background object classification. The inventive hierarchical processing system, including one or more spawned specialist subnets and subnets of subnets, may then used for hierarchical scene analysis in which a composite depth map is preferably developed. For cast shadows as well as cast lighting for both background and foreground (object of interest), the primary focus is to highlight a learned combination of color and/or shape constancy of the background. There is a significant amount of work in the literature on modeling cast shadows. When cast, shadows can be represented as a transformation of a pixel's associated color primitives into a space that is invariant to intensity. Values before and after a cast shadow maintain consistency in the color space. For instance, a normalized colorspace is represented by Equation 10.
Where (x,y) represents the location of a pixel and r, g, and b represent the normalized values of the three channels red, green, and blue respectively. The issue of a normalized colorspace lends itself useful in any number of circumstances in which ambient lighting is consistent across the image. To make an image model lighting-invariant, some research focuses on defining lighting models for the image, and then utilizing such lighting models in the analysis of the effect of light on surfaces.
Evidence shows that the HCV color space is more perceptually relevant than other possible color spaces. There is significant evidence that our own visual system is based on HSV or HCV, explaining color constancy. Hue represents the true color that is associated with a pixel (or an object in this case). Saturation (or Chroma if used) represents the total amount of that color, and the value channel represents the actual intensity that is associated with the pixel. Because color is separated into its essentials, the color properties of various pixels remain relatively constant as lighting conditions change. At the very least, this offers a gradual shift in the set of color features that can be used during training. So, provided a consistent image is obtained, the hue, or actual true color that is associated with a pixel should remain constant.
More problems may arise however under various conditions. Specifically, if an imaging sensor is compensating for excess light, a designer may choose to vary HDR settings, effectively “clipping” the upper end of the sensor's response to different color bandwidths. This may have a graying effect in the field-of-view, especially for foreground objects or objects under extreme lighting conditions. Moreover, the lighting model in and of itself may dramatically change, and so the color features that are associated with a given object may not remain the same.
A deep belief network may be trained on defined background segments. Input to the network preferably includes segment features like number of pixels, intensity values, and other statistics, as well as the entire segments. The output of the network is a series of results representing the confidence with which the network has determined a segment to be a background segment. Segments can either be temporally stable or unstable.
As noted above as described in conjunction with
Application to Scene Modeling
A scene is represented in a hierarchical fashion in which objects are classified as either belonging to background, or foreground or a combination of the two. After an initial segmentation step is performed in which a scene is represented through a number of segments, each segment is qualified according to how static or active it is. For instance, a large wall in the FOV that is computed at a large distance is generally part of the background and is probably going to be static. A large object at higher disparity, such as a wall, is also assumed to be stationary. Features such as the size, dimensions and span of a wall offer saliency and aid in the identification of such an object as belonging to the background. While color is another important feature, it is not absolutely necessary to use color as a primary feature. In real-time, once a background model has been defined, further analysis is done on a per-pixel basis to identify whether a pixel belongs to the foreground or background. Accordingly, a volatility index is utilized to influence an object into staying at a given depth, in this case the background, and not be recalculated. This is consistent with scene organization, in the sense that a scene is organized into a series of objects, some of which are very relevant to a background, and some of which are very relevant to a foreground. To manage such a system of features and fluctuating importance, a nonlinear volatility index is used that is associated with various objects. The volatility index, combined with one or more processes as set forth in the above-referenced '038, 055 and '070 applications, allows the inventive system to have a very efficient and crisp representation of various objects, 1) highlighting foreground objects and constantly updating their relevant features, and 2) diminishing the overall impact of background objects by making them less prone to reevaluation and depth estimation.
Referring next to
Once training is completed a pixel can then be classified as belonging to a background segment or not.
A three-dimensional map being analogous to a box of cylindrical containers is apt in this case. Such a representation is shown in
Referring next to
This inventive approach is not similar to known recurrent temporal RBMs (TRBMs), or TRBMs. (See (Sutskever, I., Hinton, G., & Taylor, G. W. (2008). See The Recurrent Temporal Restricted Boltzmann Machine. NIPS (pp. 1601-1608.). MIT Press), for an overview of such a family of RBMs.) A quick look at the topologies TRBMs, vs. the inventive approach justifies the logic behind the inventive approach. More importantly though, a conceptual difference belies this point: In the inventive specialist belief propagation AI, abstract representations are replaced with other representative representations that are still very much as abstract, but more specialized. So, fundamentally, the difference is that instead of going from the specific to the abstract, as is the case with a typical RBM or a typical TRBM, various embodiments of the present invention present the case where a network is migrating from the specific to the specialized. This is accomplished through the modified prior as described above. Another main difference with a typical RBM is that the neurons in this belief propagation network need not be stochastic. The network functions just as well with neurons that function as linear accumulators/gates.
Confusion learning presented in accordance with embodiments of the present invention provides that one or more monitor subnets can supervise the creation and elimination of specialist subnets, whose purpose is to identify and visualize the relationships between the various “confusing classes”, and perform countermeasures to such confusions. The countermeasure of choice is to spawn a specialist network whose purpose it is to eliminate or otherwise address the confusion. This is assuming that the main subnet is providing a coarse estimate, in essence pruning the decision space to a few classes. Once spawned and adequately trained, the specialist subnet can significantly enhance the accuracy of the AI by focusing on the confusing cases, disregarding all other such cases, and classifying the fewer classes at a much lower error rate.
Hence, new subnets can be spawned in a similar fashion for at least two types of cases. First, a new class or combination of classes that is not being identified correctly may be the subject of such a spawned subnet. Additionally, an otherwise undefined case may warrant a monitor subnet to assign to such cases a brand new class in the main subnet, thus generating a new specialized subnet.
Application to Classification of Lighting Conditions
Classifying various lighting conditions is traditionally an extremely difficult problem. If lighting conditions in a field of view are correctly understood by a learning imaging system, the steps involved in scene organization are significantly simplified. However, classifying various lighting conditions is not a trivial task. In fact, most current algorithms are usually either provided as part of an imaging sensor, or as a separate component of an ISP in typical chips. A third alternative is to perform post processing on the data. For a recent review of the state of the art, see (Battiato, Messina, & Castorina, 2009). In any of the above cases, the usual method involves a type of global histogram calculation, involving lightness, chromaticity, or a combination of the above. There exists some work in the literature on the utilization of artificial neural networks or artificial intelligence in general, for modification of camera parameters like autofocus. For instance Canon has a system with a multipoint artificial intelligence unit, see (Adair King, 2011), that chooses the best autofocus points. Canon's implementation is strictly for autofocus, and is applicable for mostly still cameras and would be inappropriate for high frame rate applications. Additionally, the implementation does not modify exposure settings, which is an all together different problem.
In accordance with one or more embodiments of the present invention, a belief propagation AI, described above, is preferably applied to adaptively characterize and modify exposure settings. One example realization of such a system may be accomplished through a combination of lightness and chromaticity, used to train the new AI on three or more different exposure settings, in this particular example, underexposedness, overexposedness, and well-exposedness of an image scene by camera parameters. An example of the resulting belief propagation topology's morphological visualizations is shown in
Once the exposure settings are trained, the network may be used to classify various scene exposure settings. The camera's exposure settings may then be modified, such that the AI is used in a feedback loop to increment or decrement that set of exposure values as is necessary to converge the scene on cases of well exposedness. The belief propagation AI can also modify other settings in addition to, or instead of exposure settings.
An overview of a control mechanism with a feedback loop to perform such processing for adaptively updating exposure settings for better background or other modeling. is presented in
Disparity Decomposition Learning in the Feature Space
Another implementation for the identification of foreground and background pixels is through closer analysis of the disparity decomposition space, as set forth in the noted '038, '055 and '070 applications. The inventive AI is trained to recognize solid clusters or nodes of energy in the disparity space. Such clusters represent regions of very high likelihood in the z-domain. These nodes are then superimposed on segment-based depth estimates, per the noted '038, '055 and '070 applications. This is preferably accomplished with a mixture of isotropic Gaussians, such that every Gaussian is centered around a major nodule of energy, representing the presence of a cluster of pixels in the disparity decomposition domain. To pass the overlap ratio results in disparity decomposition, an overlap ratio may be chosen that is asymmetrical to account for occlusion handling. This is accomplished by setting up thresholds in disparity decomposition that change based on the disparity value under evaluation. One embodiment of this approach can be represented by setting up higher pixel-based disparity decomposition thresholds in the foreground, or higher disparity values, and lower thresholds for disparity evaluations of the background. The result is a smooth representation of the disparity domain. For a given large segment, the absence of such clusters in the disparity domain at various disparities of the foreground can be interpreted as the cluster being a background cluster.
Alternative embodiments employing one or more of the above described embodiments of the invention may include one or more of the following:
A Smart Visible/IR Range Camera Network
A novel smart camera network has been developed for tracking and recognition of objects and gestures of interest over space and time. The nodes of the network preferably operate for both daytime as well as nighttime conditions. Each node may be comprised of two dual-sensor configurations. One dual-sensor may operate at visible range, while another dual sensor of the same node may operate in the infra-red (IR) range. The dual-sensor node may reconstruct depth via a GPU-based (or other appropriate processing system) range/disparity algorithm. A trained artificial intelligence unit, comprised of a belief propagation network, described earlier, may be utilized to determine which node to use for any given observation, as well as which dual sensor to utilize within the same node. For instance, and depending on lighting conditions from various angles, the belief propagation AI may choose the visible range dual sensor on one node and the IR dual-sensor on the other.
The network's performance is superior to other smart camera networks which utilize an AI or a simple trained deep belief network, as well as other networks which are specialized for just one spectrum of light or another. Furthermore, the network's scalability mitigates issues with occlusion, as well as light handling.
Performance of the network may also be enhanced with a GPU implementation that exploits the architecture of a GPU to provide for a massively multi-threaded implementation. A similar implementation can also be accomplished with an APU, with the advantage of exploiting an onboard CPU for the serial components.
Another performance enhancement may be accomplished by adequately modeling the background and producing a reliable, robust model which can be integrated with real-time input from the smart camera network.
Facial Expression Detection and Recognition
A facial expression recognition belief propagation AI has been developed that may incorporate stereo vision as well as a multi-segment belief propagation network. This novel AI may be comprised of two main components: 1) a facial expression recognition subnet provided in accordance with one or more subnets as described above that is preferably trained on various facial expressions, and 2) a monitor subnet that assesses and supervises the performance of the first network, in a manner similar to the overall architecture and network topologies as described above.
Once candidate regions are identified via stereo algorithms, a feature set may be extracted from each of these candidate regions. This feature set preferably constitutes the input to the facial expression recognition system. The output of the facial expression recognition system may be fed into the input of the monitor system. The monitor system is preferably considerably smaller and is tasked with assessing the accuracy of face detection, as part of the output from the facial expression recognition system. The monitor system may thus evaluate whether “face events” are present and have been accurately classified as different expressions. If the results are satisfactory, the monitor system may be trained to release these results as an output of the overall system. In a manner consistent with the above description, the monitor subnet may also spawn other belief propagation AIs to further enhance recognition performance, by creating the aforementioned specialist subnets that are capable of improving accuracy in a small, but confusing set of the data population of facial expressions.
This architecture for facial expression recognition represents a shift towards a more robust and autonomous system. An extra feature may be added to the monitor system to enable it for further classification of other, new, unclassified face events, and “encourage” the facial expression system to collect more data on novel events. The facial expression recognition system has the ability to incorporate more facial expression events into its output. The monitor system enables “curiosity” in the overall system.
Self-Correcting, Emotional, and Curious AI for Facial, Gestural, and Other Recognition Applications
A new belief propagation architecture is presented that may be comprised of three or more types of subnets: 1) a deep belief propagation subnet that is responsible for gesture recognition, and 2) a second type of belief propagation subnet that is responsible for facial expression detection and recognition, and 3) a monitor subnet that manages the first two classes of subnets, and 4) unassigned and untrained subnets, available autonomously to the monitor subnet, to be spawned by the monitor subnet to either create a new class of recognition, or specialist subnet for the existing classes of recognition. The approach is consistent with the above-described system, and therefore follows through logically and mathematically therefrom.
The input layers of the first two subnets may be comprised of facial as well as gesture data. The third subnet has as its input the outputs of the other two subnets.
The entire architecture may build on a stereo or a dense stereo smart grid implementation, incorporating stereo data, along with an extracted feature set that is specific to facial as well as gestural input. The monitor system may access and evaluate events from both subnets.
The monitor system may also assign unlabeled input data to an unassigned subnet. This may occur if the monitor system “takes interest” in a recurring set of unlabeled data that can't be classified as either gestural or facial, by either the main subnets of both, or the associated specialist subnets. In such a case, a reserve subnet may be spawned, activated and trained, and its output events are also accessed and evaluated by the monitor subnet. The reserve subnet still builds upon the overall main network, and preferably utilizes the main network's trained layers as its first few layers before branching into specialist subnets.
By activating a reserve subnet, the AI exhibits artificial curiosity. The inventive reserve subnet activation can be attributed to a series of extracted features that are consistently being analyzed by the monitor subnet. By training such reserve subnets, the AI exhibits artificial emotion, mainly characterized by autonomously training a new subnet with a new set of features. Designers may intervene and craft aspects of new subnets as appropriate, or even prevent the belief propagation network from spawning reserve subnets. Training a new subnet also encompasses an optimization step that identifies the appropriate topology for a new feature set.
It will thus be seen that the objects set forth above, among those made apparent from the preceding description, are efficiently attained and, because certain changes may be made in carrying out the above method and in the construction(s) set forth without departing from the spirit and scope of the invention, it is intended that all matter contained in the above description and shown in the accompanying drawings shall be interpreted as illustrative and not in a limiting sense.
It is also to be understood that this description is intended to cover all of the generic and specific features of the invention herein described and all statements of the scope of the invention which, as a matter of language, might be said to fall there between.
This application is a continuation of U.S. patent application Ser. No. 15/986,898 titled “Method and Apparatus for Spawning Specialist Belief Propagation Networks for Adjusting Exposure Settings”, filed May 23, 2018 to el Dokor et al., which is a continuation of U.S. patent application Ser. No. 14/517,844 titled “Method and Apparatus for Spawning Specialist Belief Propagation Networks for Adjusting Exposure Settings”, filed Oct. 18, 2014 to El Dokor et al., which is a continuation of U.S. patent application Ser. No. 14/145,945 titled “Method and Apparatus for Spawning Specialist Belief Propagations Networks Based Upon Data Classification”, filed Jan. 1, 2014 to El Dokor et al., now U.S. Pat. No. 8,891,859; which is a continuation of U.S. patent application Ser. No. 13/897,470 titled “Method and Apparatus for Spawning Specialist Belief Propagation Networks”, filed May 20, 2013 to El Dokor et al., now U.S. Pat. No. 8,644,599; which is in turn a continuation of U.S. patent application Ser. No. 13/221,903 titled “Method and Apparatus for Confusion Learning”, filed Aug. 31, 2011 to El Dokor et al., now U.S. Pat. No. 8,467,599; which in turn claims the benefit of U.S. Provisional Patent Application Ser. No. 61/379,706 titled “Imaging”, filed Sep. 2, 2010 to El Dokor et al., the entire contents thereof being incorporated herein by reference.
Number | Name | Date | Kind |
---|---|---|---|
5454043 | Freeman | Sep 1995 | A |
5544050 | Abe et al. | Aug 1996 | A |
5581276 | Cipolla et al. | Dec 1996 | A |
5594469 | Freeman et al. | Jan 1997 | A |
5699441 | Sagawa et al. | Dec 1997 | A |
5767842 | Korth | Jun 1998 | A |
5887069 | Sakou et al. | Mar 1999 | A |
5990865 | Gard | Nov 1999 | A |
6002808 | Freeman | Dec 1999 | A |
6035057 | Hoffman | Mar 2000 | A |
6072494 | Nguyen | Jun 2000 | A |
6075895 | Qiao et al. | Jun 2000 | A |
6115482 | Sears et al. | Sep 2000 | A |
6128003 | Smith et al. | Oct 2000 | A |
6141434 | Christian et al. | Oct 2000 | A |
6147678 | Kumar et al. | Nov 2000 | A |
6181343 | Lyons | Jan 2001 | B1 |
6195104 | Lyons | Feb 2001 | B1 |
6204852 | Kumar et al. | Mar 2001 | B1 |
6215890 | Matsuo et al. | Apr 2001 | B1 |
6222465 | Kumar et al. | Apr 2001 | B1 |
6240197 | Christian et al. | May 2001 | B1 |
6240198 | Rehg et al. | May 2001 | B1 |
6252598 | Segen | Jun 2001 | B1 |
6256033 | Nguyen | Jul 2001 | B1 |
6256400 | Takata et al. | Jul 2001 | B1 |
6269172 | Rehg et al. | Jul 2001 | B1 |
6301440 | Bolle | Oct 2001 | B1 |
6323942 | Bamji | Nov 2001 | B1 |
6324453 | Breed et al. | Nov 2001 | B1 |
6360003 | Doi et al. | Mar 2002 | B1 |
6363160 | Bradski et al. | Mar 2002 | B1 |
6377238 | McPheters | Apr 2002 | B1 |
6389182 | Ihara et al. | May 2002 | B1 |
6394557 | Bradski | May 2002 | B2 |
6400830 | Christian et al. | Jun 2002 | B1 |
6434255 | Harakawa | Aug 2002 | B1 |
6442465 | Breed et al. | Aug 2002 | B2 |
6456728 | Doi et al. | Sep 2002 | B1 |
6478432 | Dyner | Nov 2002 | B1 |
6509707 | Yamashita et al. | Jan 2003 | B2 |
6512838 | Rafii et al. | Jan 2003 | B1 |
6526156 | Black et al. | Feb 2003 | B1 |
6553296 | Breed et al. | Apr 2003 | B2 |
6556708 | Christian et al. | Apr 2003 | B1 |
6571193 | Unuma et al. | May 2003 | B1 |
6590605 | Eichenlaub | Jul 2003 | B1 |
6600475 | Gutta et al. | Jul 2003 | B2 |
6608910 | Srinivasa et al. | Aug 2003 | B1 |
6614422 | Rafii et al. | Sep 2003 | B1 |
6624833 | Kumar et al. | Sep 2003 | B1 |
6674877 | Jojic et al. | Jan 2004 | B1 |
6674895 | Rafii et al. | Jan 2004 | B2 |
6678425 | Flores et al. | Jan 2004 | B1 |
6681031 | Cohen et al. | Jan 2004 | B2 |
6683968 | Pavlovic et al. | Jan 2004 | B1 |
6757571 | Toyama | Jun 2004 | B1 |
6766036 | Pryor | Jul 2004 | B1 |
6768486 | Szabo et al. | Jul 2004 | B1 |
6788809 | Grzeszczuk et al. | Sep 2004 | B1 |
6795567 | Cham et al. | Sep 2004 | B1 |
6801637 | Voronka et al. | Oct 2004 | B2 |
6804396 | Higaki et al. | Oct 2004 | B2 |
6829730 | Nadeau-Dostie et al. | Dec 2004 | B2 |
6857746 | Dyner | Feb 2005 | B2 |
6901561 | Kirkpatrick et al. | May 2005 | B1 |
6937742 | Roberts et al. | Aug 2005 | B2 |
6940646 | Taniguchi et al. | Sep 2005 | B2 |
6944315 | Zipperer et al. | Sep 2005 | B1 |
6950534 | Cohen et al. | Sep 2005 | B2 |
6993462 | Pavlovic et al. | Jan 2006 | B1 |
7039676 | Day et al. | May 2006 | B1 |
7046232 | Inagaki et al. | May 2006 | B2 |
7050606 | Paul et al. | May 2006 | B2 |
7050624 | Dialameh et al. | May 2006 | B2 |
7058204 | Hildreth et al. | Jun 2006 | B2 |
7065230 | Yuasa et al. | Jun 2006 | B2 |
7068842 | Liang et al. | Jun 2006 | B2 |
7095401 | Liu et al. | Aug 2006 | B2 |
7102615 | Marks | Sep 2006 | B2 |
7129927 | Mattson | Oct 2006 | B2 |
7170492 | Bell | Jan 2007 | B2 |
7190811 | Ivanov | Mar 2007 | B2 |
7203340 | Gorodnichy | Apr 2007 | B2 |
7212663 | Tomasi | May 2007 | B2 |
7221779 | Kawakami et al. | May 2007 | B2 |
7224830 | Nefian et al. | May 2007 | B2 |
7224851 | Kinjo | May 2007 | B2 |
7233320 | Lapstun et al. | Jun 2007 | B1 |
7236611 | Roberts et al. | Jun 2007 | B2 |
7239718 | Park et al. | Jul 2007 | B2 |
7257237 | Luck et al. | Aug 2007 | B1 |
7274800 | Nefian et al. | Sep 2007 | B2 |
7274803 | Sharma et al. | Sep 2007 | B1 |
7289645 | Yamamoto et al. | Oct 2007 | B2 |
7295709 | Cootes et al. | Nov 2007 | B2 |
7296007 | Funge et al. | Nov 2007 | B1 |
7308112 | Fujimura et al. | Nov 2007 | B2 |
7340077 | Gokturk et al. | Mar 2008 | B2 |
7340078 | Shikano et al. | Mar 2008 | B2 |
7342485 | Joehl et al. | Mar 2008 | B2 |
7346192 | Yuasa et al. | Mar 2008 | B2 |
7348963 | Bell | Mar 2008 | B2 |
7359529 | Lee | Apr 2008 | B2 |
7372977 | Fujimura et al. | May 2008 | B2 |
7379563 | Shamaie | May 2008 | B2 |
7391409 | Zalewski et al. | Jun 2008 | B2 |
7394346 | Bodin | Jul 2008 | B2 |
7412077 | Li et al. | Aug 2008 | B2 |
7415126 | Breed et al. | Aug 2008 | B2 |
7415212 | Matsushita et al. | Aug 2008 | B2 |
7421093 | Hildreth et al. | Sep 2008 | B2 |
7423540 | Kisacanin | Sep 2008 | B2 |
7444001 | Roberts et al. | Oct 2008 | B2 |
7450736 | Yang et al. | Nov 2008 | B2 |
7460690 | Cohen et al. | Dec 2008 | B2 |
7477758 | Piirainen et al. | Jan 2009 | B2 |
7489308 | Blake et al. | Feb 2009 | B2 |
7489806 | Mohri et al. | Feb 2009 | B2 |
7499569 | Sato et al. | Mar 2009 | B2 |
7512262 | Criminisi et al. | Mar 2009 | B2 |
7519223 | Dehlin et al. | Apr 2009 | B2 |
7519537 | Rosenberg | Apr 2009 | B2 |
7574020 | Shamaie | Aug 2009 | B2 |
7590262 | Fujimura et al. | Sep 2009 | B2 |
7593552 | Higaki et al. | Sep 2009 | B2 |
7598942 | Underkoffler et al. | Oct 2009 | B2 |
7599547 | Sun | Oct 2009 | B2 |
7606411 | Venetsky et al. | Oct 2009 | B2 |
7614019 | Rimas Ribikauskas et al. | Nov 2009 | B2 |
7620316 | Boillot | Nov 2009 | B2 |
7646372 | Marks et al. | Jan 2010 | B2 |
7660437 | Breed | Feb 2010 | B2 |
7665041 | Wilson et al. | Feb 2010 | B2 |
7676062 | Breed et al. | Mar 2010 | B2 |
7720282 | Blake et al. | May 2010 | B2 |
7721207 | Nilsson | May 2010 | B2 |
7804998 | Mundermann et al. | Sep 2010 | B2 |
8306931 | Bowman et al. | Nov 2012 | B1 |
20010001182 | Ito et al. | May 2001 | A1 |
20010030642 | Sullivan et al. | Oct 2001 | A1 |
20020041327 | Hildreth et al. | Apr 2002 | A1 |
20020064382 | Hildreth et al. | May 2002 | A1 |
20020090133 | Kim et al. | Jul 2002 | A1 |
20020140633 | Rafii et al. | Oct 2002 | A1 |
20040183775 | Bell | Sep 2004 | A1 |
20050002074 | McPheters et al. | Jan 2005 | A1 |
20050083314 | Shalit et al. | Apr 2005 | A1 |
20050105775 | Luo et al. | May 2005 | A1 |
20050190443 | Nam et al. | Sep 2005 | A1 |
20050286756 | Hong et al. | Dec 2005 | A1 |
20060093186 | Ivanov | May 2006 | A1 |
20060101354 | Hashimoto et al. | May 2006 | A1 |
20060136846 | Im et al. | Jun 2006 | A1 |
20060139314 | Bell | Jun 2006 | A1 |
20060221072 | Se et al. | Oct 2006 | A1 |
20070055427 | Sun et al. | Mar 2007 | A1 |
20070113207 | Gritton | May 2007 | A1 |
20070132721 | Glomski et al. | Jun 2007 | A1 |
20070195997 | Paul et al. | Aug 2007 | A1 |
20070263932 | Bernardin et al. | Nov 2007 | A1 |
20070280505 | Breed | Dec 2007 | A1 |
20080002878 | Meiyappan et al. | Jan 2008 | A1 |
20080005703 | Radivojevic et al. | Jan 2008 | A1 |
20080013793 | Hillis et al. | Jan 2008 | A1 |
20080037875 | Kim et al. | Feb 2008 | A1 |
20080052643 | Ike et al. | Feb 2008 | A1 |
20080059578 | Albertson et al. | Mar 2008 | A1 |
20080065291 | Breed | Mar 2008 | A1 |
20080069415 | Schildkraut et al. | Mar 2008 | A1 |
20080069437 | Baker | Mar 2008 | A1 |
20080104547 | Morita et al. | May 2008 | A1 |
20080107303 | Kim et al. | May 2008 | A1 |
20080120577 | Ma et al. | May 2008 | A1 |
20080178126 | Beeck et al. | Jul 2008 | A1 |
20080181459 | Martin et al. | Jul 2008 | A1 |
20080219501 | Matsumoto | Sep 2008 | A1 |
20080219502 | Shamaie | Sep 2008 | A1 |
20080225041 | El Dokor et al. | Sep 2008 | A1 |
20080229255 | Linjama et al. | Sep 2008 | A1 |
20080240502 | Freedman et al. | Oct 2008 | A1 |
20080244465 | Kongqiao et al. | Oct 2008 | A1 |
20080244468 | Nishihara et al. | Oct 2008 | A1 |
20080267449 | Dumas et al. | Oct 2008 | A1 |
20080282202 | Sunday | Nov 2008 | A1 |
20090006292 | Block | Jan 2009 | A1 |
20090027337 | Hildreth | Jan 2009 | A1 |
20090037849 | Immonen et al. | Feb 2009 | A1 |
20090040215 | Afzulpurkar et al. | Feb 2009 | A1 |
20090060268 | Roberts et al. | Mar 2009 | A1 |
20090074248 | Cohen et al. | Mar 2009 | A1 |
20090077504 | Bell et al. | Mar 2009 | A1 |
20090079813 | Hildreth | Mar 2009 | A1 |
20090080526 | Vasireddy et al. | Mar 2009 | A1 |
20090085864 | Kutliroff et al. | Apr 2009 | A1 |
20090102788 | Nishida et al. | Apr 2009 | A1 |
20090102800 | Keenan | Apr 2009 | A1 |
20090103780 | Nishihara et al. | Apr 2009 | A1 |
20090108649 | Kneller et al. | Apr 2009 | A1 |
20090109036 | Schalla et al. | Apr 2009 | A1 |
20090110292 | Fujimura et al. | Apr 2009 | A1 |
20090115721 | Aull et al. | May 2009 | A1 |
20090116742 | Nishihara | May 2009 | A1 |
20090116749 | Cristinacce et al. | May 2009 | A1 |
20090150160 | Mozer | Jun 2009 | A1 |
20090153366 | Im et al. | Jun 2009 | A1 |
20090153655 | Ike et al. | Jun 2009 | A1 |
20090180668 | Jones et al. | Jul 2009 | A1 |
20090183125 | Magal et al. | Jul 2009 | A1 |
20090183193 | Miller, IV | Jul 2009 | A1 |
20090189858 | Lev et al. | Jul 2009 | A1 |
20090208057 | Wilson et al. | Aug 2009 | A1 |
20090222149 | Murray et al. | Sep 2009 | A1 |
20090228841 | Hildreth | Sep 2009 | A1 |
20090231278 | St. Hilaire et al. | Sep 2009 | A1 |
20090244309 | Maison et al. | Oct 2009 | A1 |
20090249258 | Tang | Oct 2009 | A1 |
20090262986 | Cartey et al. | Oct 2009 | A1 |
20090268945 | Wilson et al. | Oct 2009 | A1 |
20090273563 | Pryor | Nov 2009 | A1 |
20090273574 | Pryor | Nov 2009 | A1 |
20090273575 | Pryor | Nov 2009 | A1 |
20090278915 | Kramer et al. | Nov 2009 | A1 |
20090295738 | Chiang | Dec 2009 | A1 |
20090296991 | Anzola | Dec 2009 | A1 |
20090315740 | Hildreth et al. | Dec 2009 | A1 |
20090316952 | Ferren et al. | Dec 2009 | A1 |
Entry |
---|
Freeman, W. T. et al., “The Design and Use of Steerable Filters”, IEEE Transactions of Pattern Analysis and Machine Intelligence V. 13, (Sep. 1991),891-906. |
Simoncelli, E.P. et al., “Shiftable Multi-scale Transforms”, IEEE Transactions on Information Theory V. 38, (Mar. 1992)587-607. |
Simoncelli, E.P. et al., “The Steerable Pyramid: A Flexible Architecture for Multi-Scale Derivative Computation”, Proceedings of ICIP-95 V. 3, (Oct. 1995),444-447. |
Chen, J et al., “Adaptive Perceptual Color-Texture Image Segmentation”, IEEE Transactions on Image Processing, v. 14, No. 10, (Oct. 2005),1524-1536 (2004 revised draft). |
Halfhill, Tom R., “Parallel Processing with CUDA”, Microprocessor Report, Available at http://www.nvidia.com/docs/IO/55972/220401_Reprint.pdf,(Jan. 28, 2008). |
Farber, Rob “CUDA, Supercomputing for the Masses: Part 4, The CUDA Memory Model”, Under the High Performance Computing section of the Dr. Dobbs Website, p. 3 available at http://www.ddj.com/hpc-high-performance-computing/208401741, 3. |
Rajko, S et al., “HMM Parameter Reduction for Practice Gesture Recognition”, Proceedings of the International Conference on Automatic Gesture Recognition, (Sep. 2008). |
Hinton, Geoffrey et al., “A Fast Learning Algorithm for Deep Belief Nets”, Neural Computation, V. 18, 1527-1554. |
Susskind, Joshua M., et al., “Generating Facial Expressions with Deep Belief Nets”, Department of Psychology, Univ. of Toronto I-Tech Education and Publishing, (2008),421-440. |
Bleyer, Michael et al., “Surface Stereo with soft Segmentation.”, Computer Vision and Pattern Recognition, IEEE, 2010, (2010). |
Chen, Junqing et al., “Adaptive perceptual color-texture image segmentation.”,The International Society for Optical Engineering, SPIE Newsroom, (2006),1-2. |
Forsyth, David A., et al., “Stereopsis”, In Computer Vision A Modern Approach Prentice Hall, 2003, (2003). |
Harris, Mark et al., “Parallel Prefix Sum (Scan) with CUDA”, vol. 39, in GPU Gems 3, edited by Hubert Nguyen, (2007). |
Hirschmuller, Heiko “Stereo Vision in Structured Environments by Consistent Semi-Global Matching”, Computer Vision and Pattern Recognition, CVPR 06, (2006),2386-2393. |
Ivekovic, Spela et al., “Dense Wide-baseline Disparities from Conventional Stereo for Immersive Videoconferencing”, ICPR. 2004, (2004),921-924. |
Kaldewey, Tim et al., “Parallel Search on Video Cards.”, First USENIX Workshop on Hot Topics in Parallelism (HotPar '09), (2009). |
Kirk, David et al., “Programming Massively Parallel Processors A Hands-on Approach”, Elsevier, 2010, (2010). |
Klaus, Andreas et al., “Segment-Based Stereo Matching Using Belief Propagation and a Self-Adapting Dissimilarity Measure”, Proceedings of ICPR 2006. IEEE, 2006, (2006),15-18. |
Kolmogorov, Vladimir et al., “Computing Visual Correspondence with Occlusions via Graph Cuts”, International Conference on Computer Vision. 2001., (2001). |
Kolmogorov, Vladimir et al., “Generalized Multi-camera Scene Reconstruction Using Graph Cuts.”, Proceedings for the International Workshop on Energy Minimization Methods in Computer Vision and Pattern Recognition. 2003., (2003). |
Kuhn, Michael et al., “Efficient ASIC Implementation of a Real-Time Depth Mapping Stereo Vision System”, Proceedings of 2009 IEEE International Conference on Acoustics, Speech and Signal Processing. Taipei, Taiwan: IEEE, 2009., (2009). |
Li, Shigang “Binocular Spherical Stereo”, IEEE Transactions on Intelligent Transportation Systems (IEEE) 9, No. 4 (Dec. 2008), (Dec. 2008),589-600. |
Marsalek, M et al., “Semantic hierarchies for visual object recognition”, Proceedings of IEEE Conference on Computer Vision and Pattern Recognition, 2007. CVPR '07. MN: IEEE, 2007, (2007),1-7. |
Metzger, Wolfgang “Laws of Seeing”, MIT Press, 2006, (2006). |
Min, Dongbo et al., “Cost Aggregation and Occlusion Handling With WLS in Stereo Matching”, Edited by IEEE. IEEE Transactions on Image Processing 17 (2008), (2008), 1431-1442. |
“NVIDIA: CUDA compute unified device architecture, prog. guide, version 1.1”, NVIDIA, (2007). |
Remondino, Fabio et al., “Turning Images into 3-D Models”, IEEE Signal Processing Magazine, (2008). |
Richardson, Ian E., “H.264/MPEG-4 Part 10 White Paper”, White Paper/www.vcodex.com, (2003). |
Sengupta, Shubhabrata “Scan Primitives for GPU Computing”, Proceedings of the 2007 Graphics Hardware Conference. San Diego, CA, 2007, (2007),97-106. |
Sintron, Eric et al., “Fast Parallel GPU-Sorting Using a Hybrid Algorithm”, Journal of Parallel and Distributed Computing (Elsevier) 68, No. 10, (Oct. 2008),1381-1388. |
Wang, Zeng-Fu et al., “A Region Based Stereo Matching Algorithm Using Cooperative Optimization”, CVPR, (2008). |
Wei, Zheng et al., “Optimization of Linked List Prefix Computations on Multithreaded GPUs Using CUDA”, 2010 IEEE International Symposium on Parallel & Distributed Processing (IPDPS). Atlanta, (2010). |
Wiegand, Thomas et al., “Overview of the H.264/AVC Video Coding Standard”, IEEE Transactions on Circuits and Systems for Video Technology 13, No. 7, (Jul. 2003),560-576. |
Woodford, O.J. et al., “Global Stereo Reconstruction under Second Order Smoothness Priors”, IEEE Transactions on Pattern Analysis and Machine Intelligence (IEEE) 31, No. 12, (2009),2115-2128. |
Yang, Qingxiong et al., “Stereo Matching with Color-Weighted Correlation, Hierarchical Belief Propagation, and Occlusion Handling”, IEEE Transactions on Pattern Analysis and Machine Intelligence (IEEE) 31, No. 3, (Mar. 2009),492-504. |
Zinner, Christian et al., “An Optimized Software-Based Implementation of a Census-Based Stereo Matching Algorithm”, Lecture Notes in Computer Science (SpringerLink) 5358, (2008),216-227. |
“PCT Search report”, PCT/US2010/035717, (dated Sep. 1, 2010), 1-29. |
“PCT Written opinion”, PCT/US2010/035717, (dated Dec. 1, 2011), 1-9. |
“PCT Search report”, PCT/US2011/49043, (dated Mar. 21, 2012), 1-4. |
“PCT Written opinion”, PCT/US2011/49043, (dated Mar. 21, 2012), 1-4. |
“PCT Search report”, PCT/US2011/049808, (dated Jan. 12, 2012), 1-2. |
“PCT Written opinion”, PCT/US2011/049808, (dated Jan. 12, 2012), 1-5. |
“Non-Final Office Action”, U.S. Appl. No. 12/784,123, (dated Oct. 2, 2012), 1-20. |
“Non-Final Office Action”, U.S. Appl. No. 12/784,022, (dated Jul. 16, 2012), 1-14. |
Tieleman, T et al., “Using Fast weights to improve persistent contrastive divergence”, 26th International Conference on Machine Learning New York, NY ACM, (2009), 1033-1040. |
Sutskever, I et al., “The recurrent temporal restricted boltzmann machine”, NIPS, MIT Press, (2008),1601-1608. |
Parzen, E “On the estimation of a probability density function and the mode”, Annals of Math. Stats., 33, (1962), 1065-1076. |
Hopfield, J.J. “Neural networks and physical systems with emergent collective computational abilities”, National Academy of Sciences, 79, (1982),2554-2558. |
Culibrk, D et al., “Neural network approach to background modeling for video object segmentation”, IEEE Transactions on Neural Networks, 18, (2007), 1614-1627. |
Benggio, Y et al., “Curriculum learning”, ICML 09 Proceedings of the 26th Annual International Conference on Machine Learning, New York, NY: ACM, (2009). |
Benggio, Y et al., “Scaling learning algorithms towards AI. In L. a Bottou”, Large Scale Kernel Machines, MIT Press,(2007). |
Battiato, S et al., “Exposure correction for imaging devices: An overview”, In R. Lukac (Ed.), Single Sensor Imaging Methods and Applications for Digital Cameras, CRC Press,(2009),323-350. |
Marc Mezard and Thierry Mora “Constraint Satisfaction Problems and Neural Networks: a Statistical Physics Perspective”, Mar. 20, 2008, Proceedings of the 2007 Tauc Conference on Complexity in Neural Networks Dynamics. |
Ioannis Pavlidis; Vassilios Morellas; and Nikolaos Papanikolopoulos, “A Vehicle Occupant Counting System Based on Near-Infrared Phenomenology and Fuzzy Neural Classification”, Jun. 2000, IEEE Transactions on Intelligent Transportation Systems, vol. 1, No. 2, pp. 72-85. |
Number | Date | Country | |
---|---|---|---|
20190188540 A1 | Jun 2019 | US |
Number | Date | Country | |
---|---|---|---|
61379706 | Sep 2010 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 15986898 | May 2018 | US |
Child | 16282298 | US | |
Parent | 14517844 | Oct 2014 | US |
Child | 15986898 | US | |
Parent | 14145945 | Jan 2014 | US |
Child | 14517844 | US | |
Parent | 13897470 | May 2013 | US |
Child | 14145945 | US | |
Parent | 13221903 | Aug 2011 | US |
Child | 13897470 | US |