Next Article in Journal / Special Issue
A General Hybrid Modeling Framework for Systems Biology Applications: Combining Mechanistic Knowledge with Deep Neural Networks under the SBML Standard
Previous Article in Journal / Special Issue
Artificial Intelligence-Enhanced UUV Actuator Control
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Review

AI-Based Computer Vision Techniques and Expert Systems

by
Yasunari Matsuzaka
1,2,* and
Ryu Yashiro
2,3
1
Division of Molecular and Medical Genetics, Center for Gene and Cell Therapy, The Institute of Medical Science, The University of Tokyo, Minato-ku, Tokyo 108-8639, Japan
2
Administrative Section of Radiation Protection, National Institute of Neuroscience, National Center of Neurology and Psychiatry, Kodaira, Tokyo 187-8551, Japan
3
Department of Infectious Diseases, Kyorin University School of Medicine, 6-20-2 Shinkawa, Mitaka-shi, Tokyo 181-8611, Japan
*
Author to whom correspondence should be addressed.
AI 2023, 4(1), 289-302; https://doi.org/10.3390/ai4010013
Submission received: 6 December 2022 / Revised: 8 February 2023 / Accepted: 22 February 2023 / Published: 23 February 2023
(This article belongs to the Special Issue Feature Papers for AI)

Abstract

:
Computer vision is a branch of computer science that studies how computers can ‘see’. It is a field that provides significant value for advancements in academia and artificial intelligence by processing images captured with a camera. In other words, the purpose of computer vision is to impart computers with the functions of human eyes and realise ‘vision’ among computers. Deep learning is a method of realising computer vision using image recognition and object detection technologies. Since its emergence, computer vision has evolved rapidly with the development of deep learning and has significantly improved image recognition accuracy. Moreover, an expert system can imitate and reproduce the flow of reasoning and decision making executed in human experts’ brains to derive optimal solutions. Machine learning, including deep learning, has made it possible to ‘acquire the tacit knowledge of experts’, which was not previously achievable with conventional expert systems. Machine learning ‘systematises tacit knowledge’ based on big data and measures phenomena from multiple angles and in large quantities. In this review, we discuss some knowledge-based computer vision techniques that employ deep learning.

1. Introduction

Among the many research fields related to image processing, ‘computer vision’ has been attracting considerable attention [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]. It is an academic field that studies the ‘realisation of vision using computers’ and is also an artificial intelligence (AI) field that enables computers and systems to derive meaningful information from digital images, videos, and other visual data and act and make recommendations (allowing humans to do so as well) based on that information. If AI enables computers to think, computer vision enables them to see, observe, and understand. This works similar to human vision and is expected to give humans a head start. Thus, the purpose of computer vision is to impart computers with functions equivalent to the human eye, that is, to realise ‘computer vision’. Specifically, the goal is to design computer software that uses still image or video data to function similar to or better than human vision. Thus far, computer graphics (CG) has been the primary image-processing technology used in computers. The difference between CG and computer vision is that CG is used for projecting and displaying 3D objects on a 2D display, whereas computer vision is used for deriving 3D information from 2D image data. Although they are contrasting technologies, they complement each other and contribute to new technologies, such as virtual reality and augmented reality (AR). AR displays 3DCG that are overlaid on real-world scenery, for which additional information is added by a computer. It is an example of the fusion of computer vision, which perceives the real world, and CG, which depict a fictional world [16,17,18,19,20]. Human vision has the advantage of accumulating contextual knowledge to distinguish between objects, determine the distance between objects, identify whether an object is moving, and ascertain whether there is something wrong with an image [21,22]. Computer vision involves training machines to perform these functions considerably faster than humans using cameras, data, and algorithms rather than the retina, optic nerve, and visual cortex. Systems trained to inspect products and monitor production assets can quickly surpass human capabilities because they can instantaneously analyse thousands of products and processes and identify imperceptible defects and problems. Therefore, computer vision requires vast quantities of data, which are iteratively analysed until the computer can identify features and, finally, an image. Two key technologies are used to achieve this: a form of machine learning called deep learning and convolutional neural networks (CNNs) [23,24,25,26,27]. They employ algorithmic models that allow computers to learn the context of visual data, that is, to ‘visualise’ machine or deep learning models by segmenting images into tagged or labelled pixels, and perform a convolution, which is a mathematical operation that takes two functions to produce a third, employing labels for predictions regarding what a computer ‘sees’. If the model provides sufficient data to the computer, it learns to ‘see’ the data and distinguish one image from another. Instead of being manually programmed to recognise images, algorithms allow machines to learn independently. A neural network performs convolutions and checks the accuracy of predictions in a series of iterations until it can make a prediction. It then perceives or displays the images in a human-like manner. Similar to how humans perceive images at a distance, CNNs first identify hard edges and simple shapes, and then perform iterative predictions to embed information. Although CNNs are used to identify single images, recurrent neural networks are similarly used for video applications to help computers understand the relationships between images in a series of frames. Since this new field deals with all the processes in which computers acquire information in the real world, it is widely studied with respect to aspects ranging from hardware for image sensing to AI theory for information recognition. Therefore, we focused our attention on the relevant new fields, such as the fusion of computer graphics and computer vision with CNNs, which are configured by expert systems, computer vision systems, and application.

2. Expert Systems as AI Base

2.1. Problem Solving Via Expert Systems

Human beings are constantly making choices throughout their lives, and some decisions often require a comparison of two things. Computer-based problem solving is also similarly performed through comparisons. The comparison constitutes a conditional branch, and the answer to the input is derived by executing the conditional branch. Such operations can be considered AI because a machine performs actions that are recognised as intelligence by humans. Very early AI was composed of programs that performed such conditional branching tasks, and this has been carried over to current AI implementations. Condition setting, that is, the setting of rules, is necessary for conditional branching. A system that performs conditional branching using rules is called a rule-based system, and conditional branching is often described in the form of IF–THEN statements [28,29]. Considering that their program and algorithm configurations are represented in flowcharts, rule-based systems are compatible with flowcharts. When building a rule-based system, the conditional branching content is arranged in a flowchart. The rules must be predefined by humans; however, it is impossible to handle unknown problems that humans cannot correctly answer on a rule-oriented basis [30,31]. When setting these conditions, it is necessary to focus on their order and priority. Clarifying problems and their solutions at the rule design stage in this manner is called problem formulation. When a flowchart is composed using rules, a binary tree is built based on the available information. This tree structure is called a decision tree and is often used for statistical data processing and analysis [32,33]. Unknown rules are searched for, and they may be found through statistical data processing. When constructing a rule-based program, the conditional branch that becomes a rule can easily be hardcoded; this is called a fixed program, which cannot be modified later as it uses fixed information. Even if the settings are changed, such changes are not problematic if rewriting the program does not incur additional costs. If the conditions’ settings are easily changeable, for example, as in changing settings according to taste, this can result in excessive costs if the program is frequently rewritten. Therefore, a method was devised to address this problem, wherein the main body of the program that processes and outputs the data was separated from the condition-setting data. A separate set of data is called a knowledge base [34]. When a program requires a conditional branch, it uses the ID that extracts the rule to read the setting value and make a decision. The knowledge base may be stored as text files on a file system or in a database management system. The aforementioned rule-based system was developed in the 1960s and is used in large systems. In particular, systems that can assist or replace experts with respect to performing certain tasks, such as classification, are called expert systems [35,36]. They are computer systems that have knowledge regarding specialised fields and can reason and judge phenomena related to specific problems in a manner similar to that of an expert. They were developed so that a layman or novice with no technical knowledge can use them to achieve the same level of problem-solving ability as an expert. It is said that by using an expert system, which comprises two parts, namely, an ‘inference engine’ and a ‘knowledge base’, even people without specialised knowledge can solve problems and make decisions on par with experts [37,38]. The inference engine is based on a knowledge base comprising various forms of information, such as rules, facts, and specialised knowledge, and it makes inferences and draws conclusions using this information. Rules handled by humans can be understood by expressing them in words, but for computers to interpret and process them, it is necessary to convert the expressions into a more suitable format. The discipline concerned with such representations is called symbolic logic [39,40]. The inference engine plays a key role as the brain of an expert system that engages in the problem-solving process. The most basic branch of mathematical logic it uses is called propositional logic, which comprises propositional variables and sentence operators (connectors) and indicates what is expressed by truth values. The aim is to express and comprehend the relationships between propositions by relating them with conditions such as ‘and’, ‘or’, and ‘if’ without pursuing the meaning of the proposition itself. Therefore, although the meanings of propositions cannot be analysed, they can be given meaning using other forms of logic that extend propositional logic, such as predicate logic [41,42]. Logic is quantified by extending propositional logic and is an established inference engine. These inference engines increase the number of available methods for answering ‘questions’. In propositional and postoperative logic, sentences are expressed using symbols. In propositional logic, logical expressions are composed of propositional variables that are logical, atomic expressions and sentence operators [43]. For example, consider there are two propositions, P and Q, with predetermined truth values: true or false, or 0 or 1. As listed in Table 1, P ⇒ Q and P ⇔ Q, where P ⇒ Q is equal to (¬P) ∨ Q, and P ⇔ Q is equal to (P ⇒ Q) ∧ (Q ⇒ P). This table is called a truth table. Logical formulas that are always true are called tautologies. Conversely, logical formulas that are always false are called contradictions. Logical formulas have equivalence relations, which are true formulas [44,45], as shown in Table 2. An inference rule that appears to be a combination of these logical expressions can be converted into a clause form. Using the clause form, even complicated logical expressions can be grouped together to make them easier to handle. Conjunctive and Skolem normal forms comprise propositional and predicate formulas, respectively, that are converted to the clause form. In the conjunctive normal form, a clause is a formula comprising formulas joined by disjunctions. In contrast, the knowledge base is a database separated from the inference engine wherein ‘IF-THEN’ data are accumulated.

