Rich's Wordpress

又一个WordPress站点

Year: 2024

OpenCV 13: Thresholding

Simple Thresholding Thresholding is the binarization of an image, it is useful when we want to convert a normal image to a binary image, that is an image where pixels are either 0 (black) or 255 (white). We would provide the computer a thresholding value, and compare each pixel of the image to this thresholded […]

BeBOP Chapter 14 Key Note: Integrated Circuits

The Fabrication Process The construction of integrated circuits requires an environment that must be extremely clean, the impurities in material have to be so low as to be measured in parts per billion. The process begins with the growing of a crystal of pure silicon in the form of a cylinder, the cylinder is cut […]

OpenCV 11: Masking

Select an image to mask on, and create a blank image to create the shape of the mask. Create a circle and rectangle mask respectively. Use bit operation to combine the mask and the image.

Building XNOR Gate

XNOR and XOR gates are primitive logic gates. In XNOR, when two inputs are the same, the output is logic 1 and when the two inputs are different, the output is 0. This gate can be built using pass-logic transistors meaning that one of the inputs is connected to the source of the transistors rather […]

BeBOP Chapter 12 Key Note: State Machine

State Diagrams State diagrams are used to abstract functions such as a controller, it consist of a set of states through which it sequences. The current state depends on the previous state combined with the previous values and the next state depends on the current state combined with the current values. The arcs connecting the […]

Scroll to top