{"id":15914,"date":"2022-05-25T05:20:20","date_gmt":"2022-05-25T05:20:20","guid":{"rendered":"https:\/\/blog.datumo.com\/en\/?p=15914"},"modified":"2022-05-25T05:20:20","modified_gmt":"2022-05-25T05:20:20","slug":"image-classification-algorithms","status":"publish","type":"post","link":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/","title":{"rendered":"Image classification Algorithms"},"content":{"rendered":"<p>[vc_section full_width=&#8221;stretch_row&#8221; pix_over_visibility=&#8221;&#8221; css=&#8221;.vc_custom_1650444445523{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f8f9fa !important;}&#8221; el_id=&#8221;pix_section_program&#8221;][vc_row full_width=&#8221;stretch_row&#8221; pix_particles_check=&#8221;&#8221;][vc_column content_align=&#8221;text-center&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text css=&#8221;.vc_custom_1653456155465{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}&#8221;]<\/p>\n<p style=\"text-align: left;\">An image can be defined as a representation of the real world using a snapshot generated from image generation devices such as cameras and scanners. (Parekh, 2021). Images are represented using a two-dimensional pixel matrix in the computer. Image recognition is the ability of a computing device to recognize images and classify them (Zhau, 2016). Image recognition is a subset of computer vision and artificial intelligence.\u00a0 For the general human being the task of recognizing images seems easy because of the existing schemas in the long-term memory of the images we have already seen, but this ability to easily detect images is affected by other factors such as visibility, lightning aging, and many other factors. This has led to more research in image recognition by machines. Though the task is simple for humans, it is a complex process for the machine. This is because computers see images as numeric values and therefore need to recognize the patterns of values that form a particular image.\u00a0 Image recognition has become popular in the recent past due to the development of artificial neural networks and the improvements in the memory and processing power of computing devices.<\/p>\n<p style=\"text-align: left;\">Image recognition can be divided into two processes; image detection and classification. Image detection is the first process where a set of algorithms are used to pre-process the image. Image classification then follows, here the image is put into its class. There has been a great improvement in the ability of computers to detect and classify images in the recent past. In this blog post, we are going to discuss some of the machine learning algorithms that are used for image classification. We are going to look at what they are, their strengths and weakness, and the problem areas they are best suited.<\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][\/vc_section][vc_row pix_particles_check=&#8221;&#8221;][vc_column]<div id=\"el1650442607008-a85a832d-43f0\" class=\"w-100 d-block \"><\/div>[vc_column_text css=&#8221;.vc_custom_1653456229922{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: px !important;padding-left: 20px !important;}&#8221;]<\/p>\n<h5><strong>1. Support vector machine<\/strong><\/h5>\n<p>&nbsp;<\/p>\n<p>Support vector machine (SVM) is a supervised machine learning algorithm. Supervised machine learning algorithms train on labeled data i.e., data that has a matching output. SVM can be used for both classification and regression. It works by creating hyperplanes in a space that is multidimensional in order to create a separation of the different classes. The advantages of the support vector machine include Effectiveness in spaces that have high dimensions; If you have cases that the dimensions are higher than the sample number, SVM is still effective; They are efficient in terms of memory use because of their ability to use training points subsets. Some weaknesses of SVM are: They can lead to overfitting in cases where the feature number is greater than the sample size and they do not have a direct way of providing probability estimates.<\/p>\n<p>&nbsp;<\/p>\n<p><figure id=\"attachment_15902\" aria-describedby=\"caption-attachment-15902\" style=\"width: 622px\" class=\"wp-caption aligncenter\"><img fetchpriority=\"high\" decoding=\"async\" class=\"size-full wp-image-15902\" src=\"https:\/\/blog.datumo.com\/en\/wp-content\/uploads\/2022\/05\/p1.png\" alt=\"\" width=\"622\" height=\"408\" \/><figcaption id=\"caption-attachment-15902\" class=\"wp-caption-text\">Fig 1. Support vector machine diagram<\/figcaption><\/figure>[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1653456550350{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: px !important;padding-left: 20px !important;}&#8221;]<\/p>\n<h5><strong>2. Decision trees<\/strong><\/h5>\n<p>&nbsp;<\/p>\n<p>Decision trees (DT) are one of the simplest classification algorithms and can be used for both classification and regression. Depending on the turning of the parameters, decision trees can yield good results (Raj, 2021). DT derives its name from its structure which is tree like. DT are a set of rules that do the conversion of information such as image pixels to its appropriate class. The classification to classes is based on learning decision rules from the data features.\u00a0 Some of the advantages of DTs include; They are easy to interpret and understand because they can be visualized; less data preparation is required as compared to other algorithms; The DT can handle categorical and numerical data; because it is based on a white-box model, the results from a DT are easy to interpret; the reliability of the model can easily be tested using statistical methods. Even though it has its advantages, DT also has disadvantages such as; being prone to overfitting, it is, therefore, necessary to define the depth and the number of nodes for DT before training it; they are also not very stable, as different trees can be generated with slight variations in the data; they need prior balancing of the dataset before fitting to avoid the creation of biased trees.<\/p>\n<p>&nbsp;<\/p>\n<figure id=\"attachment_15903\" aria-describedby=\"caption-attachment-15903\" style=\"width: 500px\" class=\"wp-caption aligncenter\"><img decoding=\"async\" class=\"wp-image-15903\" src=\"https:\/\/blog.datumo.com\/en\/wp-content\/uploads\/2022\/05\/p2-760x1024.png\" alt=\"\" width=\"500\" height=\"674\" \/><figcaption id=\"caption-attachment-15903\" class=\"wp-caption-text\">Fig 1: Example of a decision tree, adapted from (Yang et al., 2003)<\/figcaption><\/figure>\n<p>&nbsp;[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1653456349162{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: px !important;padding-left: 20px !important;}&#8221;]<\/p>\n<h5><strong>3. K-nearest neighbors<\/strong><\/h5>\n<p>&nbsp;<\/p>\n<p>K-nearest neighbors(KNN) are regarded as one of the simplest classification algorithms for image classification. They work by identifying a number of training samples that are closest to the new point or thing to be classified and providing the classification based on those samples. For example, if you are trying to determine if an image is of a cat or dog using some dataset of cats and dogs, the KNN will create a grouping of the dataset and the new image will be classified according to the nearest distance to the clusters. If the image is near the dog cluster, it will be classified as a dog. The number of samples can be user-defined or determined by the density of the points. To use k-nearest neighbors for classification, you need to determine a metric such as the Euclidian distance that is commonly used. The choice of the metric to be used is dependent on the type of data one has. The success of K-nearest has been in cases of irregular decision boundaries. Some of the advantages of K-nearest neighbors include: Ease of interpretation, calculations performed faster and high levels of accuracy.<\/p>\n<p>&nbsp;<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-15904\" src=\"https:\/\/blog.datumo.com\/en\/wp-content\/uploads\/2022\/05\/p3.png\" alt=\"\" width=\"514\" height=\"418\" \/>[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1653456495449{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: px !important;padding-left: 20px !important;}&#8221;]<\/p>\n<h5><strong>4. Artificial neural networks<\/strong><\/h5>\n<p>&nbsp;<\/p>\n<p>Artificial Neural Networks (ANN) are a result of trying to emulate the biological neural system. Their creation is done by programming computers to behave like interconnected cells in the brain. ANN is generally used to provide solutions to problems that have a noisy dataset and have no linear ties. The ANN model can be generated from the data available and can be adapted to problems from a wide range. ANN is not well fitted to solve problems that are well-defined and deterministic.<\/p>\n<p>&nbsp;<\/p>\n<figure id=\"attachment_15905\" aria-describedby=\"caption-attachment-15905\" style=\"width: 483px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-15905\" src=\"https:\/\/blog.datumo.com\/en\/wp-content\/uploads\/2022\/05\/p4.png\" alt=\"\" width=\"483\" height=\"227\" \/><figcaption id=\"caption-attachment-15905\" class=\"wp-caption-text\">Fig 3: Artificial Neural networks<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<p>The Convolutional neural network (CNN) which is a special type of ANN has been used to improve the accuracy of image detection of ANN. CNN often contains one or two convolutional layers and then preceded and followed by input and output dense layers respectively. Convolutional layers work as a filter to bring to focus the dominant features of an image. By applying convolutional layers, the accuracy of an ANN in classifying an image improves. There are other variations of ANN that are used to improve performance based on the type of the data being classified such as Long Short-Term Memory (LSTM) and Recurrent Neural Network (RNN).[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1653456522825{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: px !important;padding-left: 20px !important;}&#8221;]<\/p>\n<h5><strong>5. Naive Bayes classification<\/strong><\/h5>\n<p>&nbsp;<\/p>\n<p>Naive Bayes are algorithms are based on methods for Bayesian classification which are derived from the Bayesian theory. Naive Bayes is a probability-based method. The label with the highest probability becomes the label for the given image that is being classified based on the selected features. In other words, given the features in an image, what is the probability of that image belonging to a certain label. Naive Bayes models are regarded to be fast and most suitable for high-dimensional data. The algorithms are named na\u00efve based on the fact that you have to make na\u00efve assumptions about the generative model that is used to generate the labels. The Gaussian na\u00efve Bayes (GNV) makes the assumption that the Gaussian distribution is the source of data for each label.\u00a0 The GNV has the advantage of being easy to understand. Multinomial na\u00efve Bayes makes the assumption that data is generated from multinomial distributions that are simple.<\/p>\n<p>&nbsp;<\/p>\n<p>The advantages of na\u00efve Bayes classification include; their ability to be easily interpreted, few tunable parameters, and that the provided probabilistic predictions are straightforward. Na\u00efve Bayes classifications are mostly used as the starting point classifiers before you explore more complicated classifiers. They are most preferred when the complexity of the model is not of any importance.[\/vc_column_text]<div id=\"el1650294913061-211813f5-5f2d\" class=\"w-100 d-block \"><\/div><div id=\"el1650294706431-aee6a9e2-7326\" class=\"w-100 d-block \"><\/div>[\/vc_column][\/vc_row][vc_section full_width=&#8221;stretch_row&#8221; pix_over_visibility=&#8221;&#8221; css=&#8221;.vc_custom_1650444445523{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f8f9fa !important;}&#8221;][vc_row full_width=&#8221;stretch_row&#8221; pix_particles_check=&#8221;&#8221;][vc_column content_align=&#8221;text-center&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-1 vc_col-md-10&#8243;]<div  class=\"pix-heading-el text-left \"><div><div class=\"slide-in-container\"><h5 class=\"text-heading-default font-weight-bold heading-text el-title_custom_color mb-12\" style=\"\" data-anim-type=\"\" data-anim-delay=\"0\">REFERENCES<\/h5><\/div><\/div><\/div>[vc_column_text css=&#8221;.vc_custom_1653456465388{padding-top: 40px !important;padding-bottom: px !important;}&#8221;]<\/p>\n<p style=\"text-align: left;\">Parekh, R. (2021). <em>Fundamentals of Image, Audio, and Video Processing Using Matlab<\/em>.<\/p>\n<p style=\"text-align: left;\">Raj, A. (2021). <em>An Exhaustive Guide to Decision Tree Classification How are Decisions Made in a Decision Tree\u202f<\/em><em>?<\/em><\/p>\n<p style=\"text-align: left;\">Yang, C. C., Prasher, S. O., Enright, P., Madramootoo, C., Burgess, M., Goel, P. K., &amp; Callum, I. (2003). Application of decision tree technology for image classification using remote sensing data. <em>Agricultural Systems<\/em>, <em>76<\/em>(3), 1101\u20131117. https:\/\/doi.org\/10.1016\/S0308-521X(02)00051-3<\/p>\n<p style=\"text-align: left;\">Zhau, S. K. (2016). Medical Image Recognition, Segmentation and Parsing. In <em>Medical Image Recognition, Segmentation and Parsing<\/em>. https:\/\/doi.org\/10.1016\/c2014-0-02794-3<\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][\/vc_section][vc_row pix_particles_check=&#8221;&#8221;][vc_column width=&#8221;1\/2&#8243;]<div id=\"el1646794934167-c0c94dd3-ea74\" class=\"w-100 d-block \"><\/div><div class=\" mb-3 mb-md-0 \"  ><div class=\"card w-100 h-100 bg-white   pix-hover-item rounded-10 position-relative overflow-hidden2 text-white tilt fancy_card\" ><div class=\"card-img-overlay overflow-visible d-inline-block w-100 pix-img-overlay pix-p-30 d-flex align-items-end text-left\"><div class=\"w-100 \"><h3 class=\"card-title  text-black font-weight-bold mb-0 animate-in\" style=\"\">See what we can do for you.<\/h3><p class=\"card-text pix-pt-10 text-black \" style=\"\">Build smarter AI with us.<\/p><div class=\"card-btn-div mt-4 d-inline-block w-100\"><a  href=\"https:\/\/datumo.com\" class=\"btn mb-2     text-white btn-black d-inline-block      btn-md\" target=\"_blank\" rel=\"noopener\"    ><span class=\"font-weight-bold \" >Learn More<\/span><\/a><\/div><\/div><\/div><\/div><\/div>[\/vc_column][vc_column width=&#8221;1\/2&#8243;]<div id=\"el1646794982519-9a19190b-7fde\" class=\"w-100 d-block \"><\/div><div class=\" mb-3 mb-md-0 \"  ><div class=\"card w-100 h-100 bg-black   pix-hover-item rounded-10 position-relative overflow-hidden2 text-white tilt fancy_card\" ><div class=\"card-img-overlay overflow-visible d-inline-block w-100 pix-img-overlay pix-p-30 d-flex align-items-end text-left\"><div class=\"w-100 \"><h3 class=\"card-title  text-white font-weight-bold mb-0 animate-in\" style=\"\">We would like to support the AI industry by sharing.<\/h3><p class=\"card-text pix-pt-10 text-white \" style=\"\"><\/p><div class=\"card-btn-div mt-4 d-inline-block w-100\"><a  href=\"https:\/\/open.datumo.com\/en\" class=\"btn mb-2     btn-primary d-inline-block      btn-md\" target=\"_blank\" rel=\"noopener\"    ><span class=\"font-weight-bold \" >Download Open Datasets<\/span><\/a><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row pix_particles_check=&#8221;&#8221;][vc_column]<div id=\"el1646799961152-e3ee06c0-4e82\" class=\"w-100 d-block \"><\/div>[\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_section full_width=&#8221;stretch_row&#8221; pix_over_visibility=&#8221;&#8221; css=&#8221;.vc_custom_1650444445523{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f8f9fa !important;}&#8221; el_id=&#8221;pix_section_program&#8221;][vc_row full_width=&#8221;stretch_row&#8221; pix_particles_check=&#8221;&#8221;][vc_column content_align=&#8221;text-center&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text css=&#8221;.vc_custom_1653456155465{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}&#8221;] An image can be defined as a representation of the real world using&#8230;<\/p>\n","protected":false},"author":1,"featured_media":2221,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","footnotes":""},"categories":[24],"tags":[],"table_tags":[],"class_list":["post-15914","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Image classification Algorithms - \ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Image classification Algorithms - \ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0\" \/>\n<meta property=\"og:description\" content=\"[vc_section full_width=&#8221;stretch_row&#8221; pix_over_visibility=&#8221;&#8221; css=&#8221;.vc_custom_1650444445523{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f8f9fa !important;}&#8221; el_id=&#8221;pix_section_program&#8221;][vc_row full_width=&#8221;stretch_row&#8221; pix_particles_check=&#8221;&#8221;][vc_column content_align=&#8221;text-center&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text css=&#8221;.vc_custom_1653456155465{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}&#8221;] An image can be defined as a representation of the real world using...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-25T05:20:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.datumo.com\/en\/wp-content\/uploads\/2022\/05\/p1.png\" \/>\n<meta name=\"author\" content=\"selectstar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"selectstar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\"},\"author\":{\"name\":\"selectstar\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/person\/22d8a968b9bae37589037ecc7d84dfba\"},\"headline\":\"Image classification Algorithms\",\"datePublished\":\"2022-05-25T05:20:20+00:00\",\"dateModified\":\"2022-05-25T05:20:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\"},\"wordCount\":1962,\"publisher\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#organization\"},\"articleSection\":[\"\ud14c\ud06c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\",\"url\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\",\"name\":\"Image classification Algorithms - \ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0\",\"isPartOf\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#website\"},\"datePublished\":\"2022-05-25T05:20:20+00:00\",\"dateModified\":\"2022-05-25T05:20:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dev.selectstar.ai\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Image classification Algorithms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#website\",\"url\":\"https:\/\/dev.selectstar.ai\/ko\/\",\"name\":\"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0\",\"description\":\"Your AI Data Standard\",\"publisher\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dev.selectstar.ai\/ko\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#organization\",\"name\":\"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0\",\"url\":\"https:\/\/dev.selectstar.ai\/ko\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2024\/08\/cropped-sb-1.webp\",\"contentUrl\":\"https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2024\/08\/cropped-sb-1.webp\",\"width\":1276,\"height\":167,\"caption\":\"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0\"},\"image\":{\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/person\/22d8a968b9bae37589037ecc7d84dfba\",\"name\":\"selectstar\",\"url\":\"https:\/\/dev.selectstar.ai\/ko\/author\/selectstar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Image classification Algorithms - \ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/","og_locale":"ko_KR","og_type":"article","og_title":"Image classification Algorithms - \ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0","og_description":"[vc_section full_width=&#8221;stretch_row&#8221; pix_over_visibility=&#8221;&#8221; css=&#8221;.vc_custom_1650444445523{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f8f9fa !important;}&#8221; el_id=&#8221;pix_section_program&#8221;][vc_row full_width=&#8221;stretch_row&#8221; pix_particles_check=&#8221;&#8221;][vc_column content_align=&#8221;text-center&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text css=&#8221;.vc_custom_1653456155465{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}&#8221;] An image can be defined as a representation of the real world using...","og_url":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/","og_site_name":"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0","article_published_time":"2022-05-25T05:20:20+00:00","og_image":[{"url":"https:\/\/blog.datumo.com\/en\/wp-content\/uploads\/2022\/05\/p1.png"}],"author":"selectstar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"selectstar","Est. reading time":"10\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/#article","isPartOf":{"@id":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/"},"author":{"name":"selectstar","@id":"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/person\/22d8a968b9bae37589037ecc7d84dfba"},"headline":"Image classification Algorithms","datePublished":"2022-05-25T05:20:20+00:00","dateModified":"2022-05-25T05:20:20+00:00","mainEntityOfPage":{"@id":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/"},"wordCount":1962,"publisher":{"@id":"https:\/\/dev.selectstar.ai\/ko\/#organization"},"articleSection":["\ud14c\ud06c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/","url":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/","name":"Image classification Algorithms - \ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0","isPartOf":{"@id":"https:\/\/dev.selectstar.ai\/ko\/#website"},"datePublished":"2022-05-25T05:20:20+00:00","dateModified":"2022-05-25T05:20:20+00:00","breadcrumb":{"@id":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dev.selectstar.ai\/ko\/image-classification-algorithms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dev.selectstar.ai\/ko\/"},{"@type":"ListItem","position":2,"name":"Image classification Algorithms"}]},{"@type":"WebSite","@id":"https:\/\/dev.selectstar.ai\/ko\/#website","url":"https:\/\/dev.selectstar.ai\/ko\/","name":"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0","description":"Your AI Data Standard","publisher":{"@id":"https:\/\/dev.selectstar.ai\/ko\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.selectstar.ai\/ko\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/dev.selectstar.ai\/ko\/#organization","name":"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0","url":"https:\/\/dev.selectstar.ai\/ko\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/logo\/image\/","url":"https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2024\/08\/cropped-sb-1.webp","contentUrl":"https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2024\/08\/cropped-sb-1.webp","width":1276,"height":167,"caption":"\ub370\uc774\ud130\ub294 \uc140\ub809\ud2b8\uc2a4\ud0c0"},"image":{"@id":"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dev.selectstar.ai\/ko\/#\/schema\/person\/22d8a968b9bae37589037ecc7d84dfba","name":"selectstar","url":"https:\/\/dev.selectstar.ai\/ko\/author\/selectstar\/"}]}},"uagb_featured_image_src":{"full":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1.jpg",1820,1660,false],"thumbnail":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-150x150.jpg",150,150,true],"medium":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-300x274.jpg",300,274,true],"medium_large":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-768x700.jpg",640,583,true],"large":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-1024x934.jpg",640,584,true],"1536x1536":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-1536x1401.jpg",1536,1401,true],"2048x2048":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1.jpg",1820,1660,false],"pix-blog-small":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-622x400.jpg",622,400,true],"pix-portfolio-small":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-600x450.jpg",600,450,true],"pix-big":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-600x450.jpg",600,450,true],"pix-square-sm":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-400x400.jpg",400,400,true],"pix-woocommerce-xs":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-75x75.jpg",75,75,true],"pix-woocommerce-md":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-460x460.jpg",460,460,true],"pix-xxl":["https:\/\/dev.selectstar.ai\/ko\/wp-content\/uploads\/2020\/02\/portfolio-3-2-1-1820x1080.jpg",1820,1080,true]},"uagb_author_info":{"display_name":"selectstar","author_link":"https:\/\/dev.selectstar.ai\/ko\/author\/selectstar\/"},"uagb_comment_info":0,"uagb_excerpt":"[vc_section full_width=&#8221;stretch_row&#8221; pix_over_visibility=&#8221;&#8221; css=&#8221;.vc_custom_1650444445523{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f8f9fa !important;}&#8221; el_id=&#8221;pix_section_program&#8221;][vc_row full_width=&#8221;stretch_row&#8221; pix_particles_check=&#8221;&#8221;][vc_column content_align=&#8221;text-center&#8221; offset=&#8221;vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-1 vc_col-md-10&#8243;][vc_column_text css=&#8221;.vc_custom_1653456155465{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}&#8221;] An image can be defined as a representation of the real world using...","_links":{"self":[{"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/posts\/15914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/comments?post=15914"}],"version-history":[{"count":0,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/posts\/15914\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/media\/2221"}],"wp:attachment":[{"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/media?parent=15914"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/categories?post=15914"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/tags?post=15914"},{"taxonomy":"table_tags","embeddable":true,"href":"https:\/\/dev.selectstar.ai\/ko\/wp-json\/wp\/v2\/table_tags?post=15914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}