2.2. History of Expert Systems

The first expert system ever built was called ‘Dendral’ [46]. It was built at Stanford University in 1965, and Edward Feigenbaum, who was involved in its development, is referred to as the ‘father of expert systems’. Dendral can estimate the chemical structure of a substance using its numerical value and the molecular weight of its peak position, for which the latter is obtained through mass spectrometry. For example, a water molecule (H2O) comprises hydrogen (H) and oxygen (O) atoms that have masses of 1.01 and 16.00, respectively; hence, the molecular weight of H2O is 18, and its mass spectrum has a peak at 18 units. For this example, Dendral can calculate chemical substances with molecular weights of 18 using a combination of atoms and determines the possible answers. As the molecular weight increases, the combinations of atoms became more diversified. Since calculating the answer requires time, it is necessary to devise a method that can avoid calculating combinations that do not require an evaluation of these mechanisms. Dendral’s system comprises two parts: Heuristic Dendral, which performs heuristic (rule-of-thumb) analysis, and Meta-Dendral, which registers sets of molecular structures to be combined and their mass spectra as a knowledge base and feeds them back to Heuristic Dendral [47,48]. Therefore, Meta-Dendral can be referred to as a learning system. In addition, the fuzzy logic approach also plays an important role [49,50,51,52]. Following these developments, ‘Mycin’ was developed in 1972, which increased the popularity of expert systems [53]. It could diagnose patients and infectious blood diseases and recommend antibiotics to be administered along with dosages adjusted to the body weight of the patient [54]. It made judgements using a knowledge base comprising approximately 600 rules, and, based on the answers to questions comprising answer formats other than YES/NO, it could display several bacteria in descending order of likelihood and reliability as the cause of a disease along with the reasons. Although the performance of Mycin was not comparable to that of specialists, it had great potential for use in the medical field as a system capable of diagnosing bacterial infections, obtaining an accuracy rate of approximately 65%. However, it was never used in practice owing to indecision among doctors regarding who should be held accountable in the event of a ‘misdiagnosis’ by the system. Subsequently, a second AI boom occurred in the 1980s, wherein the use of various expert systems started. However, owing to problems such as the requirement to manually input a large number of data and formulate rules, as well as an inability to handle complex learning, the practical use of expert systems was restricted to a limited number of systems, and the boom passed. Since the 2000s, medical expert systems that demonstrate this level of reliability have been criticised as ‘unusable’, and even when similar systems were developed, their adaptation was often difficult to achieve. There were ethical and legal issues, such as unclear liability and resistance, concerning the use of computerised diagnostics that could provide incorrect results. The diagnostic accuracy rate often expected from such systems is 85–90% or more, and the numbers of false positives and negatives should be as low as possible (the positive predictive value should be high). Around 2010, expert systems again attracted attention owing to the advances in ‘machine learning’, which reduced the cost of data entry and rule creation [55,56]. The period from 2010 to the present can be considered as the third AI boom. During the second AI boom, expert systems faced various challenges, such as the requirement to manually input a large number of data after creating rules. The data input process itself had to be performed by humans after the knowledge of the specialised field was formatted for input into the system. This required a significant amount of money and time. As the knowledge required to build an expert system is often extremely complex, it is difficult to convert such information into data through simple algorithms. Additionally, as the amount of knowledge and rules increased, contradictions arose, and managing inconsistencies became difficult. Moreover, the hardware during the second AI boom did not have the processing power to allow the system to automatically extract the data entered by humans. However, in recent years, machine learning has enabled the automatic learning of large quantities of data, and advances in technology have gradually reduced the challenges faced by expert systems, thus rendering them more practical.

3. Past and Present of Computer Vision Techniques

The demand to develop methods that enable machines to see and understand visual data has existed for several decades. Experiments began in 1959, when neurophysiologists showed a series of images to cats and attempted to correlate such images with their brain responses. Around the same time, the first image scanner was developed, which allowed computers to acquire and digitise images. In 1963, computers became capable of transforming two-dimensional (2D) images into three-dimensional models, and during the 1960s, AI became a prominent field in academic research, and thus the quest to use AI for solving human vision problems began. In 1974, optical character recognition (OCR) technology was introduced, which could identify printed text in any font or typeface [57,58]. Similarly, intelligent character recognition (ICR) can use neural networks to decipher handwritten text [59,60]. Since their introductions, OCR and ICR have been used in several general applications. In 1982, neuroscientist David Marr discovered that vision works hierarchically and introduced a machine algorithm for detecting edges, corners, curves, and similar primitive shapes. Around the same time, computer scientist Kunihiko Fukushima developed a network comprising multiple types of cells, called ‘neocognitron’, that includes convolutional layers in a neural network and can identify patterns [61,62]. Until 2000, research was primarily focused on object recognition, and by 2001, the first real-time facial recognition application was introduced. Methods for tagging and annotating visual datasets were standardised in the 2000s. In 2010, the ImageNet dataset was released, which contains millions of tagged images across 1000 object classes and provided the foundation for the CNN and deep learning models in use today [63,64,65,66,67,68,69,70]. In 2012, a team from the University of Toronto participated in the ‘Utilisation of CNN in Image Recognition’ contest. They introduced a ground-breaking model called AlexNet, which significantly reduced the image recognition error rate for ImageNet to just 15.3%. As a result, by using CNN, even for ImageNet-scale image recognition datasets, it is possible to automatically perform effective feature extraction through a multiresolution hierarchical convolution kernel layer group [71,72]. Therefore, the accuracy of AlexNet was considerably higher than that of convolutional image recognition methods. The AlexNet research can be considered the first successful CNN-learning framework for ‘successfully learning large-scale networks from large-scale datasets using GPUs’ and collecting tips.’ Thus, AlexNet is considered to be the original network structure of modern image recognition CNNs introduced in recent years. The key factor that allowed AlexNet to achieve high accuracy was the suppression of the overfitting of deep CNNs. High-speed training of large-scale CNNs using GPUs, which has now become commonplace, was achieved and modelled for the first time by using techniques such as data augmentation, dropout, ReLU, local response normalisation, and multi-GPU parallelisation. In other words, ‘a collection of tips for successfully training a CNN model on large-scale image datasets without the least amount of overfitting’ was introduced for the first time. Therefore, using AlexNet as the baseline, it was easier for other researchers to conduct CNN research. Thus, the introduction of AlexNet had a significant impact on the computer vision industry, resulting in a paradigm shift wherein ‘the computer vision industry started rapidly shifting to CNN-based image recognition methods’. AlexNet sparked another AI boom, and many top researchers participated in research on image recognition CNNs. However, AlexNet was quickly replaced by other CNNs, such as VGGNet, InceptionNet, and ResNet, due to their high-performance. Hence, the architecture of AlexNet itself has not been used for a long time [73,74,75,76,77,78,79,80,81,82,83,84,85,86]. AlexNet’s learning exhibited poor convergence and was not very practical because it was a hit-and-run, trial-and-test optimisation. However, AlexNet is a very important development because it was the first to present the underlying backbone of its successor image recognition CNNs. At the same time, because it exhibited significantly higher accuracy than conventional methods, researchers stopped combining conventional methods comprising handmade image feature values such as Fisher Vector and discriminative models such as support vector machines. Moreover, AlexNet triggered a shift in the entire pattern recognition industry to deep learning with CNN. Although leading researchers had started an AI boom by employing deep learning, the introduction of AlexNet was the biggest breakthrough, especially in computer vision pattern recognition tasks. As one of the advantages of the CNN models, feature visualization provides a unique perspective on how neural networks function, especially with respect to image recognition. Given the complexity and opacity of neural networks, feature visualization constitutes an important step in order to analyse and explain neural networks. Through feature visualization, it was revealed that the neural network first detects simple edges and textures, followed by detecting layers more abstractly, and, finally, performs object detection. Network analysis expands on these insights and makes the interpretability of network units measurable. In addition, concepts can be automatically linked to units, which is very convenient. Furthermore, feature visualization is a great technique for communicating how neural networks work in a non-technical way. Together with network analysis, it can detect concepts across classes in classification tasks.

