Non maximum suppression is a technique used in object detection to filter bounding boxes generated by object detection algorithms. If we don’t use NMS, we will get an image with dense frames.
The confusion matrix is a tool used to measure the performances of models. This allows data scientists to analyze and optimize models. Therefore, when learning machine learning, we must learn to use confusion matrix. In addition, this article will also introduce accuracy, recall, precision, and F1 score.
YOLO (You Only Look Once) is a popular object detection model. Its high performance and high accuracy made it popular quickly. This article will introduce how to use YOLOv8 for object detection.
Swift package manager plugins allow us to customize some actions during build time to meet more complex compilation requirements, such as code generation.
Compared with Xcode project’s Build Settings, Package.swift is much simpler to use. However, when we convert a Xcode framework project into a Swift package, the XCFramework cannot be built successfully.
Apple Pay is Apple’s mobile payment service. We can use Apple Pay to make a tap-to-pay in physical stores or purchase goods in apps. In addition, the Wallet app in iPhone can manage credit cards, so we don’t need to carry several credit cards.
Google Pay is Google’s mobile payment service. We can use Google Pay make a tap-to-pay in physical stores, and we can also purchase goods in apps. In addition, Google Wallet can manage credit cards, so we don’t need to carry several credit cards.
Elliptic Curve Digital Signature Algorithm (ECDSA) is a digital signature algorithm (DSA) commonly used for digital signatures. This article will introduce how to use ECDSA to sign and verify in Android and iOS.
Calling conventions refers to the specifications that the two functions should follow when one function calls another function. For example, how to pass parameters and a return value between them. Calling conventions are part of the application binary interface (ABI).