Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
16 Nov 2009 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Saberi, Alireza

nice

03 Nov 2009 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh srin, vsrin2

Good program. I would like to output the black and white images (intermediate step) to a data file showing only 0 and 1's. how can i do it?

22 Jul 2009 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh wan, Jun

15 May 2009 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh yi, long

很好!

23 Jun 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Stewart, Christian

Its very useful for me. Can you tell me how Triangle can be recognized in similar way??

14 May 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh v, bharathi

nice to see this one .thank you

29 Apr 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh cuicui, chen

09 Apr 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Laosuwan, Nutthasit

good

31 Mar 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Hurray, Rocky

06 Feb 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh sellaouti, aymen

Think you very much for your contribution

31 Jan 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh langah, Aamir

thank you very much for your contribution which is helpful for the most of students of image processing field

25 Jan 2008 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh ALAGIAMANAVALAN, RAJALAKSHMI

Hi,I have interest to view this file.Thankyou.

30 Nov 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh basinio, kevin scott

its good

02 Nov 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Kulkarni, Hrushikesh

extremely good job
and quite inspiring work

thanks

30 Oct 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Samieh, Ahmed

FAQ:
Q1 - In your program, what do you mean by
Classify Shapes according to properties
% Square = 3 = (1 + 2) = (X=Y + Extent = 1)
% Rectangular = 2 = (0 + 2) = (only Extent = 1)
% Circle = 1 = (1 + 0) = (X=Y , Extent < 1)
% UNKNOWN = 0
---------------
A1 -
the answer of (X == Y) ---> true or false ---> 1 or 0
X is the X-dimension and Y is the Y-dimension
so i check if X-dimension equal Y-dimension of the object
if true it will give 1 else it will give 0
in 8-bit binary integer it will be 00000001 or 00000000 (equ 1)
ok....
again with (Extent = 1) ---> 1 or 0
multiply the result by 2 will give 2 or 0
in 8-bit binary integer it will be 00000010 or 00000000 (equ 2)
ok...
adding the result of (equ 1) and (equ 2) give
 
    00000011 (3) ---> 00000010 (2) (Extent equal 1) + 00000001 (1) (X-dimension equal Y-dimension)
or 00000010 (2) ---> 00000010 (2) (Extent equal 1) + 00000000 (0) (X-dimension not equal Y-dimension)
or 00000001 (1) ---> 00000000 (0) (Extent not equal 1) + 00000001 (1) (X-dimension equal Y-dimension)
or 00000000 (0) ---> 00000000 (0) (Extent not equal 1) + 00000000 (0) (X-dimension not equal Y-dimension)

28 Oct 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh kuruppu, imesha

26 Oct 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Javid, Tariq

Good work! This has inspired me a lot. I found it useful for error/noise free autonomous inspection. Another application area may be atifically created images.

28 Sep 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Samieh, Ahmed

do you know what is the problem ?
the problem is, camera images has noise, so you need to reduce the noise (image enhancement)befor the recognation

27 Sep 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Arshad, Hammad

Does not work with images taken by a camera
Gives a lot of squares and circles where it is not needed

20 Sep 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Barragán, Diego

17 Sep 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh m, mahesh

10 Sep 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh Javid, Tariq

Excellent, as circle shape classification approach inspired me to work on hexagon generation from an identified circle in an image

22 Aug 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh c, b

good

15 Aug 2007 Shape Recognition differentiate Square, Rectangular, Circle from others Author: Ahmed Samieh scheinfeild, michael

this is very good example how to classify shapes
i think to add also elipse detection
i need to think about it
thw width not equal height
and also it not fill the bounding box but it is true to the other not detected shape so i want to add more criterions

19 Jul 2007 Image Zoomin Digital Image Zoomin (gray and color images) Author: Ahmed Samieh Y., Deniz

I'm sorry: In the "YUV2RGB.m" file, Line12, column30, it writes YUV. It should be RGB to convert it to RGB

19 Jul 2007 Image Zoomin Digital Image Zoomin (gray and color images) Author: Ahmed Samieh Yurdasen, Deniz

in the "YUV2RGB.m" file, Column14, Row30, it writes YUV. It should be RGB to convert it to RGB.

04 Jul 2007 2-D DCT/IDCT for JPEG Compression Fast Implementation of 8X8 DCT/IDCT for JPEG Compression Author: Ahmed Samieh OZGUL, Ali

Here all sub-functions are similarly for program running procedure. Only, per functions are different to graphical-compression's functions;

DCT8X8 function:
 for n = 1 : 8
                s = s + (double(I(m,n)) * cosines(p,m) * cosines(q,n));
            end

IDCT function:
for q = 1 : 8
                s = s + (alpha(p,q) * double(I(p,q)) * cosines(p,m) * cosines(q,n));
            end

If you one-sub program's be running one module than I think very this function is very usefully.

For example: Dcomp.m(I,flag)
if flag==1 than running DCT_8x8.m
           else running IDCT_8x8.m
end

Good works, best regards

 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com