4. Application of Knowledge-Based Computer Vision Techniques

Knowledge bases are special databases used for the management of facts, common sense, experience, etc., pertaining to the subject area incorporated into the expert system, which renders knowledge searchable and organised and aggregates it on computers. They are designed to solve problems pertaining to specific applications or domains through reasoning. These systematically ordered sets of facts, events, beliefs, and rules are roughly classified into two categories: machine and human-readable knowledge bases [87,88,89,90]. For example, input images from a camera can be processed by a computer to serve as the eyes of a robot or a self-driving car, wherein the installed cameras play the role of eyes. The images captured by the camera are analysed using computer vision technology and used for autonomous driving. For example, in the case of a ‘Forward Collision Prevention System’, when a camera installed in the front of a vehicle detects a nearby car or person, a warning sound is emitted to alert the driver. Additionally, when approaching a dangerous distance, brakes are automatically applied to prevent collisions. Moreover, the ‘Lane Departure Warning System’, which alerts the driver using an audible warning when a car unintentionally strays from the lane it is in, and the ‘Parking Support System’, which synthesises images captured by the front, back, left, and right cameras when parking and displays them as if they were captured from above, have been developed [91,92]. Computer vision technology is also used to automatically detect a specific person in surveillance camera images. The image analysis system “TB-eye AI Solution” achieves high-performance facial recognition and image analysis by combining deep-learning- and computer-vision-based object recognition technology. Additionally, a system called ‘smart search’ has been developed that uses AI to identify objects in images based on various conditional terms, such as ‘white car’ and ‘person in black clothes’, which can significantly reduce research time. Computer vision technology is also used for vein authentication, which is performed by holding a palm or finger over a terminal to identify a person. Research is also underway with respect to the use of image recognition technology for detecting affected areas within the human body using images captured via computed tomography or magnetic resonance imaging. Furthermore, a device that can produce 3D images of living cells within minutes has been developed, leading to the study of drug effects at the single-cell level [93,94].
Among the various applications of computer vision technology, ‘matchmove’ is a 3DCG synthesis technology that is often used in movies and television dramas [95,96]. The actor’s performance is shot in a blue sheet studio, and the background CG that are synthesised later are calculated and created based on the viewpoint changes of the camera and 3D information, which are then matched to the actor’s image. It is similar to AR in that it synthesises another video or 3DCG comprising a landscape image; however, AR is a real-time process, whereas matchmove is a video-editing technology that synthesises the video later. In addition, ‘projection mapping’ technology is used to project images onto 3D objects, such as buildings, and has recently been employed at various events [97]. In the case of ordinary projectors used in offices, movie theatres, etc., images are projected vertically onto a flat rectangular screen. In contrast, in projection mapping, the 3D information of the building onto which the image is projected is read, and the image is projected according to its shape. It is also possible to limit the projection within a specific outline and to change the image to be projected at each surface transition. It can be adjusted such that it looks natural, even when viewed from viewpoints other than the front. This mapping work is performed using video-editing software. By calibrating and adjusting the 3D positional relationship between the projector and camera, images can be mapped in a 3D space with high accuracy. Additionally, this technology has evolved even further, leading to the creation of interactive projection mapping, wherein images that are projected onto a room or hallway change in response to the movements of people in that space. In recent years, gesture recognition technology has attracted attention as a user interface, allowing users to operate televisions and cameras with only gestures and without touching [98,99]. Such systems are equipped with cameras and sensors and, therefore, can be operated with gesturally and vocally without touching. Subsequently, developer packages were offered at a low price, which resulted in their application in various fields. One example is the medical field, where a system that allows doctors to operate personal computers (PCs) during surgery through non-contact gesture recognition is being used. Using this system, X-ray images can be checked without touching a PC screen or by instructing other staff members to operate the PC during surgery.
Additionally, even in the design of image-understanding systems, the main part of the knowledge-based vision system comprises the process of matching the target model representation with the cues in the observed image and model [100]. In the same way that the selection of the knowledge representation format is important in knowledge systems, the representation of target models in vision systems is also an important issue that significantly affects the matching process that is realised via inference. Many conventional 3D vision systems represent models individually, and various methods have been proposed for their representation. It is important to establish a description system for complex objects and to employ it to identify objects. However, if the models remain separate, an identity judgement between the object and the model would occur. When considering a computer’s structural understanding, it is desirable to describe the relationship between each model in the model representation. Based on this idea, a 3D vision system with a model that expresses both the conventional model structure’s description and the relationship-based description between models using the object-oriented class concept was developed [101]. The geometry is represented by surface models, and each model corresponds to an object-oriented system class. In the comprehension process, with respect to relationship descriptions (is-a relationships), for which there is a has-a, aggregation, and composition aggregation relationship, in relations wherein different kinds of hierarchical properties between classes are used, matching is first performed via an abstract model, and then a concrete model with tighter constraints is obtained. The features of this vision system are as follows:
  • A model system with independent 3D and 2D models;
  • Each model expresses one shape concept that is expressed using inheritance through the ISA relationship between models;
  • Model representation, reasoning mechanism, and image processing are described in an object-oriented framework;
  • A function for understanding incomplete line drawings is implemented.
Additionally, the following points are considered important as model representations for understanding images in such systems:
  • Only the essence of an object that is the subject of a single concept is used to suppress slight differences in individual objects as much as possible;
  • Although shape representation is used to enable the representation of term (i), the process of matching with the actual image should not be ignored;
  • The structure is expressed explicitly using the PART OF relation;
  • It is structured to deepen the understanding sequentially by describing the relationships between concepts using is-a relationships.
