Read in any image using:img = imageio.imread('x.png',as_gray=True)plt.figure()plt.imshow(img, cmap='gray') 1. Convolve the image using:x = ndimage.convolve1d(img,dx,axis= 0)gx_I =...

1 answer below »

Read in any image using:img = imageio.imread('x.png',as_gray=True)plt.figure()plt.imshow(img, cmap='gray')1. Convolve the image using:x = ndimage.convolve1d(img,dx,axis= 0)gx_I = ndimage.convolve(x,s)y = ndimage.convolve1d(img,dx,axis= 1)gy_I = ndimage.convolve(y,s)# alternative, you can use np.gradient()gx_I,gy_I = np.gradient(img)[:2]Then design a smooth gradient filter that just performs the convolution operation once and extracts the edge of the images? Plot the gradients images and the magnitudes, use subplot.2. Given:noisy = img + 0.4 * img.std() * np.random.random(img.shape)# # adding salt and peper noise to the image# # adding saltnum_salt = np.ceil(0.05 * img.size * 0.5)coords = [np.random.randint(0, i - 1, int(num_salt)) for i in img.shape]out=C.copy(l) out[coords] = 255# # adding peppernum_pepper = np.ceil(0.05* img.size * (1. - 0.05))coords = [np.random.randint(0, i - 1, int(num_pepper)) for i in img.shape]out[coords] = 0out=out.reshape(img.shape)Andplt.figure()plt.imshow(out, cmap=plt.cm.gray, vmin=40, vmax=220)plt.axis('off')plt.title('added gaussian noise', fontsize=20)a. gaussian denoise? b. can you remove the noise by using Gaussian filter? try also box filter and median filter. nd.gaussian_filter, etc. c. plot the denoised image. Plot as subplots.

a) Generate an image of a rotated rectangle. you can create a rectangle by filling center pixels 1 and the rest zero. ndimage.rotate can be used to rotate the image. b) Blur the image using a Gaussian filter. c) apply sobel filter to both x and y direction d) Display the original image, x-derivatives, y-derivatives. use np.hypot to compute the magnitude.
Answered 1 days AfterSep 27, 2021

Answer To: Read in any image using:img = imageio.imread('x.png',as_gray=True)plt.figure()plt.imshow(img,...

Sathishkumar answered on Sep 29 2021
138 Votes
# -*- coding: utf-8 -*-
"""
Created on Wed Sep 29 00:34:05 2021
@author: Sathish
"""
import ima
geio
import matplotlib.pyplot as plt
import numpy as np
from scipy import ndimage
from PIL import Image
from numpy import *
from scipy.ndimage import filters
from PIL import Image,...
SOLUTION.PDF

Answer To This Question Is Available To Download

Submit New Assignment

Copy and Paste Your Assignment Here