matlab code is below:-

![34 subplot (2, 2, 2); 35 imshow(stdImage, []); 36 title( Standard Deviation of Image, FontSize, fontSize); 37 % Lets comput](http://img.homeworklib.com/questions/0ef72160-bf75-11ea-991d-c7b50fd8ea46.png?x-oss-process=image/resize,w_560)
Write a MATLAB Code that takes the sum of white and gray pixels and put them...
write a matlab code for histogram and histogram equallization code without built in commands
Write the function compute_histogram, in Matlab, that takes a grayscale image as input and returns a length 256 vector h which is the normalized histogram of the values in the image. h should have values from 0 to 1 and its components should sum to 1.
matlab
Complete the code snippet to create an image that is 32 pixels wide and 32 pixels tall with a blue X on a black background. (The X is just a diagonal line from the top-left to bottom-right corner and a diagonal line from the top-right to bottom-left corner)
Write code in matlab Compute leap years. Write a function (leapyears) that takes two integer arguments (start year and end year) and prints a list of the leap years that occur between them (inclusive of the start and end year). Leap years are divisible by 4. Except that years divisible by 100 are not leap years unless they are also divisible by 400.
Your assignment it to write code in matlab that takes an image and remove shadow from the image. Write the whole code yourself, without using any built-in function. would anyone please help me?
write a matlab code that takes incidence matrix representation of a graph and returns its spaning tree
Matlab
a) Write a MATLAB code that takes the grade letters from the user and provide him/her with the GPA for that semester Enter your grades (letters): AABBC (input) Your GPA is 3.2 output) b) Write a Matlab user defined function to that takes a letter grade and return a numeric grade as shown in the table below. Any other value should give an error message (Invalid Grade). You function name should be Letter2Grade Use the following information to calculate...
Matlab Write a function called matrixsum that takes any matrix to calculate and return the sum of all matrix elements (this function must not use any array operations. It must instead use a for-loop.)
Write a MATLAB code to generate an array of 100 random integers between 1 and 10 using the command “randi”. Using “if” statement, impose the condition that if a number in the array is greater than 5, the number is modified as, number = number – 11. Find the sum of the array and store it. Repeat this exercise for 10, 1000 and 100000 trials and plot the following: (a) Sums obtained vs trails number (b) Histogram of the sum...
Describe some properties of the Gray code? Write the logic function for an 8-bit binary code to 8-bit Gray code function (i.e. g3 = b3)? Write the logic function for an 8-bit Gray code to 8-bit binary code function (i.e. b3 = g3)? Show the 4-bit Gray code output given the 4-bit binary code input. Show the 4-bit binary code output given the 4-bit Gray code input.