Frames are often used in such a knowledge representation method. In knowledge representation by frames, one frame corresponds to one concept, which makes knowledge representation easily comprehensible. The functions of frames are sufficient for model representation alone; however, frames are often used as hierarchical knowledge bases and have a strong passive character. Since image comprehension requires active reasoning during the matching process, an object-oriented paradigm involving active procedures is more suitable [102,103,104,105,106]. However, frames and object orientation are not originally different concepts, and object orientation can be considered as a broader concept that includes procedures in the hierarchy of frames. From a programming point of view, an object is a collection of data structures and their exclusive procedures, whereas from an analysis/design point of view, it is a collection of information resources and their processing procedures. In other words, object orientation is a way of thinking that involves handling data and processes together, and uses objects that integrate both as basic elements, emphasises the interaction between objects and messages, and attempts to construct the entire software [107,108,109]. Additionally, in object orientation, there is a clear separation of concepts between classes, which are abstract objects, and instances, which are concrete objects. Consequently, an abstract model representation can be associated with a class, and an entity obtained from clues in an image and matched with a model can be associated with an instance. As described above, the ability to successfully apply model representations, inference procedures, and concrete entities from images is required in an object-oriented paradigm.

5. Discussion

Computer vision and AI technologies are the fastest growing areas in terms of market size and industry adoption. Spatial computer vision and edge AI, in particular, are not only used for complex processes but also to improve and automate repetitive tasks [110]. This new reality coupled with the increasing affordability of hardware and the sophistication of depth perception and machine learning has enabled the development of practical solutions in edge computer vision and AI systems. Spatial computer vision with edge AI can deploy depth-based applications and perform image processing inside a device. As hardware becomes more accessible, important improvements are also taking place in software and machine learning workflows. Although they are still highly specialized and many technical issues remain, AI and computer vision have become easier to use with the provision of tools that allow them to learn their own models. Meanwhile, large-scale edge computing and deployment remains a problem for standard machine learning pipelines and workflows [111,112,113]. In addition, one of the biggest challenges is reducing the cost and time currently required to create and improve machine learning models for real-world applications. The challenge is how to manage all these devices and how to create a smooth pipeline for continuous improvement. There are also implicit limitations in terms of computational processing, so the final model that will be deployed on a device requires additional considerations, such as the requirement of an application to be lightweight and performant.

6. Conclusions

Computer vision is a branch of computer science that focuses on enabling computers to identify and understand objects and people through images and videos. Similar to other types of AI, computer vision aims to perform and automate tasks that mimic human capabilities. In this case, it reproduces both the way humans see and understand what they see. In other words, computer vision applications use inputs from sensing devices, AI, machine learning, and deep learning to mimic the functions of the human visual system. Additionally, computer vision applications run on algorithms trained on vast quantities of visual data and images. These applications recognise patterns in the visual data and use these patterns to determine the content of other images. Computer vision applications are shifting away from the statistical methods conventionally used for image analysis and are increasingly relying on deep learning, which provides even more accurate image analysis via deep neural network algorithms. Furthermore, deep learning retains information about each image; therefore, the more it is used, the more accurate it becomes. Machine learning, in which humans prepare large quantities of sample and supervised data that are studied by computers to discover knowledge and rules on their own, requires a large number of sample data and a configured learning machine. In deep learning, a computer itself finds the optimal solution; although it is not accurate at first, the accuracy increases as sample data are continuously supplied. This has become possible due to the high performance of current computers and large quantities of sample data generated by big data. However, advanced rules are difficult to define in an expert system wherein a human defines knowledge and rules and teachers them to a computer. In other words, there were various limitations in the past due to the inability to transcend the human frame. However, because real-time processing and big data have spread owing to improvements in hardware specifications, expert systems are being used in many industries. In conclusion, computer vision is a powerful ability that can be combined with a wide variety of applications and sensing devices to support various practical applications.

Author Contributions

Writing, review, and editing, Y.M.; supervision, R.Y.; funding acquisition, Y.M. All authors have read and agreed to the published version of the manuscript.

Funding

This review was funded by the Fukuda Foundation for Medical Technology, and APC was funded by the Fukuda Foundation for Medical Technology.

