What is the general procedure of computer vision recognition paradigm?
List three Thresholding techniques
Describe the main procedure of Canny Edge Detection Algorithm
Compare the Canny Edge Detection Algorithm and general edge detection methods, what is the major improvement with Canny method?
List three Corner and Interest Point Detection method
List three basic 1x3 masks of Laws' Texture Energy approach
Manufactured good often check using digital image processing. Given the following picture taken from a product line. Design a computer vision inspection procedure to detect the abnormal bottles for this product line. You just need to draw the block diagram of yur idea.
Given a 5x5 image as the following matrix: 30 32 100 102 100 30 32 100 102 100 70 32 100 102 100 30 31 100 102 100 31 31 100 102 100 Compute the threshold value by: a. Adaptive Thresholding method, given the inital threshold 60 b. Golval Valley approach c. Variance-based Thresholding d. Apply the Hysteresis Thresholding method to detect the edge. Set the initial upper threshold as 101 and low threshold level as 60 e. Compare the results of question a and d, what is the difference? Can you tell the advantage of Hystersis thresholding method?
Apply the following Sobel edge detection masks s1 and s2 for image given in Problem 8 a. Compute the edge magnitude s = abs(s_x) + abs(s_y) b. Compute the edge magnitude s = max(abs(s_x), abs(s_y))
Given a 5x5 image as the following matrix: 20 20 20 20 20 20 20 20 20 20 20 20 200 200 200 20 20 200 200 200 20 20 200 200 200 Detect the corner by the following methods: a. Template Matching using the following mask and show what you have detected. -4 -4 -4 -4 5 5 -4 5 5 b. Given the following first-order derivation masks s1 and s2. Compute Hessian corner response of the center pixel in the above given image. s1: [[-1, -1, -1], [0, 0, 0], [1, 1, 1]] s2: [[-1, 0, 1], [-1, 0, 1], [-1, 0, 1]] c. Compute the Harris corner signal of the center pixel in the above given image using the first-order derivation masks s1 and s2.