shape to Obtain the Image Dimension (Height and Width) - Python for Integrated Circuits - - An Online Book - |
||||||||
Python for Integrated Circuits http://www.globalsino.com/ICs/ | ||||||||
Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix | ||||||||
================================================================================= ============================================ ============================================ np.zeros(5); np.zeros((1,M)); np.zeros((3, 5)); np.zeros((2, 3, 4)); np.zeros((N,1)); np.ones((2, 3, 4, 3)); np.eye(3); np.random.random((2,3)); np.random.rand(2,3); np.shape(0); np.array( [2.71, 3.14, 3000]); np.arange(1, 10); np.arange(6); np.arange(0, 12, 2); np.linspace(0, 10, 5); np.hstack([0, 14]); np.vstack([0, 14]). Code: ============================================ Compare two images using the structural similarity algorithm (SSIM). The images need to have the same resolution. Code: ============================================ Convert RGB(color) image into three Blue, Green, Red images. Code: ============================================ Template-image matching with a threshold. Optimized threshold is 0.8 normally. Code: ============================================ Image matching with cross correlation and overlap of template edge. Code: ============================================ Template Matching. Code: ============================================ Numpy splicing. Code: ============================================ Simple rotation of an image around an axis. Code: ============================================ Find the height and width of wafer maps. Code:
|
||||||||
================================================================================= | ||||||||
|
||||||||