Informed Consent Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Al-Oraiqat, A.M.; Smirnova, T.; Drieiev, O.; Smirnov, O.; Polishchuk, L.; Khan, S.; Hasan, Y.M.Y.; Amro, A.M.; AlRawashdeh, H.S. Method for Determining Treated Metal Surface Quality Using Computer Vision Technology. Sensors 2022, 22, 6223. [Google Scholar] [CrossRef] [PubMed]
  2. Gumbs, A.A.; Grasso, V.; Bourdel, N.; Croner, R.; Spolverato, G.; Frigerio, I.; Illanes, A.; Abu Hilal, M.; Park, A.; Elyan, E. The Advances in Computer Vision That Are Enabling More Autonomous Actions in Surgery: A Systematic Review of the Literature. Sensors 2022, 22, 4918. [Google Scholar] [CrossRef] [PubMed]
  3. Dudek, P.; Richardson, T.; Bose, L.; Carey, S.; Chen, J.; Greatwood, C.; Liu, Y.; Mayol-Cuevas, W. Sensor-level computer vision with pixel processor arrays for agile robots. Sci. Robot. 2022, 7, eabl7755. [Google Scholar] [CrossRef] [PubMed]
  4. Abellanas, M.; Elena, M.J.; Keane, P.A.; Balaskas, K.; Grewal, D.S.; Carreño, E. Artificial Intelligence and Imaging Processing in Optical Coherence Tomography and Digital Images in Uveitis. Ocul. Immunol. Inflamm. 2022, 30, 675–681. [Google Scholar] [CrossRef] [PubMed]
  5. Kitaguchi, D.; Takeshita, N.; Hasegawa, H.; Ito, M. Artificial intelligence-based computer vision in surgery: Recent advances and future perspectives. Ann. Gastroenterol. Surg. 2021, 6, 29–36. [Google Scholar] [CrossRef]
  6. Hellsten, T.; Karlsson, J.; Shamsuzzaman, M.; Pulkkis, G. The Potential of Computer Vision-Based Marker-Less Human Motion Analysis for Rehabilitation. Rehabil. Process Outcome 2021, 10, 11795727211022330. [Google Scholar] [CrossRef]
  7. Hassan, H.; Ren, Z.; Zhao, H.; Huang, S.; Li, D.; Xiang, S.; Kang, Y.; Chen, S.; Huang, B. Review and classification of AI-enabled COVID-19 CT imaging models based on computer vision tasks. Comput. Biol. Med. 2022, 141, 105123. [Google Scholar] [CrossRef] [PubMed]
  8. D’Antoni, F.; Russo, F.; Ambrosio, L.; Vollero, L.; Vadalà, G.; Merone, M.; Papalia, R.; Denaro, V. Artificial Intelligence and Computer Vision in Low Back Pain: A Systematic Review. Int. J. Environ. Res. Public Health 2021, 18, 10909. [Google Scholar] [CrossRef]
  9. Wang, J.; Zhu, H.; Liu, J.; Li, H.; Han, Y.; Zhou, R.; Zhang, Y. The application of computer vision to visual prosthesis. Artif. Organs 2021, 45, 1141–1154. [Google Scholar] [CrossRef]
  10. Victória Matias, A.; Atkinson Amorim, J.G.; Buschetto Macarini, L.A.; Cerentini, A.; Casimiro Onofre, A.S.; De Miranda Onofre, F.B.; Daltoé, F.P.; Stemmer, M.R.; von Wangenheim, A. What is the state of the art of computer vision-assisted cytology? A Systematic Literature Review. Comput. Med. Imaging Graph 2021, 91, 101934. [Google Scholar] [CrossRef]
  11. Wu, Z.; Chen, Y.; Zhao, B.; Kang, X.; Ding, Y. Review of Weed Detection Methods Based on Computer Vision. Sensors 2021, 21, 3647. [Google Scholar] [CrossRef]
  12. Louis, C.M.; Erwin, A.; Handayani, N.; Polim, A.A.; Boediono, A.; Sini, I. Review of computer vision application in in vitro fertilization: The application of deep learning-based computer vision technology in the world of IVF. J. Assist. Reprod. Genet. 2021, 38, 1627–1639. [Google Scholar] [CrossRef]
  13. Kang, X.; Zhang, X.D.; Liu, G. A Review: Development of Computer Vision-Based Lameness Detection for Dairy Cows and Discussion of the Practical Applications. Sensors 2021, 21, 753. [Google Scholar] [CrossRef]
  14. Fernandes, A.F.A.; Dórea, J.R.R.; Rosa, G.J.M. Image Analysis and Computer Vision Applications in Animal Sciences: An Overview. Front. Vet. Sci. 2020, 7, 551269. [Google Scholar] [CrossRef]
  15. Patel, K.; Parmar, B. Assistive device using computer vision and image processing for visually impaired; review and current status. Disabil. Rehabil. Assist. Technol. 2022, 17, 290–297. [Google Scholar] [CrossRef]
  16. Minaee, S.; Liang, X.; Yan, S. Modern Augmented Reality: Applications, Trends, and Future Directions. arXiv 2022, arXiv:2202.09450. Available online: https://arxiv.org/abs/2202.09450 (accessed on 24 February 2022).
  17. Sutherland, J.; Belec, J.; Sheikh, A.; Chepelev, L.; Althobaity, W.; Chow, B.J.W.; Mitsouras, D.; Christensen, A.; Rybicki, F.J.; La Russa, D.J. Applying Modern Virtual and Augmented Reality Technologies to Medical Images and Models. J. Digit. Imaging 2019, 32, 38–53. [Google Scholar] [CrossRef]
  18. Lungu, A.J.; Swinkels, W.; Claesen, L.; Tu, P.; Egger, J.; Chen, X. A review on the applications of virtual reality, augmented reality and mixed reality in surgical simulation: An extension to different kinds of surgery. Expert. Rev. Med. Devices 2021, 18, 47–62. [Google Scholar] [CrossRef]
  19. Lex, J.R.; Koucheki, R.; Toor, J.; Backstein, D.J. Clinical applications of augmented reality in orthopaedic surgery: A comprehensive narrative review. Int. Orthop. 2022, in press. [CrossRef]
  20. Tanzer, M.; Laverdière, C.; Barimani, B.; Hart, A. Augmented Reality in Arthroplasty: An Overview of Clinical Applications, Benefits, and Limitations. J. Am. Acad. Orthop. Surg. 2022, 30, e760–e768. [Google Scholar] [CrossRef]
  21. Maier, M.; Blume, F.; Bideau, P.; Hellwich, O.; Abdel Rahman, R. Knowledge-augmented face perception: Prospects for the Bayesian brain-framework to align AI and human vision. Conscious Cogn. 2022, 101, 103301. [Google Scholar] [CrossRef] [PubMed]
  22. Fooken, J.; Kreyenmeier, P.; Spering, M. The role of eye movements in manual interception: A mini-review. Vision Res. 2021, 183, 81–90. [Google Scholar] [CrossRef] [PubMed]
  23. Statsenko, Y.; Habuza, T.; Talako, T.; Pazniak, M.; Likhorad, E.; Pazniak, A.; Beliakouski, P.; Gelovani, J.G.; Gorkom, K.N.; Almansoori, T.M.; et al. Deep Learning-Based Automatic Assessment of Lung Impairment in COVID-19 Pneumonia: Predicting Markers of Hypoxia With Computer Vision. Front. Med. 2022, 9, 882190. [Google Scholar] [CrossRef] [PubMed]
  24. Balasubramanian, S.B.; Jagadeesh, K.R.; Prabu, P.; Venkatachalam, K.; Trojovský, P. Deep fake detection using cascaded deep sparse auto-encoder for effective feature selection. PeerJ Comput. Sci. 2022, 8, e1040. [Google Scholar] [CrossRef] [PubMed]
  25. Zhang, Y.; Zhang, S.; Li, Y.; Zhang, Y. Single- and Cross-Modality Near Duplicate Image Pairs Detection via Spatial Transformer Comparing CNN. Sensors 2021, 21, 255. [Google Scholar] [CrossRef]
  26. Xia, C.; Pan, Z.; Li, Y.; Chen, J.; Li, H. Vision-based melt pool monitoring for wire-arc additive manufacturing using deep learning method. Int. J. Adv. Manuf. Technol. 2022, 120, 551–562. [Google Scholar] [CrossRef]
  27. Li, W.; Zhang, L.; Wu, C.; Cui, Z.; Niu, C. A new lightweight deep neural network for surface scratch detection. Int. J. Adv. Manuf. Technol. 2022, 123, 1999–2015. [Google Scholar] [CrossRef]
  28. Ritter, N.; Straub, J. Implementation of Hardware-Based Expert Systems and Comparison of Their Performance to Software-Based Expert Systems. Machines 2021, 9, 361. [Google Scholar] [CrossRef]
  29. Shah, A.; Zhan, E.; Sun, J.J.; Verma, A.; Yue, Y.; Chaudhuri, S. Learning Differentiable Programs with Admissible Neural Heuristics. arXiv 2020, arXiv:2007.12101v5. Available online: https://arxiv.org/abs/2007.12101 (accessed on 28 March 2021).
  30. Liu, B.; Mei, C. Lifelong Knowledge Learning in Rule-based Dialogue Systems. arXiv 2020, arXiv:2011.09811v1. Available online: https://arxiv.org/abs/2011.09811 (accessed on 19 November 2020).
  31. Hossein, S.; Zander, P.-O.; Kamal, M.; Chowdhury, L. Belief-Rule-Based Expert Systems for Evaluation of E- Government: A Case Study. arXiv 2014, arXiv:1403.5618. Available online: https://arxiv.org/abs/1403.5618 (accessed on 9 March 2015). [CrossRef]
  32. Price, C.I.; White, P.; Balami, J.; Bhattarai, N.; Coughlan, D.; Exley, C.; Flynn, D.; Halvorsrud, K.; Lally, J.; McMeekin, P.; et al. Improving emergency treatment for patients with acute stroke: The PEARS research programme, including the PASTA cluster RCT. Southampt. Natl. Inst. Health Care Res. 2022, in press. [CrossRef] [PubMed]
  33. Le Breton, S.; Sylvia, S.; Saini, S.; Mousad, A.; Chilton, M.; Lee, S.; Li, L.; MacAskill, M.; Ross, G.; Gentile, J.; et al. A validated algorithm using current literature to judge the appropriateness of anatomic total shoulder arthroplasty utilizing the RAND/UCLA appropriateness method. J. Shoulder Elbow Surg. 2022, 31, e332–e345. [Google Scholar] [CrossRef]
  34. Wang, P.; Shi, T.; Agarwal, K.; Choudhury, S.; Reddy, C.K. Attention-based Aspect Reasoning for Knowledge Base Question Answering on Clinical Notes. arXiv 2021, arXiv:2108.00513. Available online: https://arxiv.org/abs/2108.00513 (accessed on 22 July 2022).
  35. Rajabi, M.; Hossani, S.; Dehghani, F. A literature review on current approaches and applications of fuzzy expert systems. arXiv 2019, arXiv:1909.08794. Available online: https://arxiv.org/abs/1909.08794 (accessed on 19 September 2019).
  36. Yu, Z.; Carver, J.C.; Rothermel, G.; Menzies, T. Assessing Expert System-Assisted Literature Reviews With a Case Study. arXiv 2019, arXiv:1909.07249. Available online: https://arxiv.org/abs/1909.07249 (accessed on 8 April 2022). [CrossRef]
  37. Huang, X.; Tang, X.; Zhang, W.; Pei, S.; Zhang, J.; Zhang, M.; Liu, Z.; Chen, R.; Huang, Y. A Generic Knowledge Based Medical Diagnosis Expert System. arXiv 2021, arXiv:2110.04439. Available online: https://arxiv.org/abs/2110.04439 (accessed on 26 October 2021).
  38. Akanbi, A.K.; Masinde, M. Towards the Development of a Rule-based Drought Early Warning Expert Systems using Indigenous Knowledge. arXiv 2018, arXiv:1809.08101. Available online: https://arxiv.org/abs/1809.08101 (accessed on 19 September 2018).
  39. Duan, X.; Wang, X.; Zhao, P.; Shen, G.; Zhu, W. DeepLogic: Joint Learning of Neural Perception and Logical Reasoning. IEEE Trans. Pattern Anal. Mach. Intell. 2022, in press. [CrossRef]
  40. Kramer, P. Iconic Mathematics: Math Designed to Suit the Mind. Front. Psychol. 2022, 13, 890362. [Google Scholar] [CrossRef]
  41. Matsuda, N.; Takagi, K. Effect of the Choice of Connectives on the Relation between the Logic of Constant Domains and Classical Predicate Logic. arXiv 2021, arXiv:2107.03972. Available online: https://arxiv.org/abs/2107.03972 (accessed on 8 July 2021).
  42. Díaz-Caro, A.; Dowek, G. Extensional proofs in a propositional logic modulo isomorphisms. arXiv 2020, arXiv:2002.03762. Available online: https://arxiv.org/abs/2002.03762 (accessed on 11 February 2022).
  43. Bergstra, J.A.; Ponse, A.; Staudt, D.J.C. Propositional logic with short-circuit evaluation: A non-commutative and a commutative variant. arXiv 2018, arXiv:1810.02142. Available online: https://arxiv.org/abs/1810.02142 (accessed on 4 October 2018).
  44. Fronda, N.; Abbas, H. Differentiable Inference of Temporal Logic Formulas. arXiv 2022, arXiv:2208.05440. Available online: https://arxiv.org/abs/2208.05440 (accessed on 10 August 2022). [CrossRef]
  45. Xu, Z.; Chen, Y.; Topcu, U. Adaptive Teaching of Temporal Logic Formulas to Learners with Preferences. arXiv 2020, arXiv:2001.09956. Available online: https://arxiv.org/abs/2001.09956 (accessed on 27 January 2020). [CrossRef]
  46. Straub, J. Expert System Gradient Descent Style Training: Development of a Defensible Artificial Intelligence Technique. arXiv 2021, arXiv:2103.04314. Available online: https://arxiv.org/abs/2103.04314 (accessed on 7 March 2021). [CrossRef]
  47. Coley, C.W.; Eyke, N.S.; Jensen, K.F. Autonomous discovery in the chemical sciences part I: Progress. arXiv 2020, arXiv:2003.13754. Available online: https://arxiv.org/abs/2003.13754 (accessed on 30 March 2020). [CrossRef] [Green Version]
  48. Young, A.; Wang, B.; Röst, H. MassFormer: Tandem Mass Spectrum Prediction with Graph Transformers. arXiv 2021, arXiv:2111.04824. Available online: https://arxiv.org/abs/2111.04824 (accessed on 15 November 2021).
  49. Cheung, W.W.W.L.; Pitcher, T.J.; Pauly, D. A fuzzy logic expert system to estimate intrinsic extinction vulnerabilities of marine fishes to fishing. Biol. Conserve. 2005, 124, 97–111. [Google Scholar] [CrossRef]
  50. Soltani, A.; Battikh, T.; Jabri, I.; Lakhoua, N. A new expert system based on fuzzy logic and image processing algorithms for early glaucoma diagnosis. Biomed. Signal Process. Control 2018, 40, 366–377. [Google Scholar] [CrossRef]
  51. Li, W.; Zhang, L.; Chen, X.; Wu, C.; Cui, Z.; Niu, C. Fuzzy modelling of surface scratching in contact sliding. IOP Conf. Ser. Mater. Sci. Eng. 2020, 967, 012022. [Google Scholar] [CrossRef]
  52. Li, W.; Zhang, L.; Chen, X.; Wu, C.; Cui, Z.; Niu, C. Predicting the evolution of sheet metal surface scratching by the technique of artificial intelligence. Int. J. Adv. Manuf. Technol. 2021, 112, 853–865. [Google Scholar] [CrossRef]
  53. Karimian, S. Choose qualified instructor for university based on rule-based weighted expert system. arXiv 2022, arXiv:2208.04657. Available online: https://arxiv.org/abs/2208.04657 (accessed on 9 August 2022).
  54. Chary, M.; Boyer, E.W.; Burns, M.W. Diagnosis of Acute Poisoning Using Explainable Artificial Intelligence. arXiv 2021, arXiv:2102.01116. Available online: https://arxiv.org/abs/2102.01116 (accessed on 1 February 2021). [CrossRef] [PubMed]
  55. Shanbhogue, M.H.; Thirumaleshwar, S.; Tegginamath, P.K.; Somareddy, H.K. Artificial Intelligence in Pharmaceutical Field—A Critical Review. Curr. Drug Deliv. 2021, 18, 1456–1466. [Google Scholar] [CrossRef]
  56. Fitzpatrick, B.; Liang, X.S.; Straub, J. Fake News and Phishing Detection Using a Machine Learning Trained Expert System. arXiv 2021, arXiv:2108.08264. Available online: https://arxiv.org/abs/2108.08264 (accessed on 4 August 2021).
  57. Nguyen, A.; O’Dwyer, J.; Vu, T.; Webb, P.M.; Johnatty, S.E.; Spurdle, A.B. Generating high-quality data abstractions from scanned clinical records: Text-mining-assisted extraction of endometrial carcinoma pathology features as proof of principle. BMJ Open 2020, 10, e037740. [Google Scholar] [CrossRef]
  58. Straub, L.; Gagne, J.J.; Maro, J.C.; Nguyen, M.D.; Beaulieu, N.; Brown, J.S.; Kennedy, A.; Johnson, M.; Wright, A.; Zhou, L.; et al. Evaluation of Use of Technologies to Facilitate Medical Chart Review. Drug Saf. 2019, 42, 1071–1080. [Google Scholar] [CrossRef]
  59. Kumari, L.; Singh, S.; Rathore, V.V.S.; Sharma, A. Lexicon and Attention based Handwritten Text Recognition System. arXiv 2022, arXiv:2209.04817. Available online: https://arxiv.org/abs/2209.04817 (accessed on 11 September 2022). [CrossRef]
  60. Such, F.P.; Peri, D.; Brockler, F.; Hutkowski, P.; Ptucha, R. Fully Convolutional Networks for Handwriting Recognition. arXiv 2019, arXiv:1907.04888. Available online: https://arxiv.org/abs/1907.04888 (accessed on 10 July 2019).
  61. Sa-Couto, L.; Wichert, A. Simple Convolutional-Based Models: Are They Learning the Task or the Data? Neural Comput. 2021, 33, 3334–3350. [Google Scholar] [CrossRef] [PubMed]
  62. Fukushima, K. Margined winner-take-all: New learning rule for pattern recognition. Neural Netw. 2018, 97, 152–161. [Google Scholar] [CrossRef]
  63. Pan, X.; Xu, J.; Pan, Y.; Wen, L.; Lin, W.; Bai, K.; Fu, H.; Xu, Z. AFINet: Attentive Feature Integration Networks for image classification. Neural Netw. 2022, 155, 360–368. [Google Scholar] [CrossRef] [PubMed]
  64. Herzog, N.J.; Magoulas, G.D. Convolutional Neural Networks-Based Framework for Early Identification of Dementia Using MRI of Brain Asymmetry. Int. J. Neural Syst. 2022, 32, 2250053. [Google Scholar] [CrossRef]
  65. Sourav, M.S.U.; Wang, H. Intelligent Identification of Jute Pests Based on Transfer Learning and Deep Convolutional Neural Networks. Neural Process Lett. 2022, in press. [CrossRef]
  66. Usman, M.; Zia, T.; Tariq, A. Analyzing Transfer Learning of Vision Transformers for Interpreting Chest Radiography. J. Digit. Imaging 2022, 11, 1–18. [Google Scholar] [CrossRef]
  67. Taye, M.; Morrow, D.; Cull, J.; Smith, D.H.; Hagan, M. Deep Learning for FAST Quality Assessment. J. Ultrasound Med. 2022, 42, 71–79. [Google Scholar] [CrossRef]
  68. Arcot Desai, S.; Tcheng, T.; Morrell, M. Non-linear Embedding Methods for Identifying Similar Brain Activity in 1 Million iEEG Records Captured From 256 RNS System Patients. Front. Big Data 2022, 5, 840508. [Google Scholar] [CrossRef]
  69. Stančić, A.; Vyroubal, V.; Slijepčević, V. Classification Efficiency of Pre-Trained Deep CNN Models on Camera Trap Images. J. Imaging 2022, 8, 20. [Google Scholar] [CrossRef]
  70. Albahli, S.; Ahmad Hassan Yar, G.N. AI-driven deep convolutional neural networks for chest X-ray pathology identification. J. Xray Sci. Technol. 2022, 30, 365–376. [Google Scholar] [CrossRef]
  71. Wang, T.; Zhang, M.; Zhang, J.; Ng, W.W.Y.; Chen, C.L.P. BASS: Broad Network Based on Localized Stochastic Sensitivity. IEEE Trans. Neural Netw. Learn Syst. 2022, in press. [CrossRef] [PubMed]
  72. Wei, W.; Tao, H.; Chen, W.; Wu, X. Automatic recognition of micronucleus by combining attention mechanism and AlexNet. BMC Med. Inform. Decis. Mak. 2022, 22, 138. [Google Scholar] [CrossRef] [PubMed]
  73. Zhu, P.S.; Zhang, Y.R.; Ren, J.Y.; Li, Q.L.; Chen, M.; Sang, T.; Li, W.X.; Li, J.; Cui, X.W. Ultrasound-based deep learning using the VGGNet model for the differentiation of benign and malignant thyroid nodules: A meta-analysis. Front. Oncol. 2022, 12, 944859. [Google Scholar] [CrossRef] [PubMed]
  74. Shoaib, M.; Hussain, T.; Shah, B.; Ullah, I.; Shah, S.M.; Ali, F.; Park, S.H. Deep learning-based segmentation and classification of leaf images for detection of tomato plant disease. Front. Plant. Sci. 2022, 13, 1031748. [Google Scholar] [CrossRef] [PubMed]
  75. Nguyen, V.D.; Bui, N.D.; Do, H.K. Skin Lesion Classification on Imbalanced Data Using Deep Learning with Soft Attention. Sensors 2022, 22, 7530. [Google Scholar] [CrossRef] [PubMed]
  76. Perumal, M.; Nayak, A.; Sree, R.P.; Srinivas, M. INASNET: Automatic identification of coronavirus disease (COVID-19) based on chest X-ray using deep neural network. ISA Trans. 2022, 124, 82–89. [Google Scholar] [CrossRef]
  77. Lin, Q.; Zhou, Y.; Shi, S.; Zhang, Y.; Yin, S.; Liu, X.; Peng, Q.; Huang, S.; Jiang, Y.; Cui, C.; et al. How much can AI see in early pregnancy: A multi-center study of fetus head characterization in week 10-14 in ultrasound using deep learning. Comput. Methods Programs Biomed. 2022, 226, 107170. [Google Scholar] [CrossRef]
  78. Tao, Y.; Hu, H.; Li, J.; Li, M.; Zheng, Q.; Zhang, G.; Ni, M. A preliminary study on the application of deep learning methods based on convolutional network to the pathological diagnosis of PJI. Arthroplasty 2022, 4, 49. [Google Scholar] [CrossRef]
  79. Gholamiankhah, F.; Mostafapour, S.; Abdi Goushbolagh, N.; Shojaerazavi, S.; Layegh, P.; Tabatabaei, S.M.; Arabi, H. Automated Lung Segmentation from Computed Tomography Images of Normal and COVID-19 Pneumonia Patients. Iran. J. Med. Sci. 2022, 47, 440–449. [Google Scholar] [CrossRef]
  80. Wang, W.; Tian, Y.; Xu, Y.; Zhang, X.X.; Li, Y.S.; Zhao, S.F.; Bai, Y.H. 3cDe-Net: A cervical cancer cell detection network based on an improved backbone network and multiscale feature fusion. BMC Med. Imaging 2022, 22, 130. [Google Scholar] [CrossRef]
  81. Ksibi, A.; Zakariah, M.; Ayadi, M.; Elmannai, H.; Shukla, P.K.; Awal, H.; Hamdi, M. Improved Analysis of COVID-19 Influenced Pneumonia from the Chest X-Rays Using Fine-Tuned Residual Networks. Comput. Intell. Neurosci. 2022, 2022, 9414567. [Google Scholar] [CrossRef]
  82. Wang, H.; Li, K.; Xu, C. A New Generation of ResNet Model Based on Artificial Intelligence and Few Data Driven and Its Construction in Image Recognition Model. Comput. Intell. Neurosci. 2022, 2022, 5976155. [Google Scholar] [CrossRef]
  83. Yu, H.; Miao, X.; Wang, H. Bearing Fault Reconstruction Diagnosis Method Based on ResNet-152 with Multi-Scale Stacked Receptive Field. Sensors 2022, 22, 1705. [Google Scholar] [CrossRef]
  84. Yao, J.; Chepelev, L.; Nisha, Y.; Sathiadoss, P.; Rybicki, F.J.; Sheikh, A.M. Evaluation of a deep learning method for the automated detection of supraspinatus tears on MRI. Skeletal Radiol. 2022, 51, 1765–1775. [Google Scholar] [CrossRef]
  85. Fang, G.; Huang, Z.; Wang, Z. Predicting Ischemic Stroke Outcome Using Deep Learning Approaches. Front. Genet. 2022, 12, 827522. [Google Scholar] [CrossRef]
  86. Fan, X.; Feng, X.; Dong, Y.; Hou, H. COVID-19 CT image recognition algorithm based on transformer and CNN. Displays 2022, 72, 102150. [Google Scholar] [CrossRef]
  87. Turki, H.; Shafee, T.; Hadj Taieb, M.A.; Ben Aouicha, M.; Vrandečić, D.; Das, D.; Hamdi, H. Wikidata: A large-scale collaborative ontological medical database. J. Biomed. Inform. 2019, 99, 103292. [Google Scholar] [CrossRef] [Green Version]
  88. Mazandu, G.K.; Hotchkiss, J.; Nembaware, V.; Wonkam, A.; Mulder, N. The Sickle Cell Disease Ontology: Recent development and expansion of the universal sickle cell knowledge representation. Database 2022, 2022, baac014. [Google Scholar] [CrossRef]
  89. Pedro, A.; Pham-Hang, A.T.; Nguyen, P.T.; Pham, H.C. Data-Driven Construction Safety Information Sharing System Based on Linked Data, Ontologies, and Knowledge Graph Technologies. Int. J. Environ. Res. Public Health 2022, 19, 794. [Google Scholar] [CrossRef]
  90. Singh, V.; Kalliolias, G.D.; Ostaszewski, M.; Veyssiere, M.; Pilalis, E.; Gawron, P.; Mazein, A.; Bonnet, E.; Petit-Teixeira, E.; Niarakis, A. RA-map: Building a state-of-the-art interactive knowledge base for rheumatoid arthritis. Database 2020, 2020, baaa017. [Google Scholar] [CrossRef]
  91. Wang, W.; Zhao, D.; Xi, J.; Han, W. A Learning-Based Approach for Lane Departure Warning Systems with a Personalized Driver Model. arXiv 2021, arXiv:1702.01228. Available online: https://arxiv.org/abs/1702.01228 (accessed on 4 February 2017). [CrossRef] [Green Version]
  92. Dong, Y.; Patil, S.; van Arem, B.; Farah, H. A Hybrid Spatial-temporal Deep Learning Architecture for Lane Detection. arXiv 2021, arXiv:2110.04079. Available online: https://arxiv.org/abs/2110.04079 (accessed on 20 July 2022). [CrossRef]
  93. Guo, T.; Wang, Y.; Solorio, L.; Allebach, J.P. Training a universal instance segmentation network for live cell images of various cell types and imaging modalities. arXiv 2022, arXiv:2207.14347. Available online: https://arxiv.org/abs/2207.14347 (accessed on 28 July 2022).
  94. Ben-Haim, T.; Raviv, T.R. Graph Neural Network for Cell Tracking in Microscopy Videos. arXiv 2022, arXiv:2202.04731. Available online: https://arxiv.org/abs/2202.04731 (accessed on 17 July 2022).
  95. Patel, V.; Chesmore, A.; Legner, C.M.; Pandey, S. Trends in Workplace Wearable Technologies and Connected-Worker Solutions for Next-Generation Occupational Safety, Health, and Productivity. Adv. Intel. syst. 2021, 4, 2100099. [Google Scholar] [CrossRef]
  96. Bao, M.; Wu, J.; Yao, X.; Fedkiw, R. Deep Energies for Estimating Three-Dimensional Facial Pose and Expression. arXiv 2018, arXiv:1812.02899. Available online: https://arxiv.org/abs/1812.02899 (accessed on 7 December 2018).
  97. Kimura, S.; Iwai, D.; Punpongsanon, P.; Sato, K. Multifocal Stereoscopic Projection Mapping. arXiv 2021, arXiv:2110.07726. Available online: https://arxiv.org/abs/2110.07726 (accessed on 8 October 2021). [CrossRef]
  98. Sung, G.; Sokal, K.; Uboweja, E.; Bazarevsky, V.; Baccash, J.; Bazavan, E.G.; Chang, C.-L.; Grundmann, M. On-device Real-time Hand Gesture Recognition. arXiv 2021, arXiv:2111.00038. Available online: https://arxiv.org/abs/2111.00038 (accessed on 29 October 2021).
  99. Jha, A.; Ishita; Shenwai, P.G.; Batra, A.; Kotian, S.; Modi, P. GesSure- A Robust Face-Authentication enabled Dynamic Gesture Recognition GUI Application. arXiv 2022, arXiv:2207.11033. Available online: https://arxiv.org/abs/2207.11033 (accessed on 22 July 2022).
  100. Wang, Y.; Albrecht, C.M.; Braham, N.A.A.; Mou, L.; Zhu, X.X. Self-supervised Learning in Remote Sensing: A Review. arXiv 2022, arXiv:2206.13188. Available online: https://arxiv.org/abs/2206.13188 (accessed on 27 June 2022). [CrossRef]
  101. Unni, D.R.; Moxon, S.A.T.; Bada, M.; Brush, M.; Bruskiewich, R.; Caufield, J.H.; Clemons, P.A.; Dancik, V.; Dumontier, M.; Fecho, K.; et al. Biolink Model: A universal schema for knowledge graphs in clinical, biomedical, and translational science. Clin. Transl. Sci. 2022, 15, 1848–1855. [Google Scholar] [CrossRef]
  102. Ullah, U.; Faiz, R.B.; Haleem, M. Modeling and verification of authentication threats mitigation in aspect-oriented mal sequence woven model. PLoS ONE 2022, 17, e0270702. [Google Scholar] [CrossRef]
  103. Vu, T.M.; Probst, C.; Nielsen, A.; Bai, H.; Buckley, C.; Meier, P.S.; Strong, M.; Brennan, A.; Purshouse, R.C. A software architecture for mechanism-based social systems modelling in agent-based simulation models. J. Artif. Soc. Soc. Simul. 2020, 23, 1. [Google Scholar] [CrossRef]
  104. Nehdi, M.L.; Yassine, A. Mitigating Portland Cement CO2 Emissions Using Alkali-Activated Materials: System Dynamics Model. Materials 2020, 13, 4685. [Google Scholar] [CrossRef]
  105. Rykaczewski, K.; Nikadon, J.; Duch, W.; Piotrowski, T. SUPFUNSIM: Spatial Filtering Toolbox for EEG. Neuroinformatics 2021, 19, 107–125. [Google Scholar] [CrossRef]
  106. Alfadel, M.; Aljasser, K.; Alshayeb, M. Empirical study of the relationship between design patterns and code smells. PLoS ONE 2020, 15, e0231731. [Google Scholar] [CrossRef] [Green Version]
  107. Jorayeva, M.; Akbulut, A.; Catal, C.; Mishra, A. Machine Learning-Based Software Defect Prediction for Mobile Applications: A Systematic Literature Review. Sensors 2022, 22, 2551. [Google Scholar] [CrossRef]
  108. Feng, C.; Fu, B.; Luo, Y.; Li, H. The Design and Development of a Ship Trajectory Data Management and Analysis System Based on AIS. Sensors 2021, 22, 310. [Google Scholar] [CrossRef]
  109. Liu, Y.; Chen, J. Effect of ageing on biochar properties and pollutant management. Chemosphere 2022, 292, 133427. [Google Scholar] [CrossRef]
  110. Huang, R.J.; Wang, J.H.; Tseng, C.S.; Tu, Z.W.; Chiang, K.C. Bayesian Edge Detector Using Deformable Directivity-Aware Sampling Window. Entropy 2020, 22, 1080. [Google Scholar] [CrossRef]
  111. Wali, A.; Das, S. Hardware and Information Security Primitives Based on Two-Dimensional Materials and Devices. Adv. Mater. 2022, 23, e2205365. [Google Scholar] [CrossRef]
  112. Putra, K.T.; Chen, H.C.; Prayitno; Ogiela, M.R.; Chou, C.L.; Weng, C.E.; Shae, Z.Y. Federated Compressed Learning Edge Computing Framework with Ensuring Data Privacy for PM2.5 Prediction in Smart City Sensing Applications. Sensors 2021, 21, 4586. [Google Scholar] [CrossRef] [PubMed]
  113. Wang, Y.; Ru, Z.Y.; Wang, K.; Huang, P.Q. Joint Deployment and Task Scheduling Optimization for Large-Scale Mobile Users in Multi-UAV-Enabled Mobile Edge Computing. IEEE Trans. Cybern. 2020, 50, 3984–3997. [Google Scholar] [CrossRef] [PubMed] [Green Version]
