How can I find the value of a blury image Matlab question
Posted
by user332447
on Stack Overflow
See other posts from Stack Overflow
or by user332447
Published on 2010-05-04T14:23:29Z
Indexed on
2010/05/04
15:28 UTC
Read the original article
Hit count: 127
matlab
Is there a method to detect the value of a image rgb that is blury?
I simply want to store the blury value of my image in a variable called blury value? Is there a dedicated function?
%image1 which is rgb is stored in variable img1
img1 = imread('102.jpg');
% conversion to grayscale stored in img1_grey variable
img1_grey = rgb2gray(img1);
blury_value = function_matlab(img1)
© Stack Overflow or respective owner