Table 1. Truth table regarding P and Q.
Table 1. Truth table regarding P and Q.
PQ¬PP∧QP∨QP⇒QP⇔Q
0010011
0110110
1101111
1000100
Table 2. Main equivalence relations of ethical expressions.
Table 2. Main equivalence relations of ethical expressions.
Title 1Title 2
Double negationP 𠪪P
Associative law(P∧Q)∧R ≡ P∧(Q∧R)
(P∨Q)∨R ≡ P∨(Q∨R)
Distributive lawP∧(Q∧R) ≡ (P∧Q)∨(P∧R)
P∨(Q∨R) ≡ (P∨Q)∧(P∨R)
Law of exchangeP∧Q ≡ Q∧P
P∨Q ≡ Q∨P
De Morgan’s law¬(P∧Q) ≡ ¬P∨¬Q
¬(P∨Q) ≡ ¬P∧¬Q
De Morgan’s law on quantifiers¬(∀ xp(x)) ≡ ∃x(¬p(x))
¬(∃ xp(x)) ≡ ∀x(¬p(x))
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Matsuzaka, Y.; Yashiro, R. AI-Based Computer Vision Techniques and Expert Systems. AI 2023, 4, 289-302. https://doi.org/10.3390/ai4010013

AMA Style

Matsuzaka Y, Yashiro R. AI-Based Computer Vision Techniques and Expert Systems. AI. 2023; 4(1):289-302. https://doi.org/10.3390/ai4010013

Chicago/Turabian Style

Matsuzaka, Yasunari, and Ryu Yashiro. 2023. "AI-Based Computer Vision Techniques and Expert Systems" AI 4, no. 1: 289-302. https://doi.org/10.3390/ai4010013

Article Metrics

Back